Bug 18789: Send Koha::Patron object to the templates
[koha.git] / 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 Modern::Perl;
21 use URI::Escape;
22 use C4::Context;
23 use C4::Auth;
24 use C4::Output;
25 use CGI qw ( -utf8 );
26 use C4::Members;
27 use C4::Members::Attributes qw(GetBorrowerAttributes);
28 use C4::Accounts;
29 use C4::Koha;
30 use Koha::Patron::Images;
31 use Koha::Patrons;
32 use Koha::Account;
33 use Koha::Token;
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 => 'edit_borrowers', updatecharges => $updatecharges_permissions },
46         debug           => 1,
47     }
48 );
49
50 # get borrower details
51 my $borrowernumber = $input->param('borrowernumber');
52 my $logged_in_user = Koha::Patrons->find( $loggedinuser ) or die "Not logged in";
53 my $patron         = Koha::Patrons->find( $borrowernumber );
54 output_and_exit_if_error( $input, $cookie, $template, { module => 'members', logged_in_user => $logged_in_user, current_patron => $patron } );
55
56 my $borrower       = $patron->unblessed;
57 my $category       = $patron->category;
58 my $user           = $input->remote_user;
59
60 my $branch         = C4::Context->userenv->{'branch'};
61
62 my ( $total_due, $accts, $numaccts ) = GetMemberAccountRecords($borrowernumber);
63 my $total_paid = $input->param('paid');
64
65 my $individual   = $input->param('pay_individual');
66 my $writeoff     = $input->param('writeoff_individual');
67 my $select_lines = $input->param('selected');
68 my $select       = $input->param('selected_accts');
69 my $payment_note = uri_unescape scalar $input->param('payment_note');
70 my $accountlines_id;
71
72 if ( $individual || $writeoff ) {
73     if ($individual) {
74         $template->param( pay_individual => 1 );
75     } elsif ($writeoff) {
76         $template->param( writeoff_individual => 1 );
77     }
78     my $accounttype       = $input->param('accounttype');
79     $accountlines_id       = $input->param('accountlines_id');
80     my $amount            = $input->param('amount');
81     my $amountoutstanding = $input->param('amountoutstanding');
82     my $itemnumber  = $input->param('itemnumber');
83     my $description  = $input->param('description');
84     my $title        = $input->param('title');
85     $total_due = $amountoutstanding;
86     $template->param(
87         accounttype       => $accounttype,
88         accountlines_id    => $accountlines_id,
89         amount            => $amount,
90         amountoutstanding => $amountoutstanding,
91         title             => $title,
92         itemnumber        => $itemnumber,
93         individual_description => $description,
94         payment_note    => $payment_note,
95     );
96 } elsif ($select_lines) {
97     $total_due = $input->param('amt');
98     $template->param(
99         selected_accts => $select_lines,
100         amt            => $total_due,
101         selected_accts_notes => scalar $input->param('notes'),
102     );
103 }
104
105 if ( $total_paid and $total_paid ne '0.00' ) {
106     if ( $total_paid < 0 or $total_paid > $total_due ) {
107         $template->param(
108             error_over => 1,
109             total_due => $total_due
110         );
111     } else {
112         die "Wrong CSRF token"
113             unless Koha::Token->new->check_csrf( {
114                 session_id => $input->cookie('CGISESSID'),
115                 token  => scalar $input->param('csrf_token'),
116             });
117
118         if ($individual) {
119             my $line = Koha::Account::Lines->find($accountlines_id);
120             Koha::Account->new( { patron_id => $borrowernumber } )->pay(
121                 {
122                     lines      => [$line],
123                     amount     => $total_paid,
124                     library_id => $branch,
125                     note       => $payment_note
126                 }
127             );
128             print $input->redirect(
129                 "/cgi-bin/koha/members/pay.pl?borrowernumber=$borrowernumber");
130         } else {
131             if ($select) {
132                 if ( $select =~ /^([\d,]*).*/ ) {
133                     $select = $1;    # ensure passing no junk
134                 }
135                 my @acc = split /,/, $select;
136                 my $note = $input->param('selected_accts_notes');
137
138                 my @lines = Koha::Account::Lines->search(
139                     {
140                         borrowernumber    => $borrowernumber,
141                         amountoutstanding => { '<>' => 0 },
142                         accountlines_id   => { 'IN' => \@acc },
143                     },
144                     { order_by => 'date' }
145                 );
146
147                 Koha::Account->new(
148                     {
149                         patron_id => $borrowernumber,
150                     }
151                   )->pay(
152                     {
153                         amount => $total_paid,
154                         lines  => \@lines,
155                         note   => $note,
156                     }
157                   );
158             }
159             else {
160                 my $note = $input->param('selected_accts_notes');
161                 Koha::Account->new( { patron_id => $borrowernumber } )
162                   ->pay( { amount => $total_paid, note => $note } );
163             }
164
165             print $input->redirect(
166 "/cgi-bin/koha/members/boraccount.pl?borrowernumber=$borrowernumber"
167             );
168         }
169     }
170 } else {
171     $total_paid = '0.00';    #TODO not right with pay_individual
172 }
173
174 borrower_add_additional_fields($borrower, $template);
175
176 $template->param(%$borrower);
177
178 $template->param(
179     borrowernumber => $borrowernumber,    # some templates require global
180     patron        => $patron,
181     total         => $total_due,
182     ExtendedPatronAttributes => C4::Context->preference('ExtendedPatronAttributes'),
183
184     csrf_token => Koha::Token->new->generate_csrf({ session_id => scalar $input->cookie('CGISESSID') }),
185 );
186
187 output_html_with_http_headers $input, $cookie, $template->output;
188
189 sub borrower_add_additional_fields {
190     my ( $b_ref, $template ) = @_;
191
192 # some borrower info is not returned in the standard call despite being assumed
193 # in a number of templates. It should not be the business of this script but in lieu of
194 # a revised api here it is ...
195     if ( $b_ref->{category_type} eq 'C' ) {
196         my $patron_categories = Koha::Patron::Categories->search_limited({ category_type => 'A' }, {order_by => ['categorycode']});
197         $template->param( 'CATCODE_MULTI' => 1) if $patron_categories->count > 1;
198         $template->param( 'catcode' => $patron_categories->next->categorycode )  if $patron_categories->count == 1;
199     } elsif ( $b_ref->{category_type} eq 'A' || $b_ref->{category_type} eq 'I' ) {
200         $b_ref->{adultborrower} = 1;
201     }
202
203     my $patron_image = Koha::Patron::Images->find($b_ref->{borrowernumber});
204     $template->param( picture => 1 ) if $patron_image;
205
206     if (C4::Context->preference('ExtendedPatronAttributes')) {
207         $b_ref->{extendedattributes} = GetBorrowerAttributes($b_ref->{borrowernumber});
208     }
209
210     return;
211 }