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);
32 use Koha
::Patron
::Images
;
34 my $input = CGI
->new();
36 my $updatecharges_permissions = $input->param('writeoff_individual') ?
'writeoff' : 'remaining_permissions';
37 my ( $template, $loggedinuser, $cookie ) = get_template_and_user
(
38 { template_name
=> 'members/paycollect.tt',
42 flagsrequired
=> { borrowers
=> 1, updatecharges
=> $updatecharges_permissions },
47 # get borrower details
48 my $borrowernumber = $input->param('borrowernumber');
49 my $borrower = GetMember
( borrowernumber
=> $borrowernumber );
50 my $user = $input->remote_user;
52 my $branch = C4
::Context
->userenv->{'branch'};
54 my ( $total_due, $accts, $numaccts ) = GetMemberAccountRecords
($borrowernumber);
55 my $total_paid = $input->param('paid');
57 my $individual = $input->param('pay_individual');
58 my $writeoff = $input->param('writeoff_individual');
59 my $select_lines = $input->param('selected');
60 my $select = $input->param('selected_accts');
61 my $payment_note = uri_unescape
$input->param('payment_note');
65 if ( $individual || $writeoff ) {
67 $template->param( pay_individual
=> 1 );
69 $template->param( writeoff_individual
=> 1 );
71 my $accounttype = $input->param('accounttype');
72 $accountlines_id = $input->param('accountlines_id');
73 my $amount = $input->param('amount');
74 my $amountoutstanding = $input->param('amountoutstanding');
75 $accountno = $input->param('accountno');
76 my $itemnumber = $input->param('itemnumber');
77 my $description = $input->param('description');
78 my $title = $input->param('title');
79 my $notify_id = $input->param('notify_id');
80 my $notify_level = $input->param('notify_level');
81 $total_due = $amountoutstanding;
83 accounttype
=> $accounttype,
84 accountlines_id
=> $accountlines_id,
85 accountno
=> $accountno,
87 amountoutstanding
=> $amountoutstanding,
89 itemnumber
=> $itemnumber,
90 individual_description
=> $description,
91 notify_id
=> $notify_id,
92 notify_level
=> $notify_level,
93 payment_note
=> $payment_note,
95 } elsif ($select_lines) {
96 $total_due = $input->param('amt');
98 selected_accts
=> $select_lines,
100 selected_accts_notes
=> scalar $input->param('notes'),
104 if ( $total_paid and $total_paid ne '0.00' ) {
105 if ( $total_paid < 0 or $total_paid > $total_due ) {
108 total_due
=> $total_due
112 if ( $total_paid == $total_due ) {
113 makepayment
( $accountlines_id, $borrowernumber, $accountno, $total_paid, $user,
114 $branch, $payment_note );
116 makepartialpayment
( $accountlines_id, $borrowernumber, $accountno, $total_paid,
117 $user, $branch, $payment_note );
119 print $input->redirect(
120 "/cgi-bin/koha/members/pay.pl?borrowernumber=$borrowernumber");
123 if ( $select =~ /^([\d,]*).*/ ) {
124 $select = $1; # ensure passing no junk
126 my @acc = split /,/, $select;
127 my $note = $input->param('selected_accts_notes');
128 recordpayment_selectaccts
( $borrowernumber, $total_paid, \
@acc, $note );
130 my $note = $input->param('selected_accts_notes');
131 recordpayment
( $borrowernumber, $total_paid, '', $note );
134 # recordpayment does not return success or failure so lets redisplay the boraccount
136 print $input->redirect(
137 "/cgi-bin/koha/members/boraccount.pl?borrowernumber=$borrowernumber"
142 $total_paid = '0.00'; #TODO not right with pay_individual
145 borrower_add_additional_fields
($borrower, $template);
147 $template->param(%$borrower);
150 borrowernumber
=> $borrowernumber, # some templates require global
151 borrower
=> $borrower,
152 categoryname
=> $borrower->{description
},
154 activeBorrowerRelationship
=> (C4
::Context
->preference('borrowerRelationship') ne ''),
155 RoutingSerials
=> C4
::Context
->preference('RoutingSerials'),
156 ExtendedPatronAttributes
=> C4
::Context
->preference('ExtendedPatronAttributes'),
159 output_html_with_http_headers
$input, $cookie, $template->output;
161 sub borrower_add_additional_fields
{
162 my ( $b_ref, $template ) = @_;
164 # some borrower info is not returned in the standard call despite being assumed
165 # in a number of templates. It should not be the business of this script but in lieu of
166 # a revised api here it is ...
167 if ( $b_ref->{category_type
} eq 'C' ) {
168 my ( $catcodes, $labels ) =
169 GetborCatFromCatType
( 'A', 'WHERE category_type = ?' );
170 if ( @
{$catcodes} ) {
171 if ( @
{$catcodes} > 1 ) {
172 $b_ref->{CATCODE_MULTI
} = 1;
173 } elsif ( @
{$catcodes} == 1 ) {
174 $b_ref->{catcode
} = $catcodes->[0];
177 } elsif ( $b_ref->{category_type
} eq 'A' ) {
178 $b_ref->{adultborrower
} = 1;
181 my $patron_image = Koha
::Patron
::Images
->find($b_ref->{borrowernumber
});
182 $template->param( picture
=> 1 ) if $patron_image;
184 if (C4
::Context
->preference('ExtendedPatronAttributes')) {
185 $b_ref->{extendedattributes
} = GetBorrowerAttributes
($b_ref->{borrowernumber
});
188 $b_ref->{branchname
} = GetBranchName
( $b_ref->{branchcode
} );