From b871987b769abdf65de540219b8894aaefd27528 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! --- .../intranet-tmpl/prog/en/modules/circ/view_holdsqueue.tt | 6 +++--- 1 file changed, 3 insertions(+), 3 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 fb87fa514b..36a99184b2 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 @@ -187,11 +187,11 @@ [% itemsloo.enumchron | html %] [% IF ( itemsloo.item_level_request ) %] - Only item: [% itemsloo.barcode | html %] + Only item: [% itemsloo.barcode | html %] [% ELSIF itemsloo.item_group_id %] - [% itemsloo.barcode | html %] or any item from item group [% itemsloo.item_group_description | html %] + [% itemsloo.barcode | html %] or any item from item group [% itemsloo.item_group_description | html %] [% ELSE %] - [% itemsloo.barcode | html %] or any available + [% itemsloo.barcode | html %] or any available [% END %] -- 2.39.1