Bug 23363: (QA follow-up) Fix indentation
[koha.git] / opac / opac-account.pl
blobd5677fc1b3168da0d4c2c9af8f5c1d8b0d7a1a45
1 #!/usr/bin/perl
3 # Copyright Katipo Communications 2002
4 # Copyright Biblibre 2007,2010
6 # This file is part of Koha.
8 # Koha is free software; you can redistribute it and/or modify it
9 # under the terms of the GNU General Public License as published by
10 # the Free Software Foundation; either version 3 of the License, or
11 # (at your option) any later version.
13 # Koha is distributed in the hope that it will be useful, but
14 # WITHOUT ANY WARRANTY; without even the implied warranty of
15 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 # GNU General Public License for more details.
18 # You should have received a copy of the GNU General Public License
19 # along with Koha; if not, see <http://www.gnu.org/licenses>.
22 use Modern::Perl;
23 use CGI qw ( -utf8 );
24 use C4::Members;
25 use C4::Auth;
26 use C4::Output;
27 use Koha::Account::Lines;
28 use Koha::Patrons;
29 use Koha::Plugins;
31 my $query = new CGI;
32 my ( $template, $borrowernumber, $cookie ) = get_template_and_user(
34 template_name => "opac-account.tt",
35 query => $query,
36 type => "opac",
37 authnotrequired => 0,
38 debug => 1,
42 my $patron = Koha::Patrons->find( $borrowernumber );
43 my $account = $patron->account;
44 my $accountlines = $account->lines->search({ amountoutstanding => { '>=' => 0 }});
45 my $total_outstanding = $accountlines->total_outstanding;
46 my $outstanding_credits = $account->outstanding_credits;
48 $template->param(
49 ACCOUNT_LINES => $accountlines,
50 total => $total_outstanding,
51 outstanding_credits => $outstanding_credits,
52 accountview => 1,
53 message => scalar $query->param('message') || q{},
54 message_value => scalar $query->param('message_value') || q{},
55 payment => scalar $query->param('payment') || q{},
56 payment_error => scalar $query->param('payment-error') || q{},
59 my $plugins_enabled = C4::Context->preference('UseKohaPlugins') && C4::Context->config("enable_plugins");
60 if ( $plugins_enabled ) {
61 my @plugins = Koha::Plugins->new()->GetPlugins({
62 method => 'opac_online_payment',
63 });
64 # Only pass in plugins where opac online payment is enabled
65 @plugins = grep { $_->opac_online_payment } @plugins;
66 $template->param( plugins => \@plugins );
69 output_html_with_http_headers $query, $cookie, $template->output, undef, { force_no_caching => 1 };