Bug 34478: Update op for opac-account-pay
[koha.git] / opac / opac-account-pay.pl
1 #!/usr/bin/perl
2
3 # Copyright ByWater Solutions 2015
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 utf8;
21
22 use Modern::Perl;
23
24 use CGI;
25
26 use C4::Auth qw( get_template_and_user );
27 use C4::Output;
28 use C4::Context;
29 use Koha::Acquisition::Currencies;
30 use Koha::Database;
31 use Koha::Plugins::Handler;
32
33 my $cgi            = CGI->new;
34 my $op             = $cgi->param('op');
35 my $payment_method = $cgi->param('payment_method');
36 my @accountlines   = $cgi->multi_param('accountline');
37
38 my $use_plugin = Koha::Plugins::Handler->run(
39     {   class  => $payment_method,
40         method => 'opac_online_payment',
41         cgi    => $cgi,
42     }
43 );
44
45 unless ( $use_plugin ) {
46     print $cgi->redirect("/cgi-bin/koha/errors/404.pl");
47     exit;
48 }
49
50 unless ( $op eq 'cud-pay' ) {
51     print $cgi->redirect("/cgi-bin/koha/errors/400.pl");
52     exit;
53 }
54
55 my ( $template, $borrowernumber, $cookie ) = get_template_and_user(
56     {
57         template_name   => "opac-account-pay-error.tt",
58         query           => $cgi,
59         type            => "opac",
60     }
61 );
62
63 my $amount_to_pay =
64   Koha::Database->new()->schema()->resultset('Accountline')->search( { accountlines_id => { -in => \@accountlines } } )
65   ->get_column('amountoutstanding')->sum();
66 $amount_to_pay = sprintf( "%.2f", $amount_to_pay );
67
68 my $active_currency = Koha::Acquisition::Currencies->get_active;
69
70 my $error = 0;
71
72 Koha::Plugins::Handler->run(
73     {
74         class  => $payment_method,
75         method => 'opac_online_payment_begin',
76         cgi    => $cgi,
77     }
78 );