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>.
28 use C4
::Members
::Attributes
qw(GetBorrowerAttributes);
33 use Koha
::Patron
::Categories
;
34 use Koha
::AuthorisedValues
;
38 my $input = CGI
->new();
40 my $updatecharges_permissions = $input->param('writeoff_individual') ?
'writeoff' : 'remaining_permissions';
41 my ( $template, $loggedinuser, $cookie ) = get_template_and_user
(
42 { template_name
=> 'members/paycollect.tt',
46 flagsrequired
=> { borrowers
=> 'edit_borrowers', updatecharges
=> $updatecharges_permissions },
51 # get borrower details
52 my $borrowernumber = $input->param('borrowernumber');
53 my $logged_in_user = Koha
::Patrons
->find( $loggedinuser ) or die "Not logged in";
54 my $patron = Koha
::Patrons
->find( $borrowernumber );
55 output_and_exit_if_error
( $input, $cookie, $template, { module
=> 'members', logged_in_user
=> $logged_in_user, current_patron
=> $patron } );
57 my $borrower = $patron->unblessed;
58 my $category = $patron->category;
59 my $user = $input->remote_user;
61 my $branch = C4
::Context
->userenv->{'branch'};
62 my $total_due = $patron->account->outstanding_debits->total_outstanding;
64 my $total_paid = $input->param('paid');
66 my $individual = $input->param('pay_individual');
67 my $writeoff = $input->param('writeoff_individual');
68 my $select_lines = $input->param('selected');
69 my $select = $input->param('selected_accts');
70 my $payment_note = uri_unescape
scalar $input->param('payment_note');
71 my $payment_type = scalar $input->param('payment_type');
72 my $type = scalar $input->param('type') || 'payment',
75 if ( $individual || $writeoff ) {
77 $template->param( pay_individual
=> 1 );
79 $template->param( writeoff_individual
=> 1 );
81 my $accounttype = $input->param('accounttype');
82 $accountlines_id = $input->param('accountlines_id');
83 my $amount = $input->param('amount');
84 my $amountoutstanding = $input->param('amountoutstanding');
85 my $itemnumber = $input->param('itemnumber');
86 my $description = $input->param('description');
87 my $title = $input->param('title');
88 $total_due = $amountoutstanding;
90 accounttype
=> $accounttype,
91 accountlines_id
=> $accountlines_id,
93 amountoutstanding
=> $amountoutstanding,
95 itemnumber
=> $itemnumber,
96 individual_description
=> $description,
97 payment_note
=> $payment_note,
99 } elsif ($select_lines) {
100 $total_due = $input->param('amt');
102 selected_accts
=> $select_lines,
104 selected_accts_notes
=> scalar $input->param('notes'),
108 if ( $total_paid and $total_paid ne '0.00' ) {
109 if ( $total_paid < 0 or $total_paid > $total_due ) {
112 total_due
=> $total_due
115 output_and_exit
( $input, $cookie, $template, 'wrong_csrf_token' )
116 unless Koha
::Token
->new->check_csrf( {
117 session_id
=> $input->cookie('CGISESSID'),
118 token
=> scalar $input->param('csrf_token'),
122 my $line = Koha
::Account
::Lines
->find($accountlines_id);
123 Koha
::Account
->new( { patron_id
=> $borrowernumber } )->pay(
126 amount
=> $total_paid,
127 library_id
=> $branch,
128 note
=> $payment_note,
129 payment_type
=> $payment_type,
132 print $input->redirect(
133 "/cgi-bin/koha/members/pay.pl?borrowernumber=$borrowernumber");
136 if ( $select =~ /^([\d,]*).*/ ) {
137 $select = $1; # ensure passing no junk
139 my @acc = split /,/, $select;
140 my $note = $input->param('selected_accts_notes');
142 my @lines = Koha
::Account
::Lines
->search(
144 borrowernumber
=> $borrowernumber,
145 amountoutstanding
=> { '<>' => 0 },
146 accountlines_id
=> { 'IN' => \
@acc },
148 { order_by
=> 'date' }
153 patron_id
=> $borrowernumber,
158 amount
=> $total_paid,
161 payment_type
=> $payment_type,
166 my $note = $input->param('selected_accts_notes');
167 Koha
::Account
->new( { patron_id
=> $borrowernumber } )->pay(
169 amount
=> $total_paid,
171 payment_type
=> $payment_type,
176 print $input->redirect("/cgi-bin/koha/members/boraccount.pl?borrowernumber=$borrowernumber");
180 $total_paid = '0.00'; #TODO not right with pay_individual
183 borrower_add_additional_fields
($patron, $template);
185 $template->param(%$borrower);
187 if ( $input->param('error_over') ) {
188 $template->param( error_over
=> 1, total_due
=> scalar $input->param('amountoutstanding') );
193 borrowernumber
=> $borrowernumber, # some templates require global
196 ExtendedPatronAttributes
=> C4
::Context
->preference('ExtendedPatronAttributes'),
198 csrf_token
=> Koha
::Token
->new->generate_csrf({ session_id
=> scalar $input->cookie('CGISESSID') }),
201 output_html_with_http_headers
$input, $cookie, $template->output;
203 sub borrower_add_additional_fields
{
204 my ( $patron, $template ) = @_;
206 # some borrower info is not returned in the standard call despite being assumed
207 # in a number of templates. It should not be the business of this script but in lieu of
208 # a revised api here it is ...
210 if (C4
::Context
->preference('ExtendedPatronAttributes')) {
211 my $extendedattributes = GetBorrowerAttributes
($patron->borrowernumber);
212 $template->param( extendedattributes
=> $extendedattributes );