Bug 24114: Remove warn statements from Koha::Patrons
[koha.git] / members / pay.pl
1 #!/usr/bin/perl
2
3 # Copyright 2000-2002 Katipo Communications
4 # Copyright 2010 BibLibre
5 # Copyright 2010,2011 PTFS-Europe Ltd
6 #
7 # This file is part of Koha.
8 #
9 # Koha is free software; you can redistribute it and/or modify it
10 # under the terms of the GNU General Public License as published by
11 # the Free Software Foundation; either version 3 of the License, or
12 # (at your option) any later version.
13 #
14 # Koha is distributed in the hope that it will be useful, but
15 # WITHOUT ANY WARRANTY; without even the implied warranty of
16 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 # GNU General Public License for more details.
18 #
19 # You should have received a copy of the GNU General Public License
20 # along with Koha; if not, see <http://www.gnu.org/licenses>.
21
22 =head1 pay.pl
23
24  written 11/1/2000 by chris@katipo.oc.nz
25  part of the koha library system, script to facilitate paying off fines
26
27 =cut
28
29 use Modern::Perl;
30
31 use URI::Escape;
32 use C4::Context;
33 use C4::Auth;
34 use C4::Output;
35 use CGI qw ( -utf8 );
36 use C4::Members;
37 use C4::Accounts;
38 use C4::Stats;
39 use C4::Koha;
40 use C4::Overdues;
41 use Koha::Patrons;
42
43 use Koha::Patron::Categories;
44 use URI::Escape;
45
46 our $input = CGI->new;
47
48 my $updatecharges_permissions = $input->param('woall') ? 'writeoff' : 'remaining_permissions';
49 our ( $template, $loggedinuser, $cookie ) = get_template_and_user(
50     {   template_name   => 'members/pay.tt',
51         query           => $input,
52         type            => 'intranet',
53         authnotrequired => 0,
54         flagsrequired   => { borrowers => 'edit_borrowers', updatecharges => $updatecharges_permissions },
55         debug           => 1,
56     }
57 );
58
59 my @names = $input->param;
60
61 our $borrowernumber = $input->param('borrowernumber');
62 if ( !$borrowernumber ) {
63     $borrowernumber = $input->param('borrowernumber0');
64 }
65
66 # get borrower details
67 my $logged_in_user = Koha::Patrons->find( $loggedinuser ) or die "Not logged in";
68 our $patron         = Koha::Patrons->find($borrowernumber);
69 output_and_exit_if_error( $input, $cookie, $template, { module => 'members', logged_in_user => $logged_in_user, current_patron => $patron } );
70
71 our $user = $input->remote_user;
72 $user ||= q{};
73
74 our $branch = C4::Context->userenv->{'branch'};
75
76 if ( $input->param('paycollect') ) {
77     print $input->redirect(
78         "/cgi-bin/koha/members/paycollect.pl?borrowernumber=$borrowernumber");
79 }
80 elsif ( $input->param('payselected') ) {
81     payselected({ params => \@names });
82 }
83 elsif ( $input->param('writeoff_selected') ) {
84     payselected({ params => \@names, type => 'writeoff' });
85 }
86 elsif ( $input->param('woall') ) {
87     writeoff_all(@names);
88 }
89 elsif ( $input->param('apply_credits') ) {
90     apply_credits({ patron => $patron, cgi => $input });
91 }
92 elsif ( $input->param('confirm_writeoff') ) {
93     my $accountlines_id = $input->param('accountlines_id');
94     my $amount          = $input->param('amountwrittenoff');
95     my $payment_note    = $input->param("payment_note");
96
97     my $accountline = Koha::Account::Lines->find( $accountlines_id );
98
99     $amount = $accountline->amountoutstanding if (abs($amount - $accountline->amountoutstanding) < 0.01) && C4::Context->preference('RoundFinesAtPayment');
100     if ( $amount > $accountline->amountoutstanding ) {
101         print $input->redirect( "/cgi-bin/koha/members/paycollect.pl?"
102               . "borrowernumber=$borrowernumber"
103               . "&amount=" . $accountline->amount
104               . "&amountoutstanding=" . $accountline->amountoutstanding
105               . "&accounttype=" . $accountline->accounttype
106               . "&accountlines_id=" . $accountlines_id
107               . "&writeoff_individual=1"
108               . "&error_over=1" );
109
110     } else {
111         Koha::Account->new( { patron_id => $borrowernumber } )->pay(
112             {
113                 amount     => $amount,
114                 lines      => [ scalar Koha::Account::Lines->find($accountlines_id) ],
115                 type       => 'writeoff',
116                 note       => $payment_note,
117                 interface  => C4::Context->interface,
118                 library_id => $branch,
119             }
120         );
121     }
122 }
123
124 for (@names) {
125     if (/^pay_indiv_(\d+)$/) {
126         my $line_no = $1;
127         redirect_to_paycollect( 'pay_individual', $line_no );
128     } elsif (/^wo_indiv_(\d+)$/) {
129         my $line_no = $1;
130         redirect_to_paycollect( 'writeoff_individual', $line_no );
131     }
132 }
133
134 $template->param(
135     finesview => 1,
136 );
137
138 add_accounts_to_template();
139
140 output_html_with_http_headers $input, $cookie, $template->output;
141
142 sub add_accounts_to_template {
143
144     my $patron = Koha::Patrons->find( $borrowernumber );
145     my $account = $patron->account;
146     my $outstanding_credits = $account->outstanding_credits;
147     my $account_lines = $account->outstanding_debits;
148     my $total = $account_lines->total_outstanding;
149     my @accounts;
150     while ( my $account_line = $account_lines->next ) {
151         push @accounts, $account_line;
152     }
153
154     $template->param(
155         patron   => $patron,
156         accounts => \@accounts,
157         total    => $total,
158         outstanding_credits => $outstanding_credits
159     );
160
161     return;
162
163 }
164
165 sub get_for_redirect {
166     my ( $name, $name_in, $money ) = @_;
167     my $s     = q{&} . $name . q{=};
168     my $value;
169     if (defined $input->param($name_in)) {
170         $value = uri_escape_utf8( scalar $input->param($name_in) );
171     }
172     if ( !defined $value ) {
173         $value = ( $money == 1 ) ? 0 : q{};
174     }
175     if ($money) {
176         $s .= sprintf '%.2f', $value;
177     } else {
178         $s .= $value;
179     }
180     return $s;
181 }
182
183 sub redirect_to_paycollect {
184     my ( $action, $line_no ) = @_;
185     my $redirect =
186       "/cgi-bin/koha/members/paycollect.pl?borrowernumber=$borrowernumber";
187     $redirect .= q{&};
188     $redirect .= "$action=1";
189     $redirect .= get_for_redirect( 'accounttype', "accounttype$line_no", 0 );
190     $redirect .= get_for_redirect( 'amount', "amount$line_no", 1 );
191     $redirect .=
192       get_for_redirect( 'amountoutstanding', "amountoutstanding$line_no", 1 );
193     $redirect .= get_for_redirect( 'description', "description$line_no", 0 );
194     $redirect .= get_for_redirect( 'title', "title$line_no", 0 );
195     $redirect .= get_for_redirect( 'itemnumber',   "itemnumber$line_no",   0 );
196     $redirect .= get_for_redirect( 'accountlines_id', "accountlines_id$line_no", 0 );
197     $redirect .= q{&} . 'payment_note' . q{=} . uri_escape_utf8( scalar $input->param("payment_note_$line_no") );
198     $redirect .= '&remote_user=';
199     $redirect .= $user;
200     return print $input->redirect($redirect);
201 }
202
203 sub writeoff_all {
204     my @params = @_;
205     my @wo_lines = grep { /^accountlines_id\d+$/ } @params;
206
207     my $borrowernumber = $input->param('borrowernumber');
208
209     for (@wo_lines) {
210         if (/(\d+)/) {
211             my $value           = $1;
212             my $amount          = $input->param("amountoutstanding$value");
213             my $accountlines_id = $input->param("accountlines_id$value");
214             my $payment_note    = $input->param("payment_note_$value");
215             Koha::Account->new( { patron_id => $borrowernumber } )->pay(
216                 {
217                     amount => $amount,
218                     lines  => [ scalar Koha::Account::Lines->find($accountlines_id) ],
219                     type   => 'writeoff',
220                     note   => $payment_note,
221                     interface  => C4::Context->interface,
222                     library_id => $branch,
223                 }
224             );
225         }
226     }
227
228     print $input->redirect("/cgi-bin/koha/members/boraccount.pl?borrowernumber=$borrowernumber");
229     return;
230 }
231
232 sub payselected {
233     my $parameters = shift;
234
235     my @params = @{ $parameters->{params} };
236     my $type = $parameters->{type} || 'payment';
237
238     my $amt    = 0;
239     my @lines_to_pay;
240     foreach (@params) {
241         if (/^incl_par_(\d+)$/) {
242             my $index = $1;
243             push @lines_to_pay, scalar $input->param("accountlines_id$index");
244             $amt += $input->param("amountoutstanding$index");
245         }
246     }
247     $amt = '&amt=' . $amt;
248     my $sel = '&selected=' . join ',', @lines_to_pay;
249     my $notes = '&notes=' . join("%0A", map { scalar $input->param("payment_note_$_") } @lines_to_pay );
250     my $redirect =
251         "/cgi-bin/koha/members/paycollect.pl?borrowernumber=$borrowernumber"
252       . "&type=$type"
253       . $amt
254       . $sel
255       . $notes;
256
257     print $input->redirect($redirect);
258     return;
259 }
260
261 sub apply_credits {
262     my ($args) = @_;
263
264     my $patron = $args->{patron};
265     my $cgi    = $args->{cgi};
266
267     $patron->account->reconcile_balance();
268
269     print $cgi->redirect("/cgi-bin/koha/members/pay.pl?borrowernumber=" . $patron->borrowernumber );
270     return;
271 }