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 under the
10 # terms of the GNU General Public License as published by the Free Software
11 # Foundation; either version 2 of the License, or (at your option) any later
14 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
15 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
16 # A PARTICULAR PURPOSE. See the GNU General Public License for more details.
18 # You should have received a copy of the GNU General Public License along
19 # with Koha; if not, write to the Free Software Foundation, Inc.,
20 # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
24 written 11/1/2000 by chris@katipo.oc.nz
25 part of the koha library system, script to facilitate paying off fines
43 use C4
::Members
::Attributes
qw(GetBorrowerAttributes);
45 our $input = CGI
->new;
47 my $updatecharges_permissions = $input->param('woall') ?
'writeoff' : 'remaining_permissions';
48 our ( $template, $loggedinuser, $cookie ) = get_template_and_user
(
49 { template_name
=> 'members/pay.tmpl',
53 flagsrequired
=> { borrowers
=> 1, updatecharges
=> $updatecharges_permissions },
58 my @names = $input->param;
60 our $borrowernumber = $input->param('borrowernumber');
61 if ( !$borrowernumber ) {
62 $borrowernumber = $input->param('borrowernumber0');
65 # get borrower details
66 our $borrower = GetMember
( borrowernumber
=> $borrowernumber );
67 our $user = $input->remote_user;
70 my $branches = GetBranches
();
71 our $branch = GetBranch
( $input, $branches );
73 my $writeoff_item = $input->param('confirm_writeoff');
74 my $paycollect = $input->param('paycollect');
76 print $input->redirect(
77 "/cgi-bin/koha/members/paycollect.pl?borrowernumber=$borrowernumber");
79 my $payselected = $input->param('payselected');
84 my $writeoff_all = $input->param('woall'); # writeoff all fines
87 } elsif ($writeoff_item) {
88 my $accountlines_id = $input->param('accountlines_id');
89 my $itemno = $input->param('itemnumber');
90 my $account_type = $input->param('accounttype');
91 my $amount = $input->param('amountoutstanding');
92 my $payment_note = $input->param("payment_note");
93 WriteOffFee
( $borrowernumber, $accountlines_id, $itemno, $account_type, $amount, $branch, $payment_note );
97 if (/^pay_indiv_(\d+)$/) {
99 redirect_to_paycollect
( 'pay_individual', $line_no );
100 } elsif (/^wo_indiv_(\d+)$/) {
102 redirect_to_paycollect
( 'writeoff_individual', $line_no );
107 activeBorrowerRelationship
=> (C4
::Context
->preference('borrowerRelationship') ne ''),
108 RoutingSerials
=> C4
::Context
->preference('RoutingSerials'),
111 add_accounts_to_template
();
113 output_html_with_http_headers
$input, $cookie, $template->output;
115 sub add_accounts_to_template
{
117 my ( $total, undef, undef ) = GetMemberAccountRecords
($borrowernumber);
119 my @notify = NumberNotifyId
($borrowernumber);
121 my $notify_groups = [];
122 for my $notify_id (@notify) {
123 my ( $acct_total, $accountlines, undef ) =
124 GetBorNotifyAcctRecord
( $borrowernumber, $notify_id );
125 if ( @
{$accountlines} ) {
126 my $totalnotify = AmountNotify
( $notify_id, $borrowernumber );
128 { accountlines
=> $accountlines,
129 notify
=> $notify_id,
130 total
=> $totalnotify,
134 borrower_add_additional_fields
($borrower);
136 accounts
=> $accounts,
137 borrower
=> $borrower,
144 sub get_for_redirect
{
145 my ( $name, $name_in, $money ) = @_;
146 my $s = q{&} . $name . q{=};
147 my $value = $input->param($name_in);
148 if ( !defined $value ) {
149 $value = ( $money == 1 ) ?
0 : q{};
152 $s .= sprintf '%.2f', $value;
159 sub redirect_to_paycollect
{
160 my ( $action, $line_no ) = @_;
162 "/cgi-bin/koha/members/paycollect.pl?borrowernumber=$borrowernumber";
164 $redirect .= "$action=1";
165 $redirect .= get_for_redirect
( 'accounttype', "accounttype$line_no", 0 );
166 $redirect .= get_for_redirect
( 'amount', "amount$line_no", 1 );
168 get_for_redirect
( 'amountoutstanding', "amountoutstanding$line_no", 1 );
169 $redirect .= get_for_redirect
( 'accountno', "accountno$line_no", 0 );
170 $redirect .= get_for_redirect
( 'title', "title$line_no", 0 );
171 $redirect .= get_for_redirect
( 'itemnumber', "itemnumber$line_no", 0 );
172 $redirect .= get_for_redirect
( 'notify_id', "notify_id$line_no", 0 );
173 $redirect .= get_for_redirect
( 'notify_level', "notify_level$line_no", 0 );
174 $redirect .= get_for_redirect
( 'accountlines_id', "accountlines_id$line_no", 0 );
175 $redirect .= q{&} . 'payment_note' . q{=} . uri_escape
( $input->param("payment_note_$line_no") );
176 $redirect .= '&remote_user=';
178 return print $input->redirect($redirect);
183 my @wo_lines = grep { /^accountno\d+$/ } @params;
187 my $accounttype = $input->param("accounttype$value");
189 # my $borrowernum = $input->param("borrowernumber$value");
190 my $itemno = $input->param("itemnumber$value");
191 my $amount = $input->param("amountoutstanding$value");
192 my $accountno = $input->param("accountno$value");
193 my $accountlines_id = $input->param("accountlines_id$value");
194 my $payment_note = $input->param("payment_note_$value");
195 WriteOffFee
( $borrowernumber, $accountlines_id, $itemno, $accounttype, $amount, $branch, $payment_note );
199 $borrowernumber = $input->param('borrowernumber');
200 print $input->redirect(
201 "/cgi-bin/koha/members/boraccount.pl?borrowernumber=$borrowernumber");
205 sub borrower_add_additional_fields
{
208 # some borrower info is not returned in the standard call despite being assumed
209 # in a number of templates. It should not be the business of this script but in lieu of
210 # a revised api here it is ...
211 if ( $b_ref->{category_type
} eq 'C' ) {
212 my ( $catcodes, $labels ) =
213 GetborCatFromCatType
( 'A', 'WHERE category_type = ?' );
214 if ( @
{$catcodes} ) {
215 if ( @
{$catcodes} > 1 ) {
216 $b_ref->{CATCODE_MULTI
} = 1;
217 } elsif ( @
{$catcodes} == 1 ) {
218 $b_ref->{catcode
} = $catcodes->[0];
221 } elsif ( $b_ref->{category_type
} eq 'A' ) {
222 $b_ref->{adultborrower
} = 1;
224 my ( $picture, $dberror ) = GetPatronImage
( $b_ref->{borrowernumber
} );
226 $b_ref->{has_picture
} = 1;
229 if (C4
::Context
->preference('ExtendedPatronAttributes')) {
230 $b_ref->{extendedattributes
} = GetBorrowerAttributes
($borrowernumber);
232 ExtendedPatronAttributes
=> 1,
236 $b_ref->{branchname
} = GetBranchName
( $b_ref->{branchcode
} );
245 if (/^incl_par_(\d+)$/) {
247 push @lines_to_pay, $input->param("accountno$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 { $input->param("payment_note_$_") } @lines_to_pay );
255 "/cgi-bin/koha/members/paycollect.pl?borrowernumber=$borrowernumber"
260 print $input->redirect($redirect);