Bug 19080: Handle non-existing patrons gratefully
[srvgit] / members / paycollect.pl
1 #!/usr/bin/perl
2 # Copyright 2009,2010 PTFS Inc.
3 # Copyright 2011 PTFS-Europe Ltd
4 #
5 # This file is part of Koha.
6 #
7 # Koha is free software; you can redistribute it and/or modify it
8 # under the terms of the GNU General Public License as published by
9 # the Free Software Foundation; either version 3 of the License, or
10 # (at your option) any later version.
11 #
12 # Koha is distributed in the hope that it will be useful, but
13 # WITHOUT ANY WARRANTY; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 # GNU General Public License for more details.
16 #
17 # You should have received a copy of the GNU General Public License
18 # along with Koha; if not, see <http://www.gnu.org/licenses>.
19
20 use strict;
21 use warnings;
22 use URI::Escape;
23 use C4::Context;
24 use C4::Auth;
25 use C4::Output;
26 use CGI qw ( -utf8 );
27 use C4::Members;
28 use C4::Members::Attributes qw(GetBorrowerAttributes);
29 use C4::Accounts;
30 use C4::Koha;
31 use Koha::Patron::Images;
32 use Koha::Patrons;
33 use Koha::Account;
34
35 use Koha::Patron::Categories;
36
37 my $input = CGI->new();
38
39 my $updatecharges_permissions = $input->param('writeoff_individual') ? 'writeoff' : 'remaining_permissions';
40 my ( $template, $loggedinuser, $cookie ) = get_template_and_user(
41     {   template_name   => 'members/paycollect.tt',
42         query           => $input,
43         type            => 'intranet',
44         authnotrequired => 0,
45         flagsrequired   => { borrowers => 1, updatecharges => $updatecharges_permissions },
46         debug           => 1,
47     }
48 );
49
50 # get borrower details
51 my $borrowernumber = $input->param('borrowernumber');
52 my $patron         = Koha::Patrons->find( $borrowernumber );
53 unless ( $patron ) {
54     print $input->redirect("/cgi-bin/koha/circ/circulation.pl?borrowernumber=$borrowernumber");
55     exit;
56 }
57 my $borrower       = $patron->unblessed;
58 my $category       = $patron->category;
59 $borrower->{description} = $category->description;
60 $borrower->{category_type} = $category->category_type;
61 my $user           = $input->remote_user;
62
63 my $branch         = C4::Context->userenv->{'branch'};
64
65 my ( $total_due, $accts, $numaccts ) = GetMemberAccountRecords($borrowernumber);
66 my $total_paid = $input->param('paid');
67
68 my $individual   = $input->param('pay_individual');
69 my $writeoff     = $input->param('writeoff_individual');
70 my $select_lines = $input->param('selected');
71 my $select       = $input->param('selected_accts');
72 my $payment_note = uri_unescape $input->param('payment_note');
73 my $accountno;
74 my $accountlines_id;
75
76 if ( $individual || $writeoff ) {
77     if ($individual) {
78         $template->param( pay_individual => 1 );
79     } elsif ($writeoff) {
80         $template->param( writeoff_individual => 1 );
81     }
82     my $accounttype       = $input->param('accounttype');
83     $accountlines_id       = $input->param('accountlines_id');
84     my $amount            = $input->param('amount');
85     my $amountoutstanding = $input->param('amountoutstanding');
86     $accountno = $input->param('accountno');
87     my $itemnumber  = $input->param('itemnumber');
88     my $description  = $input->param('description');
89     my $title        = $input->param('title');
90     my $notify_id    = $input->param('notify_id');
91     my $notify_level = $input->param('notify_level');
92     $total_due = $amountoutstanding;
93     $template->param(
94         accounttype       => $accounttype,
95         accountlines_id    => $accountlines_id,
96         accountno         => $accountno,
97         amount            => $amount,
98         amountoutstanding => $amountoutstanding,
99         title             => $title,
100         itemnumber        => $itemnumber,
101         individual_description => $description,
102         notify_id         => $notify_id,
103         notify_level      => $notify_level,
104         payment_note    => $payment_note,
105     );
106 } elsif ($select_lines) {
107     $total_due = $input->param('amt');
108     $template->param(
109         selected_accts => $select_lines,
110         amt            => $total_due,
111         selected_accts_notes => scalar $input->param('notes'),
112     );
113 }
114
115 if ( $total_paid and $total_paid ne '0.00' ) {
116     if ( $total_paid < 0 or $total_paid > $total_due ) {
117         $template->param(
118             error_over => 1,
119             total_due => $total_due
120         );
121     } else {
122         if ($individual) {
123             my $line = Koha::Account::Lines->find($accountlines_id);
124             Koha::Account->new( { patron_id => $borrowernumber } )->pay(
125                 {
126                     lines      => [$line],
127                     amount     => $total_paid,
128                     library_id => $branch,
129                     note       => $payment_note
130                 }
131             );
132             print $input->redirect(
133                 "/cgi-bin/koha/members/pay.pl?borrowernumber=$borrowernumber");
134         } else {
135             if ($select) {
136                 if ( $select =~ /^([\d,]*).*/ ) {
137                     $select = $1;    # ensure passing no junk
138                 }
139                 my @acc = split /,/, $select;
140                 my $note = $input->param('selected_accts_notes');
141
142                 my @lines = Koha::Account::Lines->search(
143                     {
144                         borrowernumber    => $borrowernumber,
145                         amountoutstanding => { '<>' => 0 },
146                         accountno         => { 'IN' => \@acc },
147                     },
148                     { order_by => 'date' }
149                 );
150
151                 return Koha::Account->new(
152                     {
153                         patron_id => $borrowernumber,
154                     }
155                   )->pay(
156                     {
157                         amount => $total_paid,
158                         lines  => \@lines,
159                         note   => $note,
160                     }
161                   );
162             }
163             else {
164                 my $note = $input->param('selected_accts_notes');
165                 Koha::Account->new( { patron_id => $borrowernumber } )
166                   ->pay( { amount => $total_paid, note => $note } );
167             }
168
169             print $input->redirect(
170 "/cgi-bin/koha/members/boraccount.pl?borrowernumber=$borrowernumber"
171             );
172         }
173     }
174 } else {
175     $total_paid = '0.00';    #TODO not right with pay_individual
176 }
177
178 borrower_add_additional_fields($borrower, $template);
179
180 $template->param(%$borrower);
181
182 $template->param(
183     borrowernumber => $borrowernumber,    # some templates require global
184     borrower      => $borrower,
185     categoryname  => $borrower->{description},
186     total         => $total_due,
187     RoutingSerials => C4::Context->preference('RoutingSerials'),
188     ExtendedPatronAttributes => C4::Context->preference('ExtendedPatronAttributes'),
189 );
190
191 output_html_with_http_headers $input, $cookie, $template->output;
192
193 sub borrower_add_additional_fields {
194     my ( $b_ref, $template ) = @_;
195
196 # some borrower info is not returned in the standard call despite being assumed
197 # in a number of templates. It should not be the business of this script but in lieu of
198 # a revised api here it is ...
199     if ( $b_ref->{category_type} eq 'C' ) {
200         my $patron_categories = Koha::Patron::Categories->search_limited({ category_type => 'A' }, {order_by => ['categorycode']});
201         $template->param( 'CATCODE_MULTI' => 1) if $patron_categories->count > 1;
202         $template->param( 'catcode' => $patron_categories->next )  if $patron_categories->count == 1;
203     } elsif ( $b_ref->{category_type} eq 'A' || $b_ref->{category_type} eq 'I' ) {
204         $b_ref->{adultborrower} = 1;
205     }
206
207     my $patron_image = Koha::Patron::Images->find($b_ref->{borrowernumber});
208     $template->param( picture => 1 ) if $patron_image;
209
210     if (C4::Context->preference('ExtendedPatronAttributes')) {
211         $b_ref->{extendedattributes} = GetBorrowerAttributes($b_ref->{borrowernumber});
212     }
213
214     return;
215 }