From 2363757c976256ac92fd6f41797897158582fdae Mon Sep 17 00:00:00 2001 From: Jonathan Druart Date: Thu, 5 Nov 2015 12:10:19 +0000 Subject: [PATCH] Bug 15091: DEBT is IMPOSSIBLE, not NEEDSCONFIRMATION MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Marc VĂ©ron --- .../prog/en/modules/circ/circulation_batch_checkouts.tt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation_batch_checkouts.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation_batch_checkouts.tt index cf04b5e..fef0b11 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation_batch_checkouts.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/circ/circulation_batch_checkouts.tt @@ -137,9 +137,6 @@ $(document).ready(function() { [% IF checkout_info.AGE_RESTRICTION %] Age restriction [% checkout_info.AGE_RESTRICTION %] [% END %] - [% IF checkout_info.DEBT %] - The patron has a debt of [% checkout_info.DEBT %] - [% END %] [% IF checkout_info.RENEW_ISSUE %] This Item is currently checked out to this patron. Renew? [% END %] @@ -260,6 +257,9 @@ $(document).ready(function() { [% IF checkout_info.UNKNOWN_BARCODE %]
  • The barcode was not found [% checkout_info.barcode |html %] [% END %] + [% IF checkout_info.DEBT %] + The patron has a debt of [% checkout_info.DEBT %] + [% END %]

    [% END %] -- 1.7.10.4