Adds a link from the item's barcode in the in-house checkin screen to the item summary screen.
To test:
Type an item barcode into the In-House Use screen. Click on the barcode that displays in the item list.
Signed-off-by: Garry Collum <gcollum@gmail.com>
Signed-off-by: Terran McCanna <tmccanna@georgialibraries.org>
Signed-off-by: Jane Sandberg <sandbej@linnbenton.edu>
persist-key="circ.in_house_use">
<eg-grid-field label="[% l('# of Uses') %]" path='num_uses' visible></eg-grid-field>
- <eg-grid-field label="[% l('Barcode') %]" path='copy.barcode' visible></eg-grid-field>
+ <eg-grid-field label="[% l('Barcode') %]" path='copy.barcode' visible>
+ <a href="./cat/item/{{item.copy.id()}}/summary" target="_self">
+ {{item.copy.barcode()}}
+ </a>
+ </eg-grid-field>
<eg-grid-field label="[% l('CN Prefix') %]" path="copy.call_number.prefix.label" visible></eg-grid-field>
<eg-grid-field label="[% l('Call Number') %]" path="copy.call_number.label" visible></eg-grid-field>
<eg-grid-field label="[% l('CN Suffix') %]" path="copy.call_number.suffix.label" visible></eg-grid-field>