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
41 use C4
::Members
::Attributes
qw(GetBorrowerAttributes);
44 use Koha
::Patron
::Categories
;
47 our $input = CGI
->new;
49 my $updatecharges_permissions = $input->param('woall') ?
'writeoff' : 'remaining_permissions';
50 our ( $template, $loggedinuser, $cookie ) = get_template_and_user
(
51 { template_name
=> 'members/pay.tt',
55 flagsrequired
=> { borrowers
=> 'edit_borrowers', updatecharges
=> $updatecharges_permissions },
60 my @names = $input->param;
62 our $borrowernumber = $input->param('borrowernumber');
63 if ( !$borrowernumber ) {
64 $borrowernumber = $input->param('borrowernumber0');
67 # get borrower details
68 my $logged_in_user = Koha
::Patrons
->find( $loggedinuser ) or die "Not logged in";
69 our $patron = Koha
::Patrons
->find($borrowernumber);
70 output_and_exit_if_error
( $input, $cookie, $template, { module
=> 'members', logged_in_user
=> $logged_in_user, current_patron
=> $patron } );
72 our $user = $input->remote_user;
75 our $branch = C4
::Context
->userenv->{'branch'};
77 my $writeoff_item = $input->param('confirm_writeoff');
78 my $paycollect = $input->param('paycollect');
80 print $input->redirect(
81 "/cgi-bin/koha/members/paycollect.pl?borrowernumber=$borrowernumber");
83 my $payselected = $input->param('payselected');
88 my $writeoff_all = $input->param('woall'); # writeoff all fines
91 } elsif ($writeoff_item) {
92 my $accountlines_id = $input->param('accountlines_id');
93 my $amount = $input->param('amountwrittenoff');
94 my $payment_note = $input->param("payment_note");
96 Koha
::Account
->new( { patron_id
=> $borrowernumber } )->pay(
99 lines
=> [ scalar Koha
::Account
::Lines
->find($accountlines_id) ],
101 note
=> $payment_note,
102 library_id
=> $branch,
108 if (/^pay_indiv_(\d+)$/) {
110 redirect_to_paycollect
( 'pay_individual', $line_no );
111 } elsif (/^wo_indiv_(\d+)$/) {
113 redirect_to_paycollect
( 'writeoff_individual', $line_no );
121 add_accounts_to_template
();
123 output_html_with_http_headers
$input, $cookie, $template->output;
125 sub add_accounts_to_template
{
127 my $patron = Koha
::Patrons
->find( $borrowernumber );
128 my $total = $patron->account->balance;
129 my $account_lines = Koha
::Account
::Lines
->search({ borrowernumber
=> $borrowernumber, amountoutstanding
=> { '!=' => 0 } }, { order_by
=> ['accounttype'] });
131 while ( my $account_line = $account_lines->next ) {
132 $account_line = $account_line->unblessed;
133 if ( $account_line->{itemnumber
} ) {
134 my $item = Koha
::Items
->find( $account_line->{itemnumber
} );
135 my $biblio = $item->biblio;
136 $account_line->{biblionumber
} = $biblio->biblionumber;
137 $account_line->{title
} = $biblio->title;
139 push @accounts, $account_line;
141 borrower_add_additional_fields
($patron->unblessed);
145 accounts
=> \
@accounts,
152 sub get_for_redirect
{
153 my ( $name, $name_in, $money ) = @_;
154 my $s = q{&} . $name . q{=};
156 if (defined $input->param($name_in)) {
157 $value = uri_escape_utf8
( scalar $input->param($name_in) );
159 if ( !defined $value ) {
160 $value = ( $money == 1 ) ?
0 : q{};
163 $s .= sprintf '%.2f', $value;
170 sub redirect_to_paycollect
{
171 my ( $action, $line_no ) = @_;
173 "/cgi-bin/koha/members/paycollect.pl?borrowernumber=$borrowernumber";
175 $redirect .= "$action=1";
176 $redirect .= get_for_redirect
( 'accounttype', "accounttype$line_no", 0 );
177 $redirect .= get_for_redirect
( 'amount', "amount$line_no", 1 );
179 get_for_redirect
( 'amountoutstanding', "amountoutstanding$line_no", 1 );
180 $redirect .= get_for_redirect
( 'description', "description$line_no", 0 );
181 $redirect .= get_for_redirect
( 'title', "title$line_no", 0 );
182 $redirect .= get_for_redirect
( 'itemnumber', "itemnumber$line_no", 0 );
183 $redirect .= get_for_redirect
( 'accountlines_id', "accountlines_id$line_no", 0 );
184 $redirect .= q{&} . 'payment_note' . q{=} . uri_escape_utf8
( scalar $input->param("payment_note_$line_no") );
185 $redirect .= '&remote_user=';
187 return print $input->redirect($redirect);
192 my @wo_lines = grep { /^accountlines_id\d+$/ } @params;
194 my $borrowernumber = $input->param('borrowernumber');
199 my $amount = $input->param("amountoutstanding$value");
200 my $accountlines_id = $input->param("accountlines_id$value");
201 my $payment_note = $input->param("payment_note_$value");
202 Koha
::Account
->new( { patron_id
=> $borrowernumber } )->pay(
205 lines
=> [ scalar Koha
::Account
::Lines
->find($accountlines_id) ],
207 note
=> $payment_note,
208 library_id
=> $branch,
214 print $input->redirect("/cgi-bin/koha/members/boraccount.pl?borrowernumber=$borrowernumber");
218 sub borrower_add_additional_fields
{
221 # some borrower info is not returned in the standard call despite being assumed
222 # in a number of templates. It should not be the business of this script but in lieu of
223 # a revised api here it is ...
224 if ( $b_ref->{category_type
} eq 'C' ) {
225 my $patron_categories = Koha
::Patron
::Categories
->search_limited({ category_type
=> 'A' }, {order_by
=> ['categorycode']});
226 $template->param( 'CATCODE_MULTI' => 1) if $patron_categories->count > 1;
227 $template->param( 'catcode' => $patron_categories->next->categorycode ) if $patron_categories->count == 1;
230 if (C4
::Context
->preference('ExtendedPatronAttributes')) {
231 $b_ref->{extendedattributes
} = GetBorrowerAttributes
($borrowernumber);
233 ExtendedPatronAttributes
=> 1,
245 if (/^incl_par_(\d+)$/) {
247 push @lines_to_pay, scalar $input->param("accountlines_id$index");
248 $amt += $input->param("amountoutstanding$index");
251 $amt = '&amt=' . $amt;
252 my $sel = '&selected=' . join ',', @lines_to_pay;
253 my $notes = '¬es=' . join("%0A", map { scalar $input->param("payment_note_$_") } @lines_to_pay );
255 "/cgi-bin/koha/members/paycollect.pl?borrowernumber=$borrowernumber"
260 print $input->redirect($redirect);