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>.
21 use URI::Escape qw( uri_escape uri_unescape );
25 use C4::Auth qw( get_template_and_user );
26 use C4::Output qw( output_and_exit_if_error output_and_exit output_html_with_http_headers );
30 use Koha::Cash::Registers;
32 use Koha::Patron::Categories;
33 use Koha::AuthorisedValues;
36 use Koha::DateUtils qw( output_pref );
38 my $input = CGI->new();
40 my $payment_id = $input->param('payment_id');
41 my $writeoff_individual = $input->param('writeoff_individual');
42 my $change_given = $input->param('change_given');
43 my $type = scalar $input->param('type') || 'PAYMENT';
45 my $updatecharges_permissions = ($writeoff_individual || $type eq 'WRITEOFF') ? 'writeoff' : 'remaining_permissions';
46 my ( $template, $loggedinuser, $cookie ) = get_template_and_user(
47 { template_name => 'members/paycollect.tt',
50 flagsrequired => { borrowers => 'edit_borrowers', updatecharges => $updatecharges_permissions },
54 # get borrower details
55 my $borrowernumber = $input->param('borrowernumber');
56 my $logged_in_user = Koha::Patrons->find( $loggedinuser );
57 my $patron = Koha::Patrons->find( $borrowernumber );
58 output_and_exit_if_error( $input, $cookie, $template, { module => 'members', logged_in_user => $logged_in_user, current_patron => $patron } );
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');
68 my $total_collected = $input->param('collected');
70 my $selected_lines = $input->param('selected'); # comes from pay.pl
71 my $pay_individual = $input->param('pay_individual');
72 my $selected_accts = $input->param('selected_accts'); # comes from paycollect.pl
73 my $payment_note = uri_unescape scalar $input->param('payment_note');
74 my $payment_type = scalar $input->param('payment_type');
77 my $cash_register_id = $input->param('cash_register');
78 if ( $pay_individual || $writeoff_individual ) {
79 if ($pay_individual) {
80 $template->param( pay_individual => 1 );
81 } elsif ($writeoff_individual) {
82 $template->param( writeoff_individual => 1 );
84 my $debit_type_code = $input->param('debit_type_code');
85 $accountlines_id = $input->param('accountlines_id');
86 my $amount = $input->param('amount');
87 my $amountoutstanding = $input->param('amountoutstanding');
88 my $itemnumber = $input->param('itemnumber');
89 my $description = $input->param('description');
90 my $title = $input->param('title');
91 $total_due = $amountoutstanding;
93 debit_type_code => $debit_type_code,
94 accountlines_id => $accountlines_id,
96 amountoutstanding => $amountoutstanding,
98 itemnumber => $itemnumber,
99 individual_description => $description,
100 payment_note => $payment_note,
102 } elsif ($selected_lines) {
103 $total_due = $input->param('amt');
105 selected_accts => $selected_lines,
107 selected_accts_notes => scalar $input->param('notes'),
111 my @selected_accountlines;
112 if ( $selected_accts ) {
113 if ( $selected_accts =~ /^([\d,]*).*/ ) {
114 $selected_accts = $1; # ensure passing no junk
116 my @acc = split /,/, $selected_accts;
118 my $search_params = {
119 borrowernumber => $borrowernumber,
120 amountoutstanding => { '<>' => 0 },
121 accountlines_id => { 'in' => \@acc },
124 @selected_accountlines = Koha::Account::Lines->search(
126 { order_by => 'date' }
129 my $sum = Koha::Account::Lines->search(
132 select => [ { sum => 'amountoutstanding' } ],
133 as => [ 'total_amountoutstanding'],
136 $total_due = $sum->_resultset->first->get_column('total_amountoutstanding');
139 if ( $total_paid and $total_paid ne '0.00' ) {
140 $total_paid = $total_due if (abs($total_paid - $total_due) < 0.01) && C4::Context->preference('RoundFinesAtPayment');
141 if ( $total_paid < 0 or $total_paid > $total_due ) {
144 total_due => $total_due
146 } elsif ( $total_collected < $total_paid && !( $writeoff_individual || $type eq 'WRITEOFF' ) ) {
149 total_paid => $total_paid
152 output_and_exit( $input, $cookie, $template, 'wrong_csrf_token' )
153 unless Koha::Token->new->check_csrf( {
154 session_id => $input->cookie('CGISESSID'),
155 token => scalar $input->param('csrf_token'),
160 if ($pay_individual) {
161 my $line = Koha::Account::Lines->find($accountlines_id);
162 $pay_result = $account->pay(
165 amount => $total_paid,
166 library_id => $library_id,
167 note => $payment_note,
168 interface => C4::Context->interface,
169 payment_type => $payment_type,
170 cash_register => $cash_register_id
173 $payment_id = $pay_result->{payment_id};
175 $url = "/cgi-bin/koha/members/pay.pl";
177 if ($selected_accts) {
178 if ( $total_paid > $total_due ) {
181 total_due => $total_due
184 my $note = $input->param('selected_accts_notes');
186 $pay_result = $account->pay(
189 amount => $total_paid,
190 library_id => $library_id,
191 lines => \@selected_accountlines,
193 interface => C4::Context->interface,
194 payment_type => $payment_type,
195 cash_register => $cash_register_id
199 $payment_id = $pay_result->{payment_id};
202 my $note = $input->param('selected_accts_notes');
203 $pay_result = $account->pay(
205 amount => $total_paid,
206 library_id => $library_id,
208 payment_type => $payment_type,
209 interface => C4::Context->interface,
210 payment_type => $payment_type,
211 cash_register => $cash_register_id
214 $payment_id = $pay_result->{payment_id};
216 $payment_id = $pay_result->{payment_id};
218 $url = "/cgi-bin/koha/members/boraccount.pl";
220 # It's possible renewals took place, parse any renew results
222 my @renew_result = ();
223 foreach my $ren( @{$pay_result->{renew_result}} ) {
224 my $str = "renew_result=$ren->{itemnumber},$ren->{success},";
225 my $app = $ren->{success} ?
227 output_pref({ dt => $ren->{due_date}, as_due_date => 1 })
229 push @renew_result, "${str}${app}";
231 my $append = scalar @renew_result ? '&' . join('&', @renew_result) : '';
233 $url .= "?borrowernumber=$borrowernumber&payment_id=$payment_id&change_given=${change_given}${append}";
235 print $input->redirect($url);
238 $total_paid = '0.00'; #TODO not right with pay_individual
241 if ( $input->param('error_over') ) {
242 $template->param( error_over => 1, total_due => scalar $input->param('amountoutstanding') );
246 payment_id => $payment_id,
249 borrowernumber => $borrowernumber, # some templates require global
253 csrf_token => Koha::Token->new->generate_csrf( { session_id => scalar $input->cookie('CGISESSID') } ),
256 output_html_with_http_headers $input, $cookie, $template->output;