Bug 19532: (follow-up) aria-hidden attr on OPAC, and more
[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 $payment_method = $cgi->param('payment_method');
35 my @accountlines   = $cgi->multi_param('accountline');
36
37 my $use_plugin = Koha::Plugins::Handler->run(
38     {   class  => $payment_method,
39         method => 'opac_online_payment',
40         cgi    => $cgi,
41     }
42 );
43
44 unless ( $use_plugin ) {
45     print $cgi->redirect("/cgi-bin/koha/errors/404.pl");
46     exit;
47 }
48
49 my ( $template, $borrowernumber, $cookie ) = get_template_and_user(
50     {
51         template_name   => "opac-account-pay-error.tt",
52         query           => $cgi,
53         type            => "opac",
54     }
55 );
56
57 my $amount_to_pay =
58   Koha::Database->new()->schema()->resultset('Accountline')->search( { accountlines_id => { -in => \@accountlines } } )
59   ->get_column('amountoutstanding')->sum();
60 $amount_to_pay = sprintf( "%.2f", $amount_to_pay );
61
62 my $active_currency = Koha::Acquisition::Currencies->get_active;
63
64 my $error = 0;
65
66 Koha::Plugins::Handler->run(
67     {
68         class  => $payment_method,
69         method => 'opac_online_payment_begin',
70         cgi    => $cgi,
71     }
72 );