Bug 28591: Don't pass debug to get_template_and_user
[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 use HTTP::Request::Common;
26 use LWP::UserAgent;
27 use URI;
28
29 use C4::Auth;
30 use C4::Output;
31 use C4::Context;
32 use Koha::Acquisition::Currencies;
33 use Koha::Database;
34 use Koha::Plugins::Handler;
35
36 my $cgi = CGI->new;
37 my $payment_method = $cgi->param('payment_method');
38 my @accountlines   = $cgi->multi_param('accountline');
39
40 my $use_plugin = Koha::Plugins::Handler->run(
41     {   class  => $payment_method,
42         method => 'opac_online_payment',
43         cgi    => $cgi,
44     }
45 );
46
47 unless ( $use_plugin ) {
48     print $cgi->redirect("/cgi-bin/koha/errors/404.pl");
49     exit;
50 }
51
52 my ( $template, $borrowernumber, $cookie ) = get_template_and_user(
53     {
54         template_name   => "opac-account-pay-error.tt",
55         query           => $cgi,
56         type            => "opac",
57     }
58 );
59
60 my $amount_to_pay =
61   Koha::Database->new()->schema()->resultset('Accountline')->search( { accountlines_id => { -in => \@accountlines } } )
62   ->get_column('amountoutstanding')->sum();
63 $amount_to_pay = sprintf( "%.2f", $amount_to_pay );
64
65 my $active_currency = Koha::Acquisition::Currencies->get_active;
66
67 my $error = 0;
68
69 Koha::Plugins::Handler->run(
70     {
71         class  => $payment_method,
72         method => 'opac_online_payment_begin',
73         cgi    => $cgi,
74     }
75 );