Bug 22741: Add a test
[koha.git] / members / paycollect.pl
blob1cb6cbe41af9f492c282c16d100e7f511b8855f7
1 #!/usr/bin/perl
2 # Copyright 2009,2010 PTFS Inc.
3 # Copyright 2011 PTFS-Europe Ltd
5 # This file is part of Koha.
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.
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.
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>.
20 use Modern::Perl;
21 use URI::Escape;
22 use CGI qw ( -utf8 );
24 use C4::Context;
25 use C4::Auth;
26 use C4::Output;
27 use C4::Members;
28 use C4::Accounts;
29 use C4::Koha;
31 use Koha::Patrons;
32 use Koha::Patron::Categories;
33 use Koha::AuthorisedValues;
34 use Koha::Account;
35 use Koha::Token;
37 my $input = CGI->new();
39 my $writeoff_individual = $input->param('writeoff_individual');
40 my $type = scalar $input->param('type') || 'payment';
42 my $updatecharges_permissions = ($writeoff_individual || $type eq 'writeoff') ? 'writeoff' : 'remaining_permissions';
43 my ( $template, $loggedinuser, $cookie ) = get_template_and_user(
44 { template_name => 'members/paycollect.tt',
45 query => $input,
46 type => 'intranet',
47 authnotrequired => 0,
48 flagsrequired => { borrowers => 'edit_borrowers', updatecharges => $updatecharges_permissions },
49 debug => 1,
53 # get borrower details
54 my $borrowernumber = $input->param('borrowernumber');
55 my $logged_in_user = Koha::Patrons->find( $loggedinuser ) or die "Not logged in";
56 my $patron = Koha::Patrons->find( $borrowernumber );
57 output_and_exit_if_error( $input, $cookie, $template, { module => 'members', logged_in_user => $logged_in_user, current_patron => $patron } );
59 my $borrower = $patron->unblessed;
60 my $account = $patron->account;
61 my $category = $patron->category;
62 my $user = $input->remote_user;
64 my $library_id = C4::Context->userenv->{'branch'};
65 my $total_due = $account->outstanding_debits->total_outstanding;
67 my $total_paid = $input->param('paid');
69 my $select_lines = $input->param('selected');
70 my $pay_individual = $input->param('pay_individual');
71 my $select = $input->param('selected_accts');
72 my $payment_note = uri_unescape scalar $input->param('payment_note');
73 my $payment_type = scalar $input->param('payment_type');
74 my $accountlines_id;
76 if ( $pay_individual || $writeoff_individual ) {
77 if ($pay_individual) {
78 $template->param( pay_individual => 1 );
79 } elsif ($writeoff_individual) {
80 $template->param( writeoff_individual => 1 );
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 my $itemnumber = $input->param('itemnumber');
87 my $description = $input->param('description');
88 my $title = $input->param('title');
89 $total_due = $amountoutstanding;
90 $template->param(
91 accounttype => $accounttype,
92 accountlines_id => $accountlines_id,
93 amount => $amount,
94 amountoutstanding => $amountoutstanding,
95 title => $title,
96 itemnumber => $itemnumber,
97 individual_description => $description,
98 payment_note => $payment_note,
100 } elsif ($select_lines) {
101 $total_due = $input->param('amt');
102 $template->param(
103 selected_accts => $select_lines,
104 amt => $total_due,
105 selected_accts_notes => scalar $input->param('notes'),
109 if ( $total_paid and $total_paid ne '0.00' ) {
110 if ( $total_paid < 0 or $total_paid > $total_due ) {
111 $template->param(
112 error_over => 1,
113 total_due => $total_due
115 } else {
116 output_and_exit( $input, $cookie, $template, 'wrong_csrf_token' )
117 unless Koha::Token->new->check_csrf( {
118 session_id => $input->cookie('CGISESSID'),
119 token => scalar $input->param('csrf_token'),
122 if ($pay_individual) {
123 my $line = Koha::Account::Lines->find($accountlines_id);
124 $account->pay(
126 lines => [$line],
127 amount => $total_paid,
128 library_id => $library_id,
129 note => $payment_note,
130 interface => C4::Context->interface,
131 payment_type => $payment_type,
134 print $input->redirect(
135 "/cgi-bin/koha/members/pay.pl?borrowernumber=$borrowernumber");
136 } else {
137 if ($select) {
138 if ( $select =~ /^([\d,]*).*/ ) {
139 $select = $1; # ensure passing no junk
141 my @acc = split /,/, $select;
142 my $note = $input->param('selected_accts_notes');
144 my @lines = Koha::Account::Lines->search(
146 borrowernumber => $borrowernumber,
147 amountoutstanding => { '<>' => 0 },
148 accountlines_id => { 'IN' => \@acc },
150 { order_by => 'date' }
153 $account->pay(
155 type => $type,
156 amount => $total_paid,
157 library_id => $library_id,
158 lines => \@lines,
159 note => $note,
160 interface => C4::Context->interface,
161 payment_type => $payment_type,
165 else {
166 my $note = $input->param('selected_accts_notes');
167 $account->pay(
169 amount => $total_paid,
170 library_id => $library_id,
171 note => $note,
172 payment_type => $payment_type,
173 interface => C4::Context->interface
178 print $input->redirect("/cgi-bin/koha/members/boraccount.pl?borrowernumber=$borrowernumber");
181 } else {
182 $total_paid = '0.00'; #TODO not right with pay_individual
185 $template->param(%$borrower);
187 if ( $input->param('error_over') ) {
188 $template->param( error_over => 1, total_due => scalar $input->param('amountoutstanding') );
191 $template->param(
192 type => $type,
193 borrowernumber => $borrowernumber, # some templates require global
194 patron => $patron,
195 total => $total_due,
197 csrf_token => Koha::Token->new->generate_csrf({ session_id => scalar $input->cookie('CGISESSID') }),
200 output_html_with_http_headers $input, $cookie, $template->output;