Bug 9224: Make acqui/finishreceive.pl Plack-compatible
[koha.git] / members / paycollect.pl
blob96ca0fb7b86764cfd83cfe7e78b590705d3650d1
1 #!/usr/bin/perl
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
10 # version.
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.
20 use strict;
21 use warnings;
22 use URI::Escape;
23 use C4::Context;
24 use C4::Auth;
25 use C4::Output;
26 use CGI;
27 use C4::Members;
28 use C4::Accounts;
29 use C4::Koha;
30 use C4::Branch;
32 my $input = CGI->new();
34 my ( $template, $loggedinuser, $cookie ) = get_template_and_user(
35 { template_name => 'members/paycollect.tmpl',
36 query => $input,
37 type => 'intranet',
38 authnotrequired => 0,
39 flagsrequired => { borrowers => 1, updatecharges => 1 },
40 debug => 1,
44 # get borrower details
45 my $borrowernumber = $input->param('borrowernumber');
46 my $borrower = GetMember( borrowernumber => $borrowernumber );
47 my $user = $input->remote_user;
49 # get account details
50 my $branch = GetBranch( $input, GetBranches() );
52 my ( $total_due, $accts, $numaccts ) = GetMemberAccountRecords($borrowernumber);
53 my $total_paid = $input->param('paid');
55 my $individual = $input->param('pay_individual');
56 my $writeoff = $input->param('writeoff_individual');
57 my $select_lines = $input->param('selected');
58 my $select = $input->param('selected_accts');
59 my $payment_note = uri_unescape $input->param('payment_note');
60 my $accountno;
61 my $accountlines_id;
62 if ( $individual || $writeoff ) {
63 if ($individual) {
64 $template->param( pay_individual => 1 );
65 } elsif ($writeoff) {
66 $template->param( writeoff_individual => 1 );
68 my $accounttype = $input->param('accounttype');
69 $accountlines_id = $input->param('accountlines_id');
70 my $amount = $input->param('amount');
71 my $amountoutstanding = $input->param('amountoutstanding');
72 $accountno = $input->param('accountno');
73 my $itemnumber = $input->param('itemnumber');
74 my $description = $input->param('description');
75 my $title = $input->param('title');
76 my $notify_id = $input->param('notify_id');
77 my $notify_level = $input->param('notify_level');
78 $total_due = $amountoutstanding;
79 $template->param(
80 accounttype => $accounttype,
81 accountlines_id => $accountlines_id,
82 accountno => $accountno,
83 amount => $amount,
84 amountoutstanding => $amountoutstanding,
85 title => $title,
86 itemnumber => $itemnumber,
87 description => $description,
88 notify_id => $notify_id,
89 notify_level => $notify_level,
90 payment_note => $payment_note,
92 } elsif ($select_lines) {
93 $total_due = $input->param('amt');
94 $template->param(
95 selected_accts => $select_lines,
96 amt => $total_due,
97 selected_accts_notes => $input->param('notes'),
101 if ( $total_paid and $total_paid ne '0.00' ) {
102 if ( $total_paid < 0 or $total_paid > $total_due ) {
103 $template->param(
104 error_over => 1,
105 total_due => $total_due
107 } else {
108 if ($individual) {
109 if ( $total_paid == $total_due ) {
110 makepayment( $accountlines_id, $borrowernumber, $accountno, $total_paid, $user,
111 $branch, $payment_note );
112 } else {
113 makepartialpayment( $accountlines_id, $borrowernumber, $accountno, $total_paid,
114 $user, $branch, $payment_note );
116 print $input->redirect(
117 "/cgi-bin/koha/members/pay.pl?borrowernumber=$borrowernumber");
118 } else {
119 if ($select) {
120 if ( $select =~ /^([\d,]*).*/ ) {
121 $select = $1; # ensure passing no junk
123 my @acc = split /,/, $select;
124 my $note = $input->param('selected_accts_notes');
125 recordpayment_selectaccts( $borrowernumber, $total_paid, \@acc, $note );
126 } else {
127 recordpayment( $borrowernumber, $total_paid );
130 # recordpayment does not return success or failure so lets redisplay the boraccount
132 print $input->redirect(
133 "/cgi-bin/koha/members/boraccount.pl?borrowernumber=$borrowernumber"
137 } else {
138 $total_paid = '0.00'; #TODO not right with pay_individual
141 borrower_add_additional_fields($borrower);
143 $template->param(
144 borrowernumber => $borrowernumber, # some templates require global
145 borrower => $borrower,
146 total => $total_due,
147 activeBorrowerRelationship => (C4::Context->preference('borrowerRelationship') ne ''),
148 RoutingSerials => C4::Context->preference('RoutingSerials'),
151 output_html_with_http_headers $input, $cookie, $template->output;
153 sub borrower_add_additional_fields {
154 my $b_ref = shift;
156 # some borrower info is not returned in the standard call despite being assumed
157 # in a number of templates. It should not be the business of this script but in lieu of
158 # a revised api here it is ...
159 if ( $b_ref->{category_type} eq 'C' ) {
160 my ( $catcodes, $labels ) =
161 GetborCatFromCatType( 'A', 'WHERE category_type = ?' );
162 if ( @{$catcodes} ) {
163 if ( @{$catcodes} > 1 ) {
164 $b_ref->{CATCODE_MULTI} = 1;
165 } elsif ( @{$catcodes} == 1 ) {
166 $b_ref->{catcode} = $catcodes->[0];
169 } elsif ( $b_ref->{category_type} eq 'A' ) {
170 $b_ref->{adultborrower} = 1;
172 my ( $picture, $dberror ) = GetPatronImage( $b_ref->{borrowernumber} );
173 if ($picture) {
174 $b_ref->{has_picture} = 1;
177 $b_ref->{branchname} = GetBranchName( $b_ref->{branchcode} );
178 return;