From b272a9f4a93b7002496d4001667e6d0342e740e8 Mon Sep 17 00:00:00 2001 From: Katrin Fischer Date: Fri, 15 Aug 2014 21:35:45 +0200 Subject: [PATCH] Bug 12448: Follow-up: Only ask confirmation when rental charge > 0 To test: - Check out an item with no rental charge - Verify no confirmation message appears - Check out an item with rental charge - Verify rental charge shows --- koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation.tt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation.tt index 524f844..3fd3c46 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation.tt @@ -163,7 +163,7 @@ $(document).ready(function() {
  • The patron has a debt of [% DEBT %].
  • [% END %] -[% IF ( RENTALCHARGE ) %] +[% IF ( RENTALCHARGE > 0 ) %]
  • Rental charge for this item: [% RENTALCHARGE %]
  • [% END %] -- 1.9.1