From 0ca3c88e0158d23478d30492e06219e8945e7415 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marc=20V=C3=A9ron?= Date: Mon, 4 Jul 2016 14:30:24 +0200 Subject: [PATCH] Bug 16810 - Fines note not showing on checkout Fines did not show on patron checkout and detail pages unless amout was greater than syspref NoIssueCharges. This patch fixes the logic in koha-tmpl/intranet-tmpl/prog/en/includes/blocked-fines.inc Additionally, it changes links to buttons and makes some small text changes to ease translation. To test: - 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 | 22 +++++++------------- 1 file changed, 7 insertions(+), 15 deletions(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/includes/blocked-fines.inc b/koha-tmpl/intranet-tmpl/prog/en/includes/blocked-fines.inc index 596c0c7..d30d169 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/includes/blocked-fines.inc +++ b/koha-tmpl/intranet-tmpl/prog/en/includes/blocked-fines.inc @@ -1,22 +1,14 @@ [% 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 %] + -- 1.7.10.4