@@ -, +, @@ - Apply patch - Display checkout or detail page and verify proper display for a patron who has - no fines (no message) - fines not exceeding syspref NoissueCharges (message) - fines exceeding syspref NoIssueCharges (message) --- .../prog/en/includes/blocked-fines.inc | 21 ++++++--------------- 1 file changed, 6 insertions(+), 15 deletions(-) --- a/koha-tmpl/intranet-tmpl/prog/en/includes/blocked-fines.inc +++ a/koha-tmpl/intranet-tmpl/prog/en/includes/blocked-fines.inc @@ -1,22 +1,13 @@ [% USE Price %] [% SET NoIssuesCharge = Koha.Preference('noissuescharge') %] - -[% IF NoIssuesCharge && fines > NoIssuesCharge %] +[% IF fines > 0 %]
  • Fees & Charges: - Patron has - Outstanding fees & charges - [% IF ( fines ) %] - of [% fines | $Price %] - [% END %] - . - - [% IF !Koha.Preference('AllowFineOverride') %] - Checkouts are BLOCKED because fine balance is OVER THE LIMIT. + Patron has outstanding fees & charges of [% fines | $Price %]. + [% IF !Koha.Preference('AllowFineOverride') && NoIssuesCharge && fines > NoIssuesCharge %] + Checkouts are BLOCKED because fine balance is OVER THE LIMIT. [% END %] - - Make payment - or - Pay all fines
  • + Make payment + Pay all fines [% END %] --