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