Bug 15758: Koha::Libraries - Remove GetBranches
[koha.git] / members / paycollect.pl
1 #!/usr/bin/perl
2 # Copyright 2009,2010 PTFS Inc.
3 # Copyright 2011 PTFS-Europe Ltd
4 #
5 # This file is part of Koha.
6 #
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.
11 #
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.
16 #
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>.
19
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 qw ( -utf8 );
27 use C4::Members;
28 use C4::Members::Attributes qw(GetBorrowerAttributes);
29 use C4::Accounts;
30 use C4::Koha;
31 use Koha::Patron::Images;
32
33 use Koha::Patron::Categories;
34
35 my $input = CGI->new();
36
37 my $updatecharges_permissions = $input->param('writeoff_individual') ? 'writeoff' : 'remaining_permissions';
38 my ( $template, $loggedinuser, $cookie ) = get_template_and_user(
39     {   template_name   => 'members/paycollect.tt',
40         query           => $input,
41         type            => 'intranet',
42         authnotrequired => 0,
43         flagsrequired   => { borrowers => 1, updatecharges => $updatecharges_permissions },
44         debug           => 1,
45     }
46 );
47
48 # get borrower details
49 my $borrowernumber = $input->param('borrowernumber');
50 my $borrower       = GetMember( borrowernumber => $borrowernumber );
51 my $user           = $input->remote_user;
52
53 my $branch         = C4::Context->userenv->{'branch'};
54
55 my ( $total_due, $accts, $numaccts ) = GetMemberAccountRecords($borrowernumber);
56 my $total_paid = $input->param('paid');
57
58 my $individual   = $input->param('pay_individual');
59 my $writeoff     = $input->param('writeoff_individual');
60 my $select_lines = $input->param('selected');
61 my $select       = $input->param('selected_accts');
62 my $payment_note = uri_unescape $input->param('payment_note');
63 my $accountno;
64 my $accountlines_id;
65
66 if ( $individual || $writeoff ) {
67     if ($individual) {
68         $template->param( pay_individual => 1 );
69     } elsif ($writeoff) {
70         $template->param( writeoff_individual => 1 );
71     }
72     my $accounttype       = $input->param('accounttype');
73     $accountlines_id       = $input->param('accountlines_id');
74     my $amount            = $input->param('amount');
75     my $amountoutstanding = $input->param('amountoutstanding');
76     $accountno = $input->param('accountno');
77     my $itemnumber  = $input->param('itemnumber');
78     my $description  = $input->param('description');
79     my $title        = $input->param('title');
80     my $notify_id    = $input->param('notify_id');
81     my $notify_level = $input->param('notify_level');
82     $total_due = $amountoutstanding;
83     $template->param(
84         accounttype       => $accounttype,
85         accountlines_id    => $accountlines_id,
86         accountno         => $accountno,
87         amount            => $amount,
88         amountoutstanding => $amountoutstanding,
89         title             => $title,
90         itemnumber        => $itemnumber,
91         individual_description => $description,
92         notify_id         => $notify_id,
93         notify_level      => $notify_level,
94         payment_note    => $payment_note,
95     );
96 } elsif ($select_lines) {
97     $total_due = $input->param('amt');
98     $template->param(
99         selected_accts => $select_lines,
100         amt            => $total_due,
101         selected_accts_notes => scalar $input->param('notes'),
102     );
103 }
104
105 if ( $total_paid and $total_paid ne '0.00' ) {
106     if ( $total_paid < 0 or $total_paid > $total_due ) {
107         $template->param(
108             error_over => 1,
109             total_due => $total_due
110         );
111     } else {
112         if ($individual) {
113             if ( $total_paid == $total_due ) {
114                 makepayment( $accountlines_id, $borrowernumber, $accountno, $total_paid, $user,
115                     $branch, $payment_note );
116             } else {
117                 makepartialpayment( $accountlines_id, $borrowernumber, $accountno, $total_paid,
118                     $user, $branch, $payment_note );
119             }
120             print $input->redirect(
121                 "/cgi-bin/koha/members/pay.pl?borrowernumber=$borrowernumber");
122         } else {
123             if ($select) {
124                 if ( $select =~ /^([\d,]*).*/ ) {
125                     $select = $1;    # ensure passing no junk
126                 }
127                 my @acc = split /,/, $select;
128                 my $note = $input->param('selected_accts_notes');
129                 recordpayment_selectaccts( $borrowernumber, $total_paid, \@acc, $note );
130             } else {
131                 my $note = $input->param('selected_accts_notes');
132                 recordpayment( $borrowernumber, $total_paid, '', $note );
133             }
134
135 # recordpayment does not return success or failure so lets redisplay the boraccount
136
137             print $input->redirect(
138 "/cgi-bin/koha/members/boraccount.pl?borrowernumber=$borrowernumber"
139             );
140         }
141     }
142 } else {
143     $total_paid = '0.00';    #TODO not right with pay_individual
144 }
145
146 borrower_add_additional_fields($borrower, $template);
147
148 $template->param(%$borrower);
149
150 $template->param(
151     borrowernumber => $borrowernumber,    # some templates require global
152     borrower      => $borrower,
153     categoryname  => $borrower->{description},
154     total         => $total_due,
155     activeBorrowerRelationship => (C4::Context->preference('borrowerRelationship') ne ''),
156     RoutingSerials => C4::Context->preference('RoutingSerials'),
157     ExtendedPatronAttributes => C4::Context->preference('ExtendedPatronAttributes'),
158 );
159
160 output_html_with_http_headers $input, $cookie, $template->output;
161
162 sub borrower_add_additional_fields {
163     my ( $b_ref, $template ) = @_;
164
165 # some borrower info is not returned in the standard call despite being assumed
166 # in a number of templates. It should not be the business of this script but in lieu of
167 # a revised api here it is ...
168     if ( $b_ref->{category_type} eq 'C' ) {
169         my $patron_categories = Koha::Patron::Categories->search_limited({ category_type => 'A' }, {order_by => ['categorycode']});
170         $template->param( 'CATCODE_MULTI' => 1) if $patron_categories->count > 1;
171         $template->param( 'catcode' => $patron_categories->next )  if $patron_categories->count == 1;
172     } elsif ( $b_ref->{category_type} eq 'A' ) {
173         $b_ref->{adultborrower} = 1;
174     }
175
176     my $patron_image = Koha::Patron::Images->find($b_ref->{borrowernumber});
177     $template->param( picture => 1 ) if $patron_image;
178
179     if (C4::Context->preference('ExtendedPatronAttributes')) {
180         $b_ref->{extendedattributes} = GetBorrowerAttributes($b_ref->{borrowernumber});
181     }
182
183     return;
184 }