From fadf69f224fb0513791fefb93d472e2d576bd09c Mon Sep 17 00:00:00 2001 From: Kyle M Hall Date: Thu, 29 Jun 2023 15:20:32 -0400 Subject: [PATCH] Bug 34160: Hyperlink item barcode to the item more details editor from the holds queue viewer Sometimes librarians fail to find an item on the shelf for a hold and need to mark the item as lost. In these cases it would be helpful to link the barcode to the item's "more details" form in the same way we do for the standard details item barcode hyperlink. Test Plan: 1) View the holds queue, note the item barcode is not a hyperlink 2) Apply this patch 3) Reload the page, note the item barcode is a hyperlink to the more details page for that item! Signed-off-by: Phil Ringnalda Signed-off-by: Katrin Fischer Signed-off-by: Tomas Cohen Arazi --- .../intranet-tmpl/prog/en/modules/circ/view_holdsqueue.tt | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/view_holdsqueue.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/circ/view_holdsqueue.tt index 837d6e5ecc..d94d4c347d 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/view_holdsqueue.tt +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/circ/view_holdsqueue.tt @@ -192,11 +192,11 @@ [% itemsloo.item.enumchron | html %] [% IF ( itemsloo.item_level_request ) %] - Only item: [% itemsloo.barcode | html %] + Only item: [% itemsloo.barcode | html %] [% ELSIF itemsloo.item.item_group %] - [% itemsloo.barcode | html %] or any item from item group [% itemsloo.item.item_group.description | html %] + [% itemsloo.barcode | html %]</strong> or any item from item group [% itemsloo.item.item_group.description | html %] [% ELSE %] - [% itemsloo.barcode | html %] or any available + [% itemsloo.barcode | uri %] or any available [% END %] @@ -216,7 +216,7 @@ - [% END %] + [% END %] [% END %] [% UNLESS ( total ) %] -- 2.20.1