From 9eaa4d9775fa64549ec9657f333914d671129acf 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 Signed-off-by: Martin Renvoize --- 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 100cabdfb0..57fa62ba35 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.39.5