Merge remote-tracking branch 'origin/new/bug_929'
[koha.git] / members / pay.pl
1 #!/usr/bin/perl
2
3 # Copyright 2000-2002 Katipo Communications
4 # Copyright 2010 BibLibre
5 # Copyright 2010,2011 PTFS-Europe Ltd
6 #
7 # This file is part of Koha.
8 #
9 # Koha is free software; you can redistribute it and/or modify it under the
10 # terms of the GNU General Public License as published by the Free Software
11 # Foundation; either version 2 of the License, or (at your option) any later
12 # version.
13 #
14 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
15 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
16 # A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
17 #
18 # You should have received a copy of the GNU General Public License along
19 # with Koha; if not, write to the Free Software Foundation, Inc.,
20 # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
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 warnings;
31
32 use C4::Context;
33 use C4::Auth;
34 use C4::Output;
35 use CGI;
36 use C4::Members;
37 use C4::Accounts;
38 use C4::Stats;
39 use C4::Koha;
40 use C4::Overdues;
41 use C4::Branch;
42 use C4::Members::Attributes qw(GetBorrowerAttributes);
43
44 my $input = CGI->new;
45
46 my ( $template, $loggedinuser, $cookie ) = get_template_and_user(
47     {   template_name   => 'members/pay.tmpl',
48         query           => $input,
49         type            => 'intranet',
50         authnotrequired => 0,
51         flagsrequired   => { borrowers => 1, updatecharges => 1 },
52         debug           => 1,
53     }
54 );
55
56 my $writeoff_sth;
57 my $add_writeoff_sth;
58
59 my @names = $input->param;
60
61 my $borrowernumber = $input->param('borrowernumber');
62 if ( !$borrowernumber ) {
63     $borrowernumber = $input->param('borrowernumber0');
64 }
65
66 # get borrower details
67 my $borrower = GetMember( borrowernumber => $borrowernumber );
68 my $user = $input->remote_user;
69 $user ||= q{};
70
71 my $branches = GetBranches();
72 my $branch = GetBranch( $input, $branches );
73
74 my $writeoff_item = $input->param('confirm_writeoff');
75 my $paycollect    = $input->param('paycollect');
76 if ($paycollect) {
77     print $input->redirect(
78         "/cgi-bin/koha/members/paycollect.pl?borrowernumber=$borrowernumber");
79 }
80 my $payselected = $input->param('payselected');
81 if ($payselected) {
82     payselected(@names);
83 }
84
85 my $writeoff_all = $input->param('woall');    # writeoff all fines
86 if ($writeoff_all) {
87     writeoff_all(@names);
88 } elsif ($writeoff_item) {
89     my $accountno    = $input->param('accountno');
90     my $itemno       = $input->param('itemnumber');
91     my $account_type = $input->param('accounttype');
92     my $amount       = $input->param('amount');
93     writeoff( $accountno, $itemno, $account_type, $amount );
94 }
95
96 for (@names) {
97     if (/^pay_indiv_(\d+)$/) {
98         my $line_no = $1;
99         redirect_to_paycollect( 'pay_individual', $line_no );
100     } elsif (/^wo_indiv_(\d+)$/) {
101         my $line_no = $1;
102         redirect_to_paycollect( 'writeoff_individual', $line_no );
103     }
104 }
105
106 $template->param( activeBorrowerRelationship => (C4::Context->preference('borrowerRelationship') ne '') );
107
108 add_accounts_to_template();
109
110 output_html_with_http_headers $input, $cookie, $template->output;
111
112 sub writeoff {
113     my ( $accountnum, $itemnum, $accounttype, $amount ) = @_;
114
115     # if no item is attached to fine, make sure to store it as a NULL
116     $itemnum ||= undef;
117     get_writeoff_sth();
118     $writeoff_sth->execute( $accountnum, $borrowernumber );
119
120     my $acct = getnextacctno($borrowernumber);
121     $add_writeoff_sth->execute( $borrowernumber, $acct, $itemnum, $amount );
122
123     UpdateStats( $branch, 'writeoff', $amount, q{}, q{}, q{}, $borrowernumber );
124
125     return;
126 }
127
128 sub add_accounts_to_template {
129
130     my ( $total, undef, undef ) = GetMemberAccountRecords($borrowernumber);
131     my $accounts = [];
132     my @notify   = NumberNotifyId($borrowernumber);
133
134     my $notify_groups = [];
135     for my $notify_id (@notify) {
136         my ( $acct_total, $accountlines, undef ) =
137           GetBorNotifyAcctRecord( $borrowernumber, $notify_id );
138         if ( @{$accountlines} ) {
139             my $totalnotify = AmountNotify( $notify_id, $borrowernumber );
140             push @{$accounts},
141               { accountlines => $accountlines,
142                 notify       => $notify_id,
143                 total        => $totalnotify,
144               };
145         }
146     }
147     borrower_add_additional_fields($borrower);
148     $template->param(
149         accounts => $accounts,
150         borrower => $borrower,
151         total    => $total,
152     );
153     return;
154
155 }
156
157 sub get_for_redirect {
158     my ( $name, $name_in, $money ) = @_;
159     my $s     = q{&} . $name . q{=};
160     my $value = $input->param($name_in);
161     if ( !defined $value ) {
162         $value = ( $money == 1 ) ? 0 : q{};
163     }
164     if ($money) {
165         $s .= sprintf '%.2f', $value;
166     } else {
167         $s .= $value;
168     }
169     return $s;
170 }
171
172 sub redirect_to_paycollect {
173     my ( $action, $line_no ) = @_;
174     my $redirect =
175       "/cgi-bin/koha/members/paycollect.pl?borrowernumber=$borrowernumber";
176     $redirect .= q{&};
177     $redirect .= "$action=1";
178     $redirect .= get_for_redirect( 'accounttype', "accounttype$line_no", 0 );
179     $redirect .= get_for_redirect( 'amount', "amount$line_no", 1 );
180     $redirect .=
181       get_for_redirect( 'amountoutstanding', "amountoutstanding$line_no", 1 );
182     $redirect .= get_for_redirect( 'accountno',    "accountno$line_no",    0 );
183     $redirect .= get_for_redirect( 'description',  "description$line_no",  0 );
184     $redirect .= get_for_redirect( 'title',        "title$line_no",        0 );
185     $redirect .= get_for_redirect( 'itemnumber',   "itemnumber$line_no",   0 );
186     $redirect .= get_for_redirect( 'notify_id',    "notify_id$line_no",    0 );
187     $redirect .= get_for_redirect( 'notify_level', "notify_level$line_no", 0 );
188     $redirect .= '&remote_user=';
189     $redirect .= $user;
190     return print $input->redirect($redirect);
191 }
192
193 sub writeoff_all {
194     my @params = @_;
195     my @wo_lines = grep { /^accountno\d+$/ } @params;
196     for (@wo_lines) {
197         if (/(\d+)/) {
198             my $value       = $1;
199             my $accounttype = $input->param("accounttype$value");
200
201             #    my $borrowernum    = $input->param("borrowernumber$value");
202             my $itemno    = $input->param("itemnumber$value");
203             my $amount    = $input->param("amount$value");
204             my $accountno = $input->param("accountno$value");
205             writeoff( $accountno, $itemno, $accounttype, $amount );
206         }
207     }
208
209     $borrowernumber = $input->param('borrowernumber');
210     print $input->redirect(
211         "/cgi-bin/koha/members/boraccount.pl?borrowernumber=$borrowernumber");
212     return;
213 }
214
215 sub borrower_add_additional_fields {
216     my $b_ref = shift;
217
218 # some borrower info is not returned in the standard call despite being assumed
219 # in a number of templates. It should not be the business of this script but in lieu of
220 # a revised api here it is ...
221     if ( $b_ref->{category_type} eq 'C' ) {
222         my ( $catcodes, $labels ) =
223           GetborCatFromCatType( 'A', 'WHERE category_type = ?' );
224         if ( @{$catcodes} ) {
225             if ( @{$catcodes} > 1 ) {
226                 $b_ref->{CATCODE_MULTI} = 1;
227             } elsif ( @{$catcodes} == 1 ) {
228                 $b_ref->{catcode} = $catcodes->[0];
229             }
230         }
231     } elsif ( $b_ref->{category_type} eq 'A' ) {
232         $b_ref->{adultborrower} = 1;
233     }
234     my ( $picture, $dberror ) = GetPatronImage( $b_ref->{cardnumber} );
235     if ($picture) {
236         $b_ref->{has_picture} = 1;
237     }
238
239     if (C4::Context->preference('ExtendedPatronAttributes')) {
240         $b_ref->{extendedattributes} = GetBorrowerAttributes($borrowernumber);
241         $template->param(
242             ExtendedPatronAttributes => 1,
243         );
244     }
245
246     $b_ref->{branchname} = GetBranchName( $b_ref->{branchcode} );
247     return;
248 }
249
250 sub payselected {
251     my @params = @_;
252     my $amt    = 0;
253     my @lines_to_pay;
254     foreach (@params) {
255         if (/^incl_par_(\d+)$/) {
256             my $index = $1;
257             push @lines_to_pay, $input->param("accountno$index");
258             $amt += $input->param("amountoutstanding$index");
259         }
260     }
261     $amt = '&amt=' . $amt;
262     my $sel = '&selected=' . join ',', @lines_to_pay;
263     my $redirect =
264         "/cgi-bin/koha/members/paycollect.pl?borrowernumber=$borrowernumber"
265       . $amt
266       . $sel;
267
268     print $input->redirect($redirect);
269     return;
270 }
271
272 sub get_writeoff_sth {
273
274     # lets prepare these statement handles only once
275     if ($writeoff_sth) {
276         return;
277     } else {
278         my $dbh = C4::Context->dbh;
279
280         # Do we need to validate accounttype
281         my $sql = 'Update accountlines set amountoutstanding=0 '
282           . 'WHERE accountno=? and borrowernumber=?';
283         $writeoff_sth = $dbh->prepare($sql);
284         my $insert =
285 q{insert into accountlines (borrowernumber,accountno,itemnumber,date,amount,description,accounttype)}
286           . q{values (?,?,?,now(),?,'Writeoff','W')};
287         $add_writeoff_sth = $dbh->prepare($insert);
288     }
289     return;
290 }