From 8bb5fd3ce3208dad25731ea930f1354ff05a2111 Mon Sep 17 00:00:00 2001
From: Owen Leonard <oleonard@myacpl.org>
Date: Wed, 19 Sep 2018 14:48:08 +0000
Subject: [PATCH] Bug 21380: OMNIBUS: Circulation history UI improvements -
 make barcode clickable

This patch modifies the patron circulation history template so that the
barcode of each item links to the item details page.

To test, apply the patch and view the circulation history for a patron
with multiple current or past checkouts.

In the table of titles, the barcode for each item should correctly link
to the item details page for that item.

Signed-off-by: Michal Denar <black23@gmail.com>
---
 koha-tmpl/intranet-tmpl/prog/en/modules/members/readingrec.tt | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/members/readingrec.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/members/readingrec.tt
index 8ba70f3..9d79814 100644
--- a/koha-tmpl/intranet-tmpl/prog/en/modules/members/readingrec.tt
+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/members/readingrec.tt
@@ -84,7 +84,7 @@
             [% END %]
           </td>
 
-          <td>[% issue.barcode | html %]</td>
+          <td><a href="/cgi-bin/koha/catalogue/moredetail.pl?itemnumber=[% issue.itemnumber | html %]&amp;biblionumber=[% issue.biblionumber | html %]&amp;bi=[% issue.biblioitemnumber | html %]#item[% issue.itemnumber | html %]">[% issue.barcode | html %]</a></td>
           <td>[% issue.renewals | html %]</td>
           <td>
             <span title="[% issue.issuedate | html %]">[% issue.issuedate |$KohaDates with_hours => 1 | html %]</span>
-- 
2.1.4