3 # Copyright 2000-2002 Katipo Communications
4 # Copyright 2010 BibLibre
5 # Copyright 2010,2011 PTFS-Europe Ltd
7 # This file is part of Koha.
9 # Koha is free software; you can redistribute it and/or modify it
10 # under the terms of the GNU General Public License as published by
11 # the Free Software Foundation; either version 3 of the License, or
12 # (at your option) any later version.
14 # Koha is distributed in the hope that it will be useful, but
15 # WITHOUT ANY WARRANTY; without even the implied warranty of
16 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 # GNU General Public License for more details.
19 # You should have received a copy of the GNU General Public License
20 # along with Koha; if not, see <http://www.gnu.org/licenses>.
24 written 11/1/2000 by chris@katipo.oc.nz
25 part of the koha library system, script to facilitate paying off fines
42 use C4
::Members
::Attributes
qw(GetBorrowerAttributes);
44 use Koha
::Patron
::Images
;
46 use Koha
::Patron
::Categories
;
49 our $input = CGI
->new;
51 my $updatecharges_permissions = $input->param('woall') ?
'writeoff' : 'remaining_permissions';
52 our ( $template, $loggedinuser, $cookie ) = get_template_and_user
(
53 { template_name
=> 'members/pay.tt',
57 flagsrequired
=> { borrowers
=> 1, updatecharges
=> $updatecharges_permissions },
62 my @names = $input->param;
64 our $borrowernumber = $input->param('borrowernumber');
65 if ( !$borrowernumber ) {
66 $borrowernumber = $input->param('borrowernumber0');
69 # get borrower details
70 my $patron = Koha
::Patrons
->find( $borrowernumber );
71 my $category = $patron->category;
72 our $borrower = $patron->unblessed;
73 $borrower->{description
} = $category->description;
74 $borrower->{category_type
} = $category->category_type;
75 our $user = $input->remote_user;
78 our $branch = C4
::Context
->userenv->{'branch'};
80 my $writeoff_item = $input->param('confirm_writeoff');
81 my $paycollect = $input->param('paycollect');
83 print $input->redirect(
84 "/cgi-bin/koha/members/paycollect.pl?borrowernumber=$borrowernumber");
86 my $payselected = $input->param('payselected');
91 my $writeoff_all = $input->param('woall'); # writeoff all fines
94 } elsif ($writeoff_item) {
95 my $accountlines_id = $input->param('accountlines_id');
96 my $amount = $input->param('amountoutstanding');
97 my $payment_note = $input->param("payment_note");
99 Koha
::Account
->new( { patron_id
=> $borrowernumber } )->pay(
102 lines
=> [ scalar Koha
::Account
::Lines
->find($accountlines_id) ],
104 note
=> $payment_note,
105 library_id
=> $branch,
111 if (/^pay_indiv_(\d+)$/) {
113 redirect_to_paycollect
( 'pay_individual', $line_no );
114 } elsif (/^wo_indiv_(\d+)$/) {
116 redirect_to_paycollect
( 'writeoff_individual', $line_no );
122 RoutingSerials
=> C4
::Context
->preference('RoutingSerials'),
125 add_accounts_to_template
();
127 output_html_with_http_headers
$input, $cookie, $template->output;
129 sub add_accounts_to_template
{
131 my ( $total, undef, undef ) = GetMemberAccountRecords
($borrowernumber);
133 my @notify = NumberNotifyId
($borrowernumber);
135 my $notify_groups = [];
136 for my $notify_id (@notify) {
137 my ( $acct_total, $accountlines, undef ) =
138 GetBorNotifyAcctRecord
( $borrowernumber, $notify_id );
139 if ( @
{$accountlines} ) {
140 my $totalnotify = AmountNotify
( $notify_id, $borrowernumber );
142 { accountlines
=> $accountlines,
143 notify
=> $notify_id,
144 total
=> $totalnotify,
148 borrower_add_additional_fields
($borrower);
150 $template->param(%$borrower);
152 my $patron_image = Koha
::Patron
::Images
->find($borrower->{borrowernumber
});
153 $template->param( picture
=> 1 ) if $patron_image;
155 accounts
=> $accounts,
156 borrower
=> $borrower,
157 categoryname
=> $borrower->{'description'},
164 sub get_for_redirect
{
165 my ( $name, $name_in, $money ) = @_;
166 my $s = q{&} . $name . q{=};
167 my $value = uri_escape_utf8
( $input->param($name_in) );
168 if ( !defined $value ) {
169 $value = ( $money == 1 ) ?
0 : q{};
172 $s .= sprintf '%.2f', $value;
179 sub redirect_to_paycollect
{
180 my ( $action, $line_no ) = @_;
182 "/cgi-bin/koha/members/paycollect.pl?borrowernumber=$borrowernumber";
184 $redirect .= "$action=1";
185 $redirect .= get_for_redirect
( 'accounttype', "accounttype$line_no", 0 );
186 $redirect .= get_for_redirect
( 'amount', "amount$line_no", 1 );
188 get_for_redirect
( 'amountoutstanding', "amountoutstanding$line_no", 1 );
189 $redirect .= get_for_redirect
( 'description', "description$line_no", 0 );
190 $redirect .= get_for_redirect
( 'title', "title$line_no", 0 );
191 $redirect .= get_for_redirect
( 'itemnumber', "itemnumber$line_no", 0 );
192 $redirect .= get_for_redirect
( 'notify_id', "notify_id$line_no", 0 );
193 $redirect .= get_for_redirect
( 'notify_level', "notify_level$line_no", 0 );
194 $redirect .= get_for_redirect
( 'accountlines_id', "accountlines_id$line_no", 0 );
195 $redirect .= q{&} . 'payment_note' . q{=} . uri_escape_utf8
( $input->param("payment_note_$line_no") );
196 $redirect .= '&remote_user=';
198 return print $input->redirect($redirect);
203 my @wo_lines = grep { /^accountlines_id\d+$/ } @params;
205 my $borrowernumber = $input->param('borrowernumber');
210 my $amount = $input->param("amountoutstanding$value");
211 my $accountlines_id = $input->param("accountlines_id$value");
212 my $payment_note = $input->param("payment_note_$value");
213 Koha
::Account
->new( { patron_id
=> $borrowernumber } )->pay(
216 lines
=> [ scalar Koha
::Account
::Lines
->find($accountlines_id) ],
218 note
=> $payment_note,
219 library_id
=> $branch,
225 print $input->redirect("/cgi-bin/koha/members/boraccount.pl?borrowernumber=$borrowernumber");
229 sub borrower_add_additional_fields
{
232 # some borrower info is not returned in the standard call despite being assumed
233 # in a number of templates. It should not be the business of this script but in lieu of
234 # a revised api here it is ...
235 if ( $b_ref->{category_type
} eq 'C' ) {
236 my $patron_categories = Koha
::Patron
::Categories
->search_limited({ category_type
=> 'A' }, {order_by
=> ['categorycode']});
237 $template->param( 'CATCODE_MULTI' => 1) if $patron_categories->count > 1;
238 $template->param( 'catcode' => $patron_categories->next ) if $patron_categories->count == 1;
239 } elsif ( $b_ref->{category_type
} eq 'A' || $b_ref->{category_type
} eq 'I' ) {
240 $b_ref->{adultborrower
} = 1;
243 if (C4
::Context
->preference('ExtendedPatronAttributes')) {
244 $b_ref->{extendedattributes
} = GetBorrowerAttributes
($borrowernumber);
246 ExtendedPatronAttributes
=> 1,
258 if (/^incl_par_(\d+)$/) {
260 push @lines_to_pay, $input->param("accountlines_id$index");
261 $amt += $input->param("amountoutstanding$index");
264 $amt = '&amt=' . $amt;
265 my $sel = '&selected=' . join ',', @lines_to_pay;
266 my $notes = '¬es=' . join("%0A", map { $input->param("payment_note_$_") } @lines_to_pay );
268 "/cgi-bin/koha/members/paycollect.pl?borrowernumber=$borrowernumber"
273 print $input->redirect($redirect);