From c930461c24ef14446db67f1f97302b1e927199f8 Mon Sep 17 00:00:00 2001 From: Jonathan Druart Date: Fri, 4 Apr 2014 11:57:34 +0200 Subject: [PATCH] Bug 11759: FIX cancel the hold after the checkout If an item is on hold, it will be cancelled after the checkout. --- .../prog/en/modules/circ/circulation_batch_checkouts.tt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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 720e61a..c20fd14 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 @@ -174,7 +174,7 @@ $(document).ready(function() { [% IF NOT checkout_info.IMPOSSIBLE && ( CAN_user_circulate_force_checkout or checkout_info.HIGHHOLDS ) %] [% IF checkout_info.RESERVED || checkout_info.RESERVE_WAITING %] -

The hold will be canceled.

+

The hold will be cancelled.

[% END %] [% END %]

@@ -253,6 +253,7 @@ $(document).ready(function() { [% IF confirmation_needed && CAN_user_circulate_force_checkout %]

Please confirm checkout

+ -- 1.7.10.4