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);
31 use Koha
::Patron
::Images
;
36 use Koha
::Patron
::Categories
;
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
=> 1, updatecharges
=> $updatecharges_permissions },
51 # get borrower details
52 my $borrowernumber = $input->param('borrowernumber');
53 my $patron = Koha
::Patrons
->find( $borrowernumber );
55 print $input->redirect("/cgi-bin/koha/circ/circulation.pl?borrowernumber=$borrowernumber");
58 my $borrower = $patron->unblessed;
59 my $category = $patron->category;
60 $borrower->{description
} = $category->description;
61 $borrower->{category_type
} = $category->category_type;
62 my $user = $input->remote_user;
64 my $branch = C4
::Context
->userenv->{'branch'};
66 my ( $total_due, $accts, $numaccts ) = GetMemberAccountRecords
($borrowernumber);
67 my $total_paid = $input->param('paid');
69 my $individual = $input->param('pay_individual');
70 my $writeoff = $input->param('writeoff_individual');
71 my $select_lines = $input->param('selected');
72 my $select = $input->param('selected_accts');
73 my $payment_note = uri_unescape
scalar $input->param('payment_note');
76 if ( $individual || $writeoff ) {
78 $template->param( pay_individual
=> 1 );
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;
91 accounttype
=> $accounttype,
92 accountlines_id
=> $accountlines_id,
94 amountoutstanding
=> $amountoutstanding,
96 itemnumber
=> $itemnumber,
97 individual_description
=> $description,
98 payment_note
=> $payment_note,
100 } elsif ($select_lines) {
101 $total_due = $input->param('amt');
103 selected_accts
=> $select_lines,
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 ) {
113 total_due
=> $total_due
116 die "Wrong CSRF token"
117 unless Koha
::Token
->new->check_csrf( {
118 session_id
=> $input->cookie('CGISESSID'),
119 token
=> scalar $input->param('csrf_token'),
123 my $line = Koha
::Account
::Lines
->find($accountlines_id);
124 Koha
::Account
->new( { patron_id
=> $borrowernumber } )->pay(
127 amount
=> $total_paid,
128 library_id
=> $branch,
129 note
=> $payment_note
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,
157 amount
=> $total_paid,
164 my $note = $input->param('selected_accts_notes');
165 Koha
::Account
->new( { patron_id
=> $borrowernumber } )
166 ->pay( { amount
=> $total_paid, note
=> $note } );
169 print $input->redirect(
170 "/cgi-bin/koha/members/boraccount.pl?borrowernumber=$borrowernumber"
175 $total_paid = '0.00'; #TODO not right with pay_individual
178 borrower_add_additional_fields
($borrower, $template);
180 $template->param(%$borrower);
183 borrowernumber
=> $borrowernumber, # some templates require global
184 borrower
=> $borrower,
185 categoryname
=> $borrower->{description
},
187 ExtendedPatronAttributes
=> C4
::Context
->preference('ExtendedPatronAttributes'),
189 csrf_token
=> Koha
::Token
->new->generate_csrf({ session_id
=> scalar $input->cookie('CGISESSID') }),
192 output_html_with_http_headers
$input, $cookie, $template->output;
194 sub borrower_add_additional_fields
{
195 my ( $b_ref, $template ) = @_;
197 # some borrower info is not returned in the standard call despite being assumed
198 # in a number of templates. It should not be the business of this script but in lieu of
199 # a revised api here it is ...
200 if ( $b_ref->{category_type
} eq 'C' ) {
201 my $patron_categories = Koha
::Patron
::Categories
->search_limited({ category_type
=> 'A' }, {order_by
=> ['categorycode']});
202 $template->param( 'CATCODE_MULTI' => 1) if $patron_categories->count > 1;
203 $template->param( 'catcode' => $patron_categories->next->categorycode ) if $patron_categories->count == 1;
204 } elsif ( $b_ref->{category_type
} eq 'A' || $b_ref->{category_type
} eq 'I' ) {
205 $b_ref->{adultborrower
} = 1;
208 my $patron_image = Koha
::Patron
::Images
->find($b_ref->{borrowernumber
});
209 $template->param( picture
=> 1 ) if $patron_image;
211 if (C4
::Context
->preference('ExtendedPatronAttributes')) {
212 $b_ref->{extendedattributes
} = GetBorrowerAttributes
($b_ref->{borrowernumber
});