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 if ( $input->param('paycollect') ) {
78 print $input->redirect(
79 "/cgi-bin/koha/members/paycollect.pl?borrowernumber=$borrowernumber");
81 elsif ( $input->param('payselected') ) {
82 payselected
({ params
=> \
@names });
84 elsif ( $input->param('writeoff_selected') ) {
85 payselected
({ params
=> \
@names, type
=> 'writeoff' });
87 elsif ( $input->param('woall') ) {
90 elsif ( $input->param('confirm_writeoff') ) {
91 my $accountlines_id = $input->param('accountlines_id');
92 my $amount = $input->param('amountwrittenoff');
93 my $payment_note = $input->param("payment_note");
95 my $accountline = Koha
::Account
::Lines
->find( $accountlines_id );
97 if ( $amount > $accountline->amountoutstanding ) {
98 print $input->redirect( "/cgi-bin/koha/members/paycollect.pl?"
99 . "borrowernumber=$borrowernumber"
100 . "&amount=" . $accountline->amount
101 . "&amountoutstanding=" . $accountline->amountoutstanding
102 . "&accounttype=" . $accountline->accounttype
103 . "&accountlines_id=" . $accountlines_id
104 . "&writeoff_individual=1"
108 Koha
::Account
->new( { patron_id
=> $borrowernumber } )->pay(
111 lines
=> [ scalar Koha
::Account
::Lines
->find($accountlines_id) ],
113 note
=> $payment_note,
114 library_id
=> $branch,
121 if (/^pay_indiv_(\d+)$/) {
123 redirect_to_paycollect
( 'pay_individual', $line_no );
124 } elsif (/^wo_indiv_(\d+)$/) {
126 redirect_to_paycollect
( 'writeoff_individual', $line_no );
134 add_accounts_to_template
();
136 output_html_with_http_headers
$input, $cookie, $template->output;
138 sub add_accounts_to_template
{
140 my $patron = Koha
::Patrons
->find( $borrowernumber );
141 my $account_lines = $patron->account->outstanding_debits;
142 my $total = $account_lines->total_outstanding;
144 while ( my $account_line = $account_lines->next ) {
145 $account_line = $account_line->unblessed;
146 if ( $account_line->{itemnumber
} ) {
147 my $item = Koha
::Items
->find( $account_line->{itemnumber
} );
148 my $biblio = $item->biblio;
149 $account_line->{biblionumber
} = $biblio->biblionumber;
150 $account_line->{title
} = $biblio->title;
152 push @accounts, $account_line;
154 borrower_add_additional_fields
($patron);
158 accounts
=> \
@accounts,
165 sub get_for_redirect
{
166 my ( $name, $name_in, $money ) = @_;
167 my $s = q{&} . $name . q{=};
169 if (defined $input->param($name_in)) {
170 $value = uri_escape_utf8
( scalar $input->param($name_in) );
172 if ( !defined $value ) {
173 $value = ( $money == 1 ) ?
0 : q{};
176 $s .= sprintf '%.2f', $value;
183 sub redirect_to_paycollect
{
184 my ( $action, $line_no ) = @_;
186 "/cgi-bin/koha/members/paycollect.pl?borrowernumber=$borrowernumber";
188 $redirect .= "$action=1";
189 $redirect .= get_for_redirect
( 'accounttype', "accounttype$line_no", 0 );
190 $redirect .= get_for_redirect
( 'amount', "amount$line_no", 1 );
192 get_for_redirect
( 'amountoutstanding', "amountoutstanding$line_no", 1 );
193 $redirect .= get_for_redirect
( 'description', "description$line_no", 0 );
194 $redirect .= get_for_redirect
( 'title', "title$line_no", 0 );
195 $redirect .= get_for_redirect
( 'itemnumber', "itemnumber$line_no", 0 );
196 $redirect .= get_for_redirect
( 'accountlines_id', "accountlines_id$line_no", 0 );
197 $redirect .= q{&} . 'payment_note' . q{=} . uri_escape_utf8
( scalar $input->param("payment_note_$line_no") );
198 $redirect .= '&remote_user=';
200 return print $input->redirect($redirect);
205 my @wo_lines = grep { /^accountlines_id\d+$/ } @params;
207 my $borrowernumber = $input->param('borrowernumber');
212 my $amount = $input->param("amountoutstanding$value");
213 my $accountlines_id = $input->param("accountlines_id$value");
214 my $payment_note = $input->param("payment_note_$value");
215 Koha
::Account
->new( { patron_id
=> $borrowernumber } )->pay(
218 lines
=> [ scalar Koha
::Account
::Lines
->find($accountlines_id) ],
220 note
=> $payment_note,
221 library_id
=> $branch,
227 print $input->redirect("/cgi-bin/koha/members/boraccount.pl?borrowernumber=$borrowernumber");
231 sub borrower_add_additional_fields
{
234 # some borrower info is not returned in the standard call despite being assumed
235 # in a number of templates. It should not be the business of this script but in lieu of
236 # a revised api here it is ...
237 if ( $patron->is_child ) {
238 my $patron_categories = Koha
::Patron
::Categories
->search_limited({ category_type
=> 'A' }, {order_by
=> ['categorycode']});
239 $template->param( 'CATCODE_MULTI' => 1) if $patron_categories->count > 1;
240 $template->param( 'catcode' => $patron_categories->next->categorycode ) if $patron_categories->count == 1;
243 if (C4
::Context
->preference('ExtendedPatronAttributes')) {
244 my $extendedattributes = GetBorrowerAttributes
($patron->borrowernumber);
246 extendedattributes
=> $extendedattributes,
247 ExtendedPatronAttributes
=> 1,
255 my $parameters = shift;
257 my @params = @
{ $parameters->{params
} };
258 my $type = $parameters->{type
} || 'payment';
263 if (/^incl_par_(\d+)$/) {
265 push @lines_to_pay, scalar $input->param("accountlines_id$index");
266 $amt += $input->param("amountoutstanding$index");
269 $amt = '&amt=' . $amt;
270 my $sel = '&selected=' . join ',', @lines_to_pay;
271 my $notes = '¬es=' . join("%0A", map { scalar $input->param("payment_note_$_") } @lines_to_pay );
273 "/cgi-bin/koha/members/paycollect.pl?borrowernumber=$borrowernumber"
279 print $input->redirect($redirect);