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>.
32 use Koha
::Patron
::Categories
;
33 use Koha
::AuthorisedValues
;
37 my $input = CGI
->new();
39 my $payment_id = $input->param('payment_id');
40 my $writeoff_individual = $input->param('writeoff_individual');
41 my $type = scalar $input->param('type') || 'payment';
43 my $updatecharges_permissions = ($writeoff_individual || $type eq 'writeoff') ?
'writeoff' : 'remaining_permissions';
44 my ( $template, $loggedinuser, $cookie ) = get_template_and_user
(
45 { template_name
=> 'members/paycollect.tt',
49 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 ) or die "Not logged in";
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 $borrower = $patron->unblessed;
61 my $account = $patron->account;
62 my $category = $patron->category;
63 my $user = $input->remote_user;
65 my $library_id = C4
::Context
->userenv->{'branch'};
66 my $total_due = $account->outstanding_debits->total_outstanding;
68 my $total_paid = $input->param('paid');
70 my $select_lines = $input->param('selected');
71 my $pay_individual = $input->param('pay_individual');
72 my $select = $input->param('selected_accts');
73 my $payment_note = uri_unescape
scalar $input->param('payment_note');
74 my $payment_type = scalar $input->param('payment_type');
77 if ( $pay_individual || $writeoff_individual ) {
78 if ($pay_individual) {
79 $template->param( pay_individual
=> 1 );
80 } elsif ($writeoff_individual) {
81 $template->param( writeoff_individual
=> 1 );
83 my $accounttype = $input->param('accounttype');
84 $accountlines_id = $input->param('accountlines_id');
85 my $amount = $input->param('amount');
86 my $amountoutstanding = $input->param('amountoutstanding');
87 my $itemnumber = $input->param('itemnumber');
88 my $description = $input->param('description');
89 my $title = $input->param('title');
90 $total_due = $amountoutstanding;
92 accounttype
=> $accounttype,
93 accountlines_id
=> $accountlines_id,
95 amountoutstanding
=> $amountoutstanding,
97 itemnumber
=> $itemnumber,
98 individual_description
=> $description,
99 payment_note
=> $payment_note,
101 } elsif ($select_lines) {
102 $total_due = $input->param('amt');
104 selected_accts
=> $select_lines,
106 selected_accts_notes
=> scalar $input->param('notes'),
110 if ( $total_paid and $total_paid ne '0.00' ) {
111 if ( $total_paid < 0 or $total_paid > $total_due ) {
114 total_due
=> $total_due
117 output_and_exit
( $input, $cookie, $template, 'wrong_csrf_token' )
118 unless Koha
::Token
->new->check_csrf( {
119 session_id
=> $input->cookie('CGISESSID'),
120 token
=> scalar $input->param('csrf_token'),
123 if ($pay_individual) {
124 my $line = Koha
::Account
::Lines
->find($accountlines_id);
125 $payment_id = $account->pay(
128 amount
=> $total_paid,
129 library_id
=> $library_id,
130 note
=> $payment_note,
131 interface
=> C4
::Context
->interface,
132 payment_type
=> $payment_type,
135 print $input->redirect(
136 "/cgi-bin/koha/members/pay.pl?borrowernumber=$borrowernumber&payment_id=$payment_id");
139 if ( $select =~ /^([\d,]*).*/ ) {
140 $select = $1; # ensure passing no junk
142 my @acc = split /,/, $select;
143 my $note = $input->param('selected_accts_notes');
145 my @lines = Koha
::Account
::Lines
->search(
147 borrowernumber
=> $borrowernumber,
148 amountoutstanding
=> { '<>' => 0 },
149 accountlines_id
=> { 'IN' => \
@acc },
151 { order_by
=> 'date' }
154 $payment_id = $account->pay(
157 amount
=> $total_paid,
158 library_id
=> $library_id,
161 interface
=> C4
::Context
->interface,
162 payment_type
=> $payment_type,
167 my $note = $input->param('selected_accts_notes');
168 $payment_id = $account->pay(
170 amount
=> $total_paid,
171 library_id
=> $library_id,
173 payment_type
=> $payment_type,
174 interface
=> C4
::Context
->interface
179 print $input->redirect("/cgi-bin/koha/members/boraccount.pl?borrowernumber=$borrowernumber&payment_id=$payment_id");
183 $total_paid = '0.00'; #TODO not right with pay_individual
186 $template->param(%$borrower);
188 if ( $input->param('error_over') ) {
189 $template->param( error_over
=> 1, total_due
=> scalar $input->param('amountoutstanding') );
193 payment_id
=> $payment_id,
196 borrowernumber
=> $borrowernumber, # some templates require global
200 csrf_token
=> Koha
::Token
->new->generate_csrf( { session_id
=> scalar $input->cookie('CGISESSID') } ),
203 output_html_with_http_headers
$input, $cookie, $template->output;