@@ -, +, @@ --- koha-tmpl/opac-tmpl/bootstrap/en/modules/sco/sco-main.tt | 2 +- opac/sco/sco-main.pl | 12 ++---------- 2 files changed, 3 insertions(+), 11 deletions(-) --- a/koha-tmpl/opac-tmpl/bootstrap/en/modules/sco/sco-main.tt +++ a/koha-tmpl/opac-tmpl/bootstrap/en/modules/sco/sco-main.tt @@ -54,7 +54,7 @@ [% ELSIF ( circ_error_NOT_FOR_LOAN ) %] This item is not for loan. [% ELSIF ( circ_error_DEBT ) %] - You owe the library [% currencySym %] [% amount | $Price %] and cannot check out. + You owe the library [% amount | $Price with_symbol => 1%] and cannot check out. [% ELSIF ( circ_error_WTHDRAWN ) %] This item has been withdrawn from the collection. [% ELSIF ( circ_error_RESTRICTED ) %] --- a/opac/sco/sco-main.pl +++ a/opac/sco/sco-main.pl @@ -44,7 +44,6 @@ use C4::Members; use C4::Biblio; use C4::Items; use Koha::DateUtils qw( dt_from_string ); -use Koha::Acquisition::Currencies; use Koha::Patrons; use Koha::Patron::Images; use Koha::Patron::Messages; @@ -114,11 +113,6 @@ if ( $patronid ) { $borrower = $patron->unblessed if $patron; } -my $currencySymbol = ""; -if ( my $active_currency = Koha::Acquisition::Currencies->get_active ) { - $currencySymbol = $active_currency->symbol; -} - my $branch = $issuer->{branchcode}; my $confirm_required = 0; my $return_only = 0; @@ -163,8 +157,7 @@ elsif ( $patron and $op eq "checkout" ) { hide_main => 1, ); if ($issue_error eq 'DEBT') { - $template->param(currencySym => $currencySymbol, - amount => $impossible->{DEBT}); + $template->param(amount => $impossible->{DEBT}); } #warn "issue_error: " . $issue_error ; if ( $issue_error eq "NO_MORE_RENEWALS" ) { @@ -196,8 +189,7 @@ elsif ( $patron and $op eq "checkout" ) { hide_main => 1, ); if ($issue_error eq 'DEBT') { - $template->param(currencySym => $currencySymbol, - amount => $needconfirm->{DEBT}); + $template->param(amount => $needconfirm->{DEBT}); } } else { if ( $confirmed || $issuenoconfirm ) { # we'll want to call getpatroninfo again to get updated issues. --