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 under the
8 # terms of the GNU General Public License as published by the Free Software
9 # Foundation; either version 2 of the License, or (at your option) any later
12 # Koha is distributed in the hope that it will be useful, but WITHOUT ANY
13 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
14 # A PARTICULAR PURPOSE. See the GNU General Public License for more details.
16 # You should have received a copy of the GNU General Public License along
17 # with Koha; if not, write to the Free Software Foundation, Inc.,
18 # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
31 my $input = CGI
->new();
33 my ( $template, $loggedinuser, $cookie ) = get_template_and_user
(
34 { template_name
=> 'members/paycollect.tmpl',
38 flagsrequired
=> { borrowers
=> 1, updatecharges
=> 1 },
43 # get borrower details
44 my $borrowernumber = $input->param('borrowernumber');
45 my $borrower = GetMember
( borrowernumber
=> $borrowernumber );
46 my $user = $input->remote_user;
49 my $branch = GetBranch
( $input, GetBranches
() );
51 my ( $total_due, $accts, $numaccts ) = GetMemberAccountRecords
($borrowernumber);
52 my $total_paid = $input->param('paid');
54 my $individual = $input->param('pay_individual');
55 my $writeoff = $input->param('writeoff_individual');
56 my $select_lines = $input->param('selected');
57 my $select = $input->param('selected_accts');
60 if ( $individual || $writeoff ) {
62 $template->param( pay_individual
=> 1 );
64 $template->param( writeoff_individual
=> 1 );
66 my $accounttype = $input->param('accounttype');
67 my $amount = $input->param('amount');
68 my $amountoutstanding = $input->param('amountoutstanding');
69 $accountno = $input->param('accountno');
70 my $itemnumber = $input->param('itemnumber');
71 my $description = $input->param('description');
72 my $title = $input->param('title');
73 my $notify_id = $input->param('notify_id');
74 my $notify_level = $input->param('notify_level');
75 $total_due = $amountoutstanding;
77 accounttype
=> $accounttype,
78 accountno
=> $accountno,
80 amountoutstanding
=> $amountoutstanding,
82 itemnumber
=> $itemnumber,
83 description
=> $description,
84 notify_id
=> $notify_id,
85 notify_level
=> $notify_level,
87 } elsif ($select_lines) {
88 $total_due = $input->param('amt');
90 selected_accts
=> $select_lines,
95 if ( $total_paid and $total_paid ne '0.00' ) {
96 if ( $total_paid < 0 or $total_paid > $total_due ) {
98 error
=> sprintf( 'You must pay a value less than or equal to %f.2',
103 if ( $total_paid == $total_due ) {
104 makepayment
( $borrowernumber, $accountno, $total_paid, $user,
107 makepartialpayment
( $borrowernumber, $accountno, $total_paid,
110 print $input->redirect(
111 "/cgi-bin/koha/members/pay.pl?borrowernumber=$borrowernumber");
114 if ( $select =~ /^([\d,]*).*/ ) {
115 $select = $1; # ensure passing no junk
117 my @acc = split /,/, $select;
118 recordpayment_selectaccts
( $borrowernumber, $total_paid,
121 recordpayment
( $borrowernumber, $total_paid );
124 # recordpayment does not return success or failure so lets redisplay the boraccount
126 print $input->redirect(
127 "/cgi-bin/koha/members/boraccount.pl?borrowernumber=$borrowernumber"
132 $total_paid = '0.00'; #TODO not right with pay_individual
135 borrower_add_additional_fields
($borrower);
138 borrowernumber
=> $borrowernumber, # some templates require global
139 borrower
=> $borrower,
141 activeBorrowerRelationship
=> (C4
::Context
->preference('borrowerRelationship') ne ''),
144 output_html_with_http_headers
$input, $cookie, $template->output;
146 sub borrower_add_additional_fields
{
149 # some borrower info is not returned in the standard call despite being assumed
150 # in a number of templates. It should not be the business of this script but in lieu of
151 # a revised api here it is ...
152 if ( $b_ref->{category_type
} eq 'C' ) {
153 my ( $catcodes, $labels ) =
154 GetborCatFromCatType
( 'A', 'WHERE category_type = ?' );
155 if ( @
{$catcodes} ) {
156 if ( @
{$catcodes} > 1 ) {
157 $b_ref->{CATCODE_MULTI
} = 1;
158 } elsif ( @
{$catcodes} == 1 ) {
159 $b_ref->{catcode
} = $catcodes->[0];
162 } elsif ( $b_ref->{category_type
} eq 'A' ) {
163 $b_ref->{adultborrower
} = 1;
165 my ( $picture, $dberror ) = GetPatronImage
( $b_ref->{cardnumber
} );
167 $b_ref->{has_picture
} = 1;
170 $b_ref->{branchname
} = GetBranchName
( $b_ref->{branchcode
} );