Bug 30477: Add new UNIMARC installer translation files
[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 Modern::Perl;
21 use URI::Escape qw( uri_escape uri_unescape );
22 use CGI qw ( -utf8 );
23
24 use C4::Context;
25 use C4::Auth qw( get_template_and_user );
26 use C4::Output qw( output_and_exit_if_error output_and_exit output_html_with_http_headers );
27 use C4::Accounts;
28 use C4::Koha;
29
30 use Koha::Cash::Registers;
31 use Koha::Patrons;
32 use Koha::Patron::Categories;
33 use Koha::AuthorisedValues;
34 use Koha::Account;
35 use Koha::Token;
36 use Koha::DateUtils qw( output_pref );
37
38 my $input = CGI->new();
39
40 my $payment_id          = $input->param('payment_id');
41 my $writeoff_individual = $input->param('writeoff_individual');
42 my $change_given        = $input->param('change_given');
43 my $type                = scalar $input->param('type') || 'PAYMENT';
44
45 my $updatecharges_permissions = ($writeoff_individual || $type eq 'WRITEOFF') ? 'writeoff' : 'remaining_permissions';
46 my ( $template, $loggedinuser, $cookie ) = get_template_and_user(
47     {   template_name   => 'members/paycollect.tt',
48         query           => $input,
49         type            => 'intranet',
50         flagsrequired   => { borrowers => 'edit_borrowers', updatecharges => $updatecharges_permissions },
51     }
52 );
53
54 # get borrower details
55 my $borrowernumber = $input->param('borrowernumber');
56 my $logged_in_user = Koha::Patrons->find( $loggedinuser );
57 my $patron         = Koha::Patrons->find( $borrowernumber );
58 output_and_exit_if_error( $input, $cookie, $template, { module => 'members', logged_in_user => $logged_in_user, current_patron => $patron } );
59
60 my $account        = $patron->account;
61 my $category       = $patron->category;
62 my $user           = $input->remote_user;
63
64 my $library_id = C4::Context->userenv->{'branch'};
65 my $total_due  = $account->outstanding_debits->total_outstanding;
66
67 my $total_paid      = $input->param('paid');
68 my $total_collected = $input->param('collected');
69
70 my $selected_lines = $input->param('selected'); # comes from pay.pl
71 my $pay_individual   = $input->param('pay_individual');
72 my $selected_accts   = $input->param('selected_accts'); # comes from paycollect.pl
73 my $payment_note = uri_unescape scalar $input->param('payment_note');
74 my $payment_type = scalar $input->param('payment_type');
75 my $accountlines_id;
76
77 my $cash_register_id = $input->param('cash_register');
78 if ( $pay_individual || $writeoff_individual ) {
79     if ($pay_individual) {
80         $template->param( pay_individual => 1 );
81     } elsif ($writeoff_individual) {
82         $template->param( writeoff_individual => 1 );
83     }
84     my $debit_type_code   = $input->param('debit_type_code');
85     $accountlines_id      = $input->param('accountlines_id');
86     my $amount            = $input->param('amount');
87     my $amountoutstanding = $input->param('amountoutstanding');
88     my $itemnumber  = $input->param('itemnumber');
89     my $description  = $input->param('description');
90     my $title        = $input->param('title');
91     $total_due = $amountoutstanding;
92     $template->param(
93         debit_type_code    => $debit_type_code,
94         accountlines_id    => $accountlines_id,
95         amount            => $amount,
96         amountoutstanding => $amountoutstanding,
97         title             => $title,
98         itemnumber        => $itemnumber,
99         individual_description => $description,
100         payment_note    => $payment_note,
101     );
102 } elsif ($selected_lines) {
103     $total_due = $input->param('amt');
104     $template->param(
105         selected_accts => $selected_lines,
106         amt            => $total_due,
107         selected_accts_notes => scalar $input->param('notes'),
108     );
109 }
110
111 my @selected_accountlines;
112 if ( $selected_accts ) {
113     if ( $selected_accts =~ /^([\d,]*).*/ ) {
114         $selected_accts = $1;    # ensure passing no junk
115     }
116     my @acc = split /,/, $selected_accts;
117
118     my $search_params = {
119         borrowernumber    => $borrowernumber,
120             amountoutstanding => { '<>' => 0 },
121             accountlines_id   => { 'in' => \@acc },
122     };
123
124     @selected_accountlines = Koha::Account::Lines->search(
125         $search_params,
126         { order_by => 'date' }
127     )->as_list;
128
129     my $sum = Koha::Account::Lines->search(
130         $search_params,
131         {
132             select => [ { sum => 'amountoutstanding' } ],
133             as     => [ 'total_amountoutstanding'],
134         }
135     );
136     $total_due = $sum->_resultset->first->get_column('total_amountoutstanding');
137 }
138
139 if ( $total_paid and $total_paid ne '0.00' ) {
140     $total_paid = $total_due if (abs($total_paid - $total_due) < 0.01) && C4::Context->preference('RoundFinesAtPayment');
141     if ( $total_paid < 0 or $total_paid > $total_due ) {
142         $template->param(
143             error_over => 1,
144             total_due => $total_due
145         );
146     } elsif ( $total_collected < $total_paid && !( $writeoff_individual || $type eq 'WRITEOFF' ) ) {
147         $template->param(
148             error_under => 1,
149             total_paid => $total_paid
150         );
151     } else {
152         output_and_exit( $input, $cookie, $template,  'wrong_csrf_token' )
153             unless Koha::Token->new->check_csrf( {
154                 session_id => $input->cookie('CGISESSID'),
155                 token  => scalar $input->param('csrf_token'),
156             });
157
158         my $url;
159         my $pay_result;
160         if ($pay_individual) {
161             my $line = Koha::Account::Lines->find($accountlines_id);
162             $pay_result = $account->pay(
163                 {
164                     lines        => [$line],
165                     amount       => $total_paid,
166                     library_id   => $library_id,
167                     note         => $payment_note,
168                     interface    => C4::Context->interface,
169                     payment_type => $payment_type,
170                     cash_register => $cash_register_id
171                 }
172             );
173             $payment_id = $pay_result->{payment_id};
174
175             $url = "/cgi-bin/koha/members/pay.pl";
176         } else {
177             if ($selected_accts) {
178                 if ( $total_paid > $total_due ) {
179                     $template->param(
180                         error_over => 1,
181                         total_due => $total_due
182                     );
183                 } else {
184                     my $note = $input->param('selected_accts_notes');
185
186                     $pay_result = $account->pay(
187                         {
188                             type         => $type,
189                             amount       => $total_paid,
190                             library_id   => $library_id,
191                             lines        => \@selected_accountlines,
192                             note         => $note,
193                             interface    => C4::Context->interface,
194                             payment_type => $payment_type,
195                             cash_register => $cash_register_id
196                         }
197                     );
198                 }
199                 $payment_id = $pay_result->{payment_id};
200             }
201             else {
202                 my $note = $input->param('selected_accts_notes');
203                 $pay_result = $account->pay(
204                     {
205                         amount       => $total_paid,
206                         library_id   => $library_id,
207                         note         => $note,
208                         payment_type => $payment_type,
209                         interface    => C4::Context->interface,
210                         payment_type => $payment_type,
211                         cash_register => $cash_register_id
212                     }
213                 );
214                 $payment_id = $pay_result->{payment_id};
215             }
216             $payment_id = $pay_result->{payment_id};
217
218             $url = "/cgi-bin/koha/members/boraccount.pl";
219         }
220         # It's possible renewals took place, parse any renew results
221         # and pass on
222         my @renew_result = ();
223         foreach my $ren( @{$pay_result->{renew_result}} ) {
224             my $str = "renew_result=$ren->{itemnumber},$ren->{success},";
225             my $app = $ren->{success} ?
226                 uri_escape(
227                     output_pref({ dt => $ren->{due_date}, as_due_date => 1 })
228                 ) : $ren->{error};
229                 push @renew_result, "${str}${app}";
230         }
231         my $append = scalar @renew_result ? '&' . join('&', @renew_result) : '';
232
233         $url .= "?borrowernumber=$borrowernumber&payment_id=$payment_id&change_given=${change_given}${append}";
234
235         print $input->redirect($url);
236     }
237 } else {
238     $total_paid = '0.00';    #TODO not right with pay_individual
239 }
240
241 if ( $input->param('error_over') ) {
242     $template->param( error_over => 1, total_due => scalar $input->param('amountoutstanding') );
243 }
244
245 $template->param(
246     payment_id => $payment_id,
247
248     type           => $type,
249     borrowernumber => $borrowernumber,    # some templates require global
250     patron         => $patron,
251     total          => $total_due,
252
253     csrf_token => Koha::Token->new->generate_csrf( { session_id => scalar $input->cookie('CGISESSID') } ),
254 );
255
256 output_html_with_http_headers $input, $cookie, $template->output;