adding SMS stuff so we don't forget about it
[koha.git] / members / pay.pl
1 #!/usr/bin/perl
2
3 # Copyright 2000-2002 Katipo Communications
4 #
5 # This file is part of Koha.
6 #
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.
11 #
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.
15 #
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
19
20
21 =head1 pay.pl
22
23  written 11/1/2000 by chris@katipo.oc.nz
24  part of the koha library system, script to facilitate paying off fines
25
26 =cut
27
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
39
40 my $input = new CGI;
41
42 my $borrowernumber = $input->param('borrowernumber');
43 if ( $borrowernumber eq '' ) {
44     $borrowernumber = $input->param('borrowernumber0');
45 }
46
47 # get borrower details
48 my $data = GetMember( $borrowernumber,'borrowernumber' );
49 my $user = $input->remote_user;
50
51 # get account details
52 my $branches = GetBranches();
53 my $branch   = GetBranch( $input, $branches );
54
55 my @names = $input->param;
56 my %inp;
57 my $check = 0;
58 for ( my $i = 0 ; $i < @names ; $i++ ) {
59     my $temp = $input->param( $names[$i] );
60     if ( $temp eq 'wo' ) {
61         $inp{ $names[$i] } = $temp;
62         $check = 1;
63     }
64     if ( $temp eq 'yes' ) {
65
66 # FIXME : using array +4, +5, +6 is dirty. Should use arrays for each accountline
67         my $amount         = $input->param( $names[ $i + 4 ] );
68         my $borrowernumber = $input->param( $names[ $i + 5 ] );
69         my $accountno      = $input->param( $names[ $i + 6 ] );
70         makepayment( $borrowernumber, $accountno, $amount, $user, $branch );
71         $check = 2;
72     }
73 }
74 my $total = $input->param('total');
75 if ( $check == 0 ) {
76     my ( $template, $loggedinuser, $cookie ) = get_template_and_user(
77         {
78             template_name   => "members/pay.tmpl",
79             query           => $input,
80             type            => "intranet",
81             authnotrequired => 0,
82             flagsrequired   => { borrowers => 1 },
83             debug           => 1,
84         }
85     );
86     if ( $total ne '' ) {
87         recordpayment( $borrowernumber, $total );
88     }
89
90     my ( $total, $accts, $numaccts) = GetMemberAccountRecords( $borrowernumber );
91
92     my @allfile;
93     my @notify = NumberNotifyId($borrowernumber);
94
95     my $numberofnotify = scalar(@notify);
96     for ( my $j = 0 ; $j < scalar(@notify) ; $j++ ) {
97         my @loop_pay;
98         my ( $total , $accts, $numaccts) =
99           GetBorNotifyAcctRecord( $borrowernumber, $notify[$j] );
100         for ( my $i = 0 ; $i < $numaccts ; $i++ ) {
101             my %line;
102             if ( $accts->[$i]{'amountoutstanding'} > 0 ) {
103                 $accts->[$i]{'amount'}            += 0.00;
104                 $accts->[$i]{'amountoutstanding'} += 0.00;
105                 $line{i}           = $j . "" . $i;
106                 $line{itemnumber}  = $accts->[$i]{'itemnumber'};
107                 $line{accounttype} = $accts->[$i]{'accounttype'};
108                 $line{amount}      = sprintf( "%.2f", $accts->[$i]{'amount'} );
109                 $line{amountoutstanding} =
110                   sprintf( "%.2f", $accts->[$i]{'amountoutstanding'} );
111                 $line{borrowernumber} = $borrowernumber;
112                 $line{accountno}      = $accts->[$i]{'accountno'};
113                 $line{description}    = $accts->[$i]{'description'};
114                 $line{title}          = $accts->[$i]{'title'};
115                 $line{notify_id}      = $accts->[$i]{'notify_id'};
116                 $line{notify_level}   = $accts->[$i]{'notify_level'};
117
118             }
119             push( @loop_pay, \%line );
120         }
121
122         my $totalnotify = AmountNotify( $notify[$j] );
123         ( $totalnotify = '0' ) if ( $totalnotify =~ /^0.00/ );
124         push @allfile,
125           {
126             'loop_pay' => \@loop_pay,
127             'notify'   => $notify[$j],
128             'total'    => $totalnotify
129           };
130     }
131     $template->param(
132         allfile        => \@allfile,
133         firstname      => $data->{'firstname'},
134         surname        => $data->{'surname'},
135         borrowernumber => $borrowernumber,
136         total          => sprintf( "%.2f", $total )
137     );
138     output_html_with_http_headers $input, $cookie, $template->output;
139
140 }
141 else {
142
143     my %inp;
144     my @name = $input->param;
145     for ( my $i = 0 ; $i < @name ; $i++ ) {
146         my $test = $input->param( $name[$i] );
147         if ( $test eq 'wo' ) {
148             my $temp = $name[$i];
149             $temp =~ s/payfine//;
150             $inp{ $name[$i] } = $temp;
151         }
152     }
153     my $borrowernumber;
154     while ( my ( $key, $value ) = each %inp ) {
155
156         my $accounttype = $input->param("accounttype$value");
157         $borrowernumber = $input->param("borrowernumber$value");
158         my $itemno    = $input->param("itemnumber$value");
159         my $amount    = $input->param("amount$value");
160         my $accountno = $input->param("accountno$value");
161         writeoff( $borrowernumber, $accountno, $itemno, $accounttype, $amount );
162     }
163     $borrowernumber = $input->param('borrowernumber');
164     print $input->redirect(
165         "/cgi-bin/koha/members/moremember.pl?borrowernumber=$borrowernumber");
166 }
167
168 sub writeoff {
169     my ( $borrowernumber, $accountnum, $itemnum, $accounttype, $amount ) = @_;
170     my $user = $input->remote_user;
171     my $dbh  = C4::Context->dbh;
172     my $sth =
173       $dbh->prepare(
174 "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=?"
175       );
176     $sth->execute( $accountnum, $borrowernumber );
177     $sth->finish;
178     $sth = $dbh->prepare("select max(accountno) from accountlines");
179     $sth->execute;
180     my $account = $sth->fetchrow_hashref;
181     $sth->finish;
182     $account->{'max(accountno)'}++;
183     $sth = $dbh->prepare(
184 "insert into accountlines (borrowernumber,accountno,itemnumber,date,amount,description,accounttype)
185                                                 values (?,?,?,now(),?,'Writeoff','W')"
186     );
187     $sth->execute( $borrowernumber, $account->{'max(accountno)'},
188         $itemnum, $amount );
189     $sth->finish;
190     UpdateStats( $branch, 'writeoff', $amount, '', '', '',
191         $borrowernumber );
192 }