From 7b1632799fd94efe51fa71316535aded070c8e6f Mon Sep 17 00:00:00 2001 From: Lucas Gass Date: Tue, 14 Jan 2020 15:40:38 +0000 Subject: [PATCH] Bug 24420: Display waiting on hold items in the Cataloging search results Location column To Test: 1. Place a hold on an item and trigger it. 2 Do a cataloging search that would include this record. 3. Notice that the 'Location' column does not account for this onhold item. 4. Apply patch and look at catalog results again. 5. You should see information display about the item being on hold. Signed-off-by: Barbara Johnson Signed-off-by: Bouzid Fergani Signed-off-by: Jonathan Druart --- koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/addbooks.tt | 1 + 1 file changed, 1 insertion(+) diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/addbooks.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/addbooks.tt index 90f80bf235..8083a2c086 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/addbooks.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/cataloguing/addbooks.tt @@ -120,6 +120,7 @@ [% IF ( resultsloo.itemlostcount ) %] Lost ([% resultsloo.itemlostcount | html %])
[% END %] [% IF ( resultsloo.orderedcount ) %] On order ([% resultsloo.orderedcount | html %])
[% END %] [% IF ( resultsloo.notforloancount ) %] Not for loan ([% resultsloo.notforloancount | html %])[% END %] + [% IF ( resultsloo.onholdcount ) %] Waiting on hold ([% resultsloo.onholdcount | html %])[% END %] -- 2.11.0