From 29891f38f90b14d50da741715fe3e9c31ce0d170 Mon Sep 17 00:00:00 2001 From: Marc Veron Date: Sun, 29 Jul 2012 09:30:54 +0200 Subject: [PATCH] Bug 8518 - Self checkout does not display debt amount if syspref AllowFineOverride is set to allow If the patron has depts that prevent issuing and the system preference 'AllowFineOverride' is set to 'allow', the amount is not displayed in the user message. Additionally, patch adds currency symbol to amount. Test plan: Do self checkout with patron who has debts that are over the limit. Test with and without preference 'AllowFineOverride' set. Signed-off-by: Mirko Tietgen Signed-off-by: Paul Poulain --- opac/sco/sco-main.pl | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/opac/sco/sco-main.pl b/opac/sco/sco-main.pl index 243dddd064..26a877471b 100755 --- a/opac/sco/sco-main.pl +++ b/opac/sco/sco-main.pl @@ -155,7 +155,7 @@ elsif ( $op eq "checkout" ) { hide_main => 1, ); if ($issue_error eq 'DEBT') { - $template->param(amount => $impossible->{DEBT}); + $template->param(amount => C4::Budgets->GetCurrency()->{symbol}.$impossible->{DEBT}); } #warn "issue_error: " . $issue_error ; if ( $issue_error eq "NO_MORE_RENEWALS" ) { @@ -187,6 +187,9 @@ elsif ( $op eq "checkout" ) { "circ_error_$issue_error" => 1, hide_main => 1, ); + if ($issue_error eq 'DEBT') { + $template->param(amount => C4::Budgets->GetCurrency()->{symbol}.$needconfirm->{DEBT}); + } } else { if ( $confirmed || $issuenoconfirm ) { # we'll want to call getpatroninfo again to get updated issues. # warn "issuing book?"; -- 2.39.2