From b52680e1bf30521dfc5bb7cb352eda91434131a4 Mon Sep 17 00:00:00 2001 From: Jonathan Druart Date: Tue, 15 Oct 2019 16:11:24 +0200 Subject: [PATCH] Bug 23780: Add DEBT info to batch checkouts info DEBT can be impossible or needs confirmation. Test plan: Create an invoice of 50 (and make sure 50 is above the limit) Check an item out using the batch checkouts feature => You should see the warning in the "Information" column --- .../intranet-tmpl/prog/en/modules/circ/circulation_batch_checkouts.tt | 4 ++++ 1 file changed, 4 insertions(+) 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 2550819714..09b7967ed8 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 @@ -183,6 +183,10 @@ [% IF checkout_info.PREVISSUE %]
  • This item has previously been checked out to this patron.
  • [% END %] + + [% IF checkout_info.DEBT %] +
  • The patron has a debt of [% checkout_info.DEBT | $Price %].
  • + [% END %] [% END %] -- 2.11.0