[open-ils-commits] [GIT] Evergreen ILS branch rel_3_1 updated. 169ee3e24c8cb04086c81071f777dd1137645b32
Evergreen Git
git at git.evergreen-ils.org
Fri May 25 15:25:51 EDT 2018
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "Evergreen ILS".
The branch, rel_3_1 has been updated
via 169ee3e24c8cb04086c81071f777dd1137645b32 (commit)
from e7c504baacfa77b1527a9f5cc3295ff8b2ba70ed (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit 169ee3e24c8cb04086c81071f777dd1137645b32
Author: Bill Erickson <berickxx at gmail.com>
Date: Tue May 22 11:18:01 2018 -0400
LP#1528909: Patron search clickable barcodes
Patron barcodes in the patron search grid are now click-able, making it
possible to quickly open multiple patrons in new tabs from patron search
by control-clicking (or middle-clicking) the barcode links.
Signed-off-by: Bill Erickson <berickxx at gmail.com>
Signed-off-by: Terran McCanna <tmccanna at georgialibraries.org>
Signed-off-by: Galen Charlton <gmc at equinoxinitiative.org>
diff --git a/Open-ILS/src/templates/staff/circ/patron/t_search_results.tt2 b/Open-ILS/src/templates/staff/circ/patron/t_search_results.tt2
index 65ef0a1..f42ba4a 100644
--- a/Open-ILS/src/templates/staff/circ/patron/t_search_results.tt2
+++ b/Open-ILS/src/templates/staff/circ/patron/t_search_results.tt2
@@ -24,7 +24,9 @@
handler="addToBucket" disabled="need_one_selected"></eg-grid-menu-item>
<eg-grid-field label="[% l('ID') %]" path='id' visible></eg-grid-field>
- <eg-grid-field label="[% l('Card') %]" path='card.barcode' visible></eg-grid-field>
+ <eg-grid-field label="[% l('Card') %]" path='card.barcode' visible>
+ <a href="./circ/patron/{{item.id()}}/checkout">{{item.card().barcode()}}</a>
+ </eg-grid-field>
<eg-grid-field label="[% l('Profile') %]" path='profile.name' visible></eg-grid-field>
<eg-grid-field label="[% l('Last Name') %]" path='family_name' visible sortable multisortable></eg-grid-field>
<eg-grid-field label="[% l('First Name') %]" path='first_given_name' visible sortable multisortable></eg-grid-field>
-----------------------------------------------------------------------
Summary of changes:
.../staff/circ/patron/t_search_results.tt2 | 4 +++-
1 files changed, 3 insertions(+), 1 deletions(-)
hooks/post-receive
--
Evergreen ILS
More information about the open-ils-commits
mailing list