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