default results per page for OPAC authority search now 20
[koha.git] / members / pay.pl
blob35faea3c597301628e6da2193eff8e5d5178df68
1 #!/usr/bin/perl
3 # Copyright 2000-2002 Katipo Communications
5 # This file is part of Koha.
7 # Koha is free software; you can redistribute it and/or modify it under the
8 # terms of the GNU General Public License as published by the Free Software
9 # Foundation; either version 2 of the License, or (at your option) any later
10 # version.
12 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
13 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
14 # A PARTICULAR PURPOSE. See the GNU General Public License for more details.
16 # You should have received a copy of the GNU General Public License along with
17 # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place,
18 # Suite 330, Boston, MA 02111-1307 USA
21 =head1 pay.pl
23 written 11/1/2000 by chris@katipo.oc.nz
24 part of the koha library system, script to facilitate paying off fines
26 =cut
28 use strict;
29 use C4::Context;
30 use C4::Auth;
31 use C4::Output;
32 use CGI;
33 use C4::Members;
34 use C4::Accounts;
35 use C4::Stats;
36 use C4::Koha;
37 use C4::Overdues;
38 use C4::Branch; # GetBranches
40 my $input = new CGI;
42 my ( $template, $loggedinuser, $cookie ) = get_template_and_user(
44 template_name => "members/pay.tmpl",
45 query => $input,
46 type => "intranet",
47 authnotrequired => 0,
48 flagsrequired => { borrowers => 1 },
49 debug => 1,
53 my $borrowernumber = $input->param('borrowernumber');
54 if ( $borrowernumber eq '' ) {
55 $borrowernumber = $input->param('borrowernumber0');
58 # get borrower details
59 my $data = GetMember( $borrowernumber,'borrowernumber' );
60 my $user = $input->remote_user;
62 # get account details
63 my $branches = GetBranches();
64 my $branch = GetBranch( $input, $branches );
66 my @names = $input->param;
67 my %inp;
68 my $check = 0;
69 for ( my $i = 0 ; $i < @names ; $i++ ) {
70 my $temp = $input->param( $names[$i] );
71 if ( $temp eq 'wo' ) {
72 $inp{ $names[$i] } = $temp;
73 $check = 1;
75 if ( $temp eq 'yes' ) {
77 # FIXME : using array +4, +5, +6 is dirty. Should use arrays for each accountline
78 my $amount = $input->param( $names[ $i + 4 ] );
79 my $borrowernumber = $input->param( $names[ $i + 5 ] );
80 my $accountno = $input->param( $names[ $i + 6 ] );
81 makepayment( $borrowernumber, $accountno, $amount, $user, $branch );
82 $check = 2;
85 my $total = $input->param('total');
86 if ( $check == 0 ) {
87 if ( $total ne '' ) {
88 recordpayment( $borrowernumber, $total );
91 my ( $total, $accts, $numaccts) = GetMemberAccountRecords( $borrowernumber );
93 my @allfile;
94 my @notify = NumberNotifyId($borrowernumber);
96 my $numberofnotify = scalar(@notify);
97 for ( my $j = 0 ; $j < scalar(@notify) ; $j++ ) {
98 my @loop_pay;
99 my ( $total , $accts, $numaccts) =
100 GetBorNotifyAcctRecord( $borrowernumber, $notify[$j] );
101 for ( my $i = 0 ; $i < $numaccts ; $i++ ) {
102 my %line;
103 if ( $accts->[$i]{'amountoutstanding'} != 0 ) {
104 $accts->[$i]{'amount'} += 0.00;
105 $accts->[$i]{'amountoutstanding'} += 0.00;
106 $line{i} = $j . "" . $i;
107 $line{itemnumber} = $accts->[$i]{'itemnumber'};
108 $line{accounttype} = $accts->[$i]{'accounttype'};
109 $line{amount} = sprintf( "%.2f", $accts->[$i]{'amount'} );
110 $line{amountoutstanding} =
111 sprintf( "%.2f", $accts->[$i]{'amountoutstanding'} );
112 $line{borrowernumber} = $borrowernumber;
113 $line{accountno} = $accts->[$i]{'accountno'};
114 $line{description} = $accts->[$i]{'description'};
115 $line{title} = $accts->[$i]{'title'};
116 $line{notify_id} = $accts->[$i]{'notify_id'};
117 $line{notify_level} = $accts->[$i]{'notify_level'};
118 $line{net_balance} = 1;
119 push( @loop_pay, \%line );
123 my $totalnotify = AmountNotify( $notify[$j], $borrowernumber );
124 ( $totalnotify = '0' ) if ( $totalnotify =~ /^0.00/ );
125 push @allfile,
127 'loop_pay' => \@loop_pay,
128 'notify' => $notify[$j],
129 'total' => sprintf( "%.2f",$totalnotify),
134 $template->param( adultborrower => 1 ) if ( $data->{'category_type'} eq 'A' );
135 my ($picture, $dberror) = GetPatronImage($data->{'cardnumber'});
136 $template->param( picture => 1 ) if $picture;
138 $template->param(
139 allfile => \@allfile,
140 firstname => $data->{'firstname'},
141 surname => $data->{'surname'},
142 borrowernumber => $borrowernumber,
143 cardnumber => $data->{'cardnumber'},
144 categorycode => $data->{'categorycode'},
145 category_type => $data->{'category_type'},
146 category_description => $data->{'description'},
147 address => $data->{'address'},
148 address2 => $data->{'address2'},
149 city => $data->{'city'},
150 zipcode => $data->{'zipcode'},
151 phone => $data->{'phone'},
152 email => $data->{'email'},
153 branchcode => $data->{'branchcode'},
154 total => sprintf( "%.2f", $total )
156 output_html_with_http_headers $input, $cookie, $template->output;
159 else {
161 my %inp;
162 my @name = $input->param;
163 for ( my $i = 0 ; $i < @name ; $i++ ) {
164 my $test = $input->param( $name[$i] );
165 if ( $test eq 'wo' ) {
166 my $temp = $name[$i];
167 $temp =~ s/payfine//;
168 $inp{ $name[$i] } = $temp;
171 my $borrowernumber;
172 while ( my ( $key, $value ) = each %inp ) {
174 my $accounttype = $input->param("accounttype$value");
175 $borrowernumber = $input->param("borrowernumber$value");
176 my $itemno = $input->param("itemnumber$value");
177 my $amount = $input->param("amount$value");
178 my $accountno = $input->param("accountno$value");
179 writeoff( $borrowernumber, $accountno, $itemno, $accounttype, $amount );
181 $borrowernumber = $input->param('borrowernumber');
182 print $input->redirect(
183 "/cgi-bin/koha/members/boraccount.pl?borrowernumber=$borrowernumber");
186 sub writeoff {
187 my ( $borrowernumber, $accountnum, $itemnum, $accounttype, $amount ) = @_;
188 my $user = $input->remote_user;
189 my $dbh = C4::Context->dbh;
190 undef $itemnum unless $itemnum; # if no item is attached to fine, make sure to store it as a NULL
191 my $sth =
192 $dbh->prepare(
193 "Update accountlines set amountoutstanding=0 where (accounttype='Res' OR accounttype='FU' OR accounttype ='IP' OR accounttype='CH' OR accounttype='N' OR accounttype='F' OR accounttype='A' OR accounttype='M' OR accounttype='L' OR accounttype='RE' OR accounttype='RL') and accountno=? and borrowernumber=?"
195 $sth->execute( $accountnum, $borrowernumber );
196 $sth->finish;
197 $sth = $dbh->prepare("select max(accountno) from accountlines");
198 $sth->execute;
199 my $account = $sth->fetchrow_hashref;
200 $sth->finish;
201 $account->{'max(accountno)'}++;
202 $sth = $dbh->prepare(
203 "insert into accountlines (borrowernumber,accountno,itemnumber,date,amount,description,accounttype)
204 values (?,?,?,now(),?,'Writeoff','W')"
206 $sth->execute( $borrowernumber, $account->{'max(accountno)'},
207 $itemnum, $amount );
208 $sth->finish;
209 UpdateStats( $branch, 'writeoff', $amount, '', '', '',
210 $borrowernumber );