From 5ac1ebb60f0d496792f933d38550af2aa6d7f9ed Mon Sep 17 00:00:00 2001 From: Pierre-Marc Thibault Date: Mon, 14 Jan 2019 14:02:49 -0500 Subject: [PATCH] Bug 22130: Correct parameter to get authorized value description. This patch corrects the error that shows an authorized value instead of the obvious description of the document status. TEST PLAN 1) In Koha administration, search "BatchCheckouts". 2) Make sure "BatchCheckouts" is set at "Allow". 3) Make sure "BatchCheckoutsValidCategories" contains at least one patron category. 5) Copy the barcode of an item and change the status document so it cannot be loaned. 4) Choose a patron which belongs to the patron category at 3). (their account should not be expired and they should not have active fees preferably) 5) Go to the patron details page. 6) Click on "Batch check out". 7) Enter the item barcode. 8) Notice a number is in brackets under the column "Information". 9) Apply patch. 10) Notice the status description has replaced the number. Signed-off-by: Martin Renvoize Signed-off-by: Josef Moravec Signed-off-by: Owen Leonard Signed-off-by: Nick Clemens (cherry picked from commit 9d69a4238269073fd03961e091b5099b85fea6e6) Signed-off-by: Martin Renvoize (cherry picked from commit f534c985eccae18f406ea8991f13298b958a860b) Signed-off-by: Lucas Gass --- .../prog/en/modules/circ/circulation_batch_checkouts.tt | 4 ++-- 1 file changed, 2 insertions(+), 2 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 a4a92fa10f..5f41129013 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 @@ -151,8 +151,8 @@ [% IF checkout_info.itemtype_notforloan %]
  • Item type is normally not for loan.
  • [% ELSIF checkout_info.item_notforloan %] - [% item_notforloan_lib = AuthorisedValues.GetByCode( authvalcode_notforloan, checkout_info.item_notforloan, 0 ) %] -
  • Item is normally not for loan [% IF item_notforloan_lib %]([% item_notforloan_lib %])[% END %].
  • + [% item_notforloan_lib = AuthorisedValues.GetByCode( checkout_info.authvalcode_notforloan, checkout_info.item_notforloan, 0 ) %] +
  • Item is normally not for loan [% IF item_notforloan_lib %]([% item_notforloan_lib | html %])[% END %].
  • [% END %] [% END %] [% IF checkout_info.USERBLOCKEDOVERDUE %] -- 2.39.5