Bug 15908 - Remove use of recordpayment_selectaccts
[koha-equinox.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 use Koha::Account;
33
34 use Koha::Patron::Categories;
35
36 my $input = CGI->new();
37
38 my $updatecharges_permissions = $input->param('writeoff_individual') ? 'writeoff' : 'remaining_permissions';
39 my ( $template, $loggedinuser, $cookie ) = get_template_and_user(
40     {   template_name   => 'members/paycollect.tt',
41         query           => $input,
42         type            => 'intranet',
43         authnotrequired => 0,
44         flagsrequired   => { borrowers => 1, updatecharges => $updatecharges_permissions },
45         debug           => 1,
46     }
47 );
48
49 # get borrower details
50 my $borrowernumber = $input->param('borrowernumber');
51 my $borrower       = GetMember( borrowernumber => $borrowernumber );
52 my $user           = $input->remote_user;
53
54 my $branch         = C4::Context->userenv->{'branch'};
55
56 my ( $total_due, $accts, $numaccts ) = GetMemberAccountRecords($borrowernumber);
57 my $total_paid = $input->param('paid');
58
59 my $individual   = $input->param('pay_individual');
60 my $writeoff     = $input->param('writeoff_individual');
61 my $select_lines = $input->param('selected');
62 my $select       = $input->param('selected_accts');
63 my $payment_note = uri_unescape $input->param('payment_note');
64 my $accountno;
65 my $accountlines_id;
66
67 if ( $individual || $writeoff ) {
68     if ($individual) {
69         $template->param( pay_individual => 1 );
70     } elsif ($writeoff) {
71         $template->param( writeoff_individual => 1 );
72     }
73     my $accounttype       = $input->param('accounttype');
74     $accountlines_id       = $input->param('accountlines_id');
75     my $amount            = $input->param('amount');
76     my $amountoutstanding = $input->param('amountoutstanding');
77     $accountno = $input->param('accountno');
78     my $itemnumber  = $input->param('itemnumber');
79     my $description  = $input->param('description');
80     my $title        = $input->param('title');
81     my $notify_id    = $input->param('notify_id');
82     my $notify_level = $input->param('notify_level');
83     $total_due = $amountoutstanding;
84     $template->param(
85         accounttype       => $accounttype,
86         accountlines_id    => $accountlines_id,
87         accountno         => $accountno,
88         amount            => $amount,
89         amountoutstanding => $amountoutstanding,
90         title             => $title,
91         itemnumber        => $itemnumber,
92         individual_description => $description,
93         notify_id         => $notify_id,
94         notify_level      => $notify_level,
95         payment_note    => $payment_note,
96     );
97 } elsif ($select_lines) {
98     $total_due = $input->param('amt');
99     $template->param(
100         selected_accts => $select_lines,
101         amt            => $total_due,
102         selected_accts_notes => scalar $input->param('notes'),
103     );
104 }
105
106 if ( $total_paid and $total_paid ne '0.00' ) {
107     if ( $total_paid < 0 or $total_paid > $total_due ) {
108         $template->param(
109             error_over => 1,
110             total_due => $total_due
111         );
112     } else {
113         if ($individual) {
114             if ( $total_paid == $total_due ) {
115                 my $line = Koha::Account::Lines->find($accountlines_id);
116                 Koha::Account->new( { patron_id => $borrowernumber } )->pay(
117                     {
118                         lines      => [$line],
119                         amount     => $total_paid,
120                         library_id => $branch,
121                         note       => $payment_note
122                     }
123                 );
124             }
125             else {
126                 my $line = Koha::Account::Lines->find($accountlines_id);
127
128                 Koha::Account->new( { patron_id => $borrowernumber, } )->pay(
129                     {
130                         amount     => $total_paid,
131                         lines      => [$line],
132                         note       => $payment_note,
133                         library_id => $branch,
134                     }
135                 );
136             }
137             print $input->redirect(
138                 "/cgi-bin/koha/members/pay.pl?borrowernumber=$borrowernumber");
139         } else {
140             if ($select) {
141                 if ( $select =~ /^([\d,]*).*/ ) {
142                     $select = $1;    # ensure passing no junk
143                 }
144                 my @acc = split /,/, $select;
145                 my $note = $input->param('selected_accts_notes');
146
147                 my @lines = Koha::Account::Lines->search(
148                     {
149                         borrowernumber    => $borrowernumber,
150                         amountoutstanding => { '<>' => 0 },
151                         accountno         => { 'IN' => \@acc },
152                     },
153                     { order_by => 'date' }
154                 );
155
156                 return Koha::Account->new(
157                     {
158                         patron_id => $borrowernumber,
159                     }
160                   )->pay(
161                     {
162                         amount => $total_paid,
163                         lines  => \@lines,
164                         note   => $note,
165                     }
166                   );
167             }
168             else {
169                 my $note = $input->param('selected_accts_notes');
170                 Koha::Account->new( { patron_id => $borrowernumber } )
171                   ->pay( { amount => $total_paid, note => $note } );
172             }
173
174             print $input->redirect(
175 "/cgi-bin/koha/members/boraccount.pl?borrowernumber=$borrowernumber"
176             );
177         }
178     }
179 } else {
180     $total_paid = '0.00';    #TODO not right with pay_individual
181 }
182
183 borrower_add_additional_fields($borrower, $template);
184
185 $template->param(%$borrower);
186
187 $template->param(
188     borrowernumber => $borrowernumber,    # some templates require global
189     borrower      => $borrower,
190     categoryname  => $borrower->{description},
191     total         => $total_due,
192     activeBorrowerRelationship => (C4::Context->preference('borrowerRelationship') ne ''),
193     RoutingSerials => C4::Context->preference('RoutingSerials'),
194     ExtendedPatronAttributes => C4::Context->preference('ExtendedPatronAttributes'),
195 );
196
197 output_html_with_http_headers $input, $cookie, $template->output;
198
199 sub borrower_add_additional_fields {
200     my ( $b_ref, $template ) = @_;
201
202 # some borrower info is not returned in the standard call despite being assumed
203 # in a number of templates. It should not be the business of this script but in lieu of
204 # a revised api here it is ...
205     if ( $b_ref->{category_type} eq 'C' ) {
206         my $patron_categories = Koha::Patron::Categories->search_limited({ category_type => 'A' }, {order_by => ['categorycode']});
207         $template->param( 'CATCODE_MULTI' => 1) if $patron_categories->count > 1;
208         $template->param( 'catcode' => $patron_categories->next )  if $patron_categories->count == 1;
209     } elsif ( $b_ref->{category_type} eq 'A' ) {
210         $b_ref->{adultborrower} = 1;
211     }
212
213     my $patron_image = Koha::Patron::Images->find($b_ref->{borrowernumber});
214     $template->param( picture => 1 ) if $patron_image;
215
216     if (C4::Context->preference('ExtendedPatronAttributes')) {
217         $b_ref->{extendedattributes} = GetBorrowerAttributes($b_ref->{borrowernumber});
218     }
219
220     return;
221 }