From 2cdba87259cff8d8811d601496c77e31e46a9abf Mon Sep 17 00:00:00 2001 From: Kathy Lussier <klussier@masslnc.org> Date: Tue, 16 Jan 2018 23:40:32 -0500 Subject: [PATCH] LP#1738249: Item status column picker fixes Adds some fixes to the column pickers in the web staff client Item Status interface: * The Circulation Library field now displays the asset.copy circ library instead of the checkout library. * The Circulation Library and Checkout / Renewal Library now show the shortname instead of the full name. * A typo fix so that Remaining Renewals display Conflicts: Open-ILS/src/templates/staff/cat/item/t_list.tt2 Signed-off-by: Kathy Lussier <klussier@masslnc.org> Signed-off-by: Cesar Velez <cesar.velez@equinoxinitiative.org> Signed-off-by: Terran McCanna <tmccanna@georgialibraries.org> Signed-off-by: Galen Charlton <gmc@equinoxinitiative.org> Signed-off-by: Jason Stephenson <jason@sigio.com> --- Open-ILS/src/templates/staff/cat/item/t_list.tt2 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Open-ILS/src/templates/staff/cat/item/t_list.tt2 b/Open-ILS/src/templates/staff/cat/item/t_list.tt2 index 2addc1db39..64bf4987ea 100644 --- a/Open-ILS/src/templates/staff/cat/item/t_list.tt2 +++ b/Open-ILS/src/templates/staff/cat/item/t_list.tt2 @@ -87,7 +87,7 @@ <eg-grid-field label="[% l('Checkin Workstation') %]" path="_circ_summary.last_checkin_workstation" hidden></eg-grid-field> <eg-grid-field label="[% l('Checkout Date') %]" path="_circ_summary.start_time" datatype="timestamp" hidden></eg-grid-field> <eg-grid-field label="[% l('Checkout Workstation') %]" path="_circ_summary.checkout_workstation" hidden></eg-grid-field> - <eg-grid-field label="[% l('Checkout/Renewal Library') %]" path="_circ.circ_lib.name" hidden></eg-grid-field> + <eg-grid-field label="[% l('Checkout/Renewal Library') %]" path="_circ_lib.shortname" hidden></eg-grid-field> <eg-grid-field label="[% l('Circulation ID') %]" path="_circ.id" hidden></eg-grid-field> <eg-grid-field label="[% l('Circ or Renewal Workstation') %]" path="_circ.workstation.name" hidden></eg-grid-field> <eg-grid-field label="[% l('Classification') %]" path="call_number.label_class.name" hidden></eg-grid-field> @@ -125,7 +125,7 @@ <eg-grid-field label="[% l('Publisher') %]" path="call_number.record.simple_record.publisher" hidden></eg-grid-field> <eg-grid-field label="[% l('Quality') %]" path="call_number.record.simple_record.quality" hidden></eg-grid-field> <eg-grid-field label="[% l('Reference?') %]" path="ref" hidden></eg-grid-field> - <eg-grid-field label="[% l('Remaining Renewals') %]" path="_circ.renewals_remaining" hidden></eg-grid-field> + <eg-grid-field label="[% l('Remaining Renewals') %]" path="_circ.renewal_remaining" hidden></eg-grid-field> <eg-grid-field label="[% l('Status Changed Time') %]" path="status_changed_time" datatype="timestamp" hidden></eg-grid-field> <eg-grid-field label="[% l('TCN') %]" path="call_number.record.tcn_value" hidden></eg-grid-field> <eg-grid-field label="[% l('TCN Source') %]" path="call_number.record.tcn_source" hidden></eg-grid-field> -- 2.11.0