From 73c1a1a6e13c482c05e89b9a00b3721712a92006 Mon Sep 17 00:00:00 2001 From: Victoria Faafia Date: Tue, 19 Jan 2021 03:45:28 +0000 Subject: [PATCH] Bug 22752: Show if a placed hold is a record or item level in the patron account in the OPAC Test Plan 1. Have a record with an item 2. You will need to set a hold through staff account (to import books Cataloging>New from Z39.50/SRU> 3. Keyword(enter any keyword e.g pokemon) 4. tick library of congress 5. choose a title and click actions then import 6. 003 should be OSt 7. tab 9 koha item type can be books or whatever and press save 8. select the hold and place hold 9. on Koha OPAC click on your account and go to the holds and underneath the title it should say Only item and the barcode --- koha-tmpl/opac-tmpl/bootstrap/en/includes/holds-table.inc | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/koha-tmpl/opac-tmpl/bootstrap/en/includes/holds-table.inc b/koha-tmpl/opac-tmpl/bootstrap/en/includes/holds-table.inc index cf72809082..5ce8d5c187 100644 --- a/koha-tmpl/opac-tmpl/bootstrap/en/includes/holds-table.inc +++ b/koha-tmpl/opac-tmpl/bootstrap/en/includes/holds-table.inc @@ -58,6 +58,11 @@ [% END %] [% HOLD.biblio.author | html %] + [% IF HOLD.item_level_hold %] + Only item [% HOLD.item.barcode %] + [% ELSE %] + Next available item + [% END %] -- 2.11.0