From 5f093d1066c6ca9d63f2781499497066b06b5e66 Mon Sep 17 00:00:00 2001 From: Garry Collum Date: Thu, 21 Jun 2018 19:41:48 -0400 Subject: [PATCH] LP#1778083 Location, Floating, and Age Protect missing from Items Out Adds columns for Location (Copy), Floating Group, and Age-based Hold Protection to the items out grid. To test. 1. View an items out screen to see that the Location, Floating Group, and Age-based Hold protection columns are not available as options. 2. Apply the patch. 3. Edit some items and add definitions for Floating Group, and Age-based hold protection. 4. Check out these items and other items that do not have a floating group or age-based protection. 5. Display the Location, Floating Group, and Age-based Hold Protection columns. Signed-off-by: Garry Collum --- Open-ILS/src/templates/staff/circ/patron/t_items_out.tt2 | 3 +++ Open-ILS/web/js/ui/default/staff/circ/patron/items_out.js | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/Open-ILS/src/templates/staff/circ/patron/t_items_out.tt2 b/Open-ILS/src/templates/staff/circ/patron/t_items_out.tt2 index 45c467cf5c..8aba90055f 100644 --- a/Open-ILS/src/templates/staff/circ/patron/t_items_out.tt2 +++ b/Open-ILS/src/templates/staff/circ/patron/t_items_out.tt2 @@ -85,6 +85,9 @@ + + + diff --git a/Open-ILS/web/js/ui/default/staff/circ/patron/items_out.js b/Open-ILS/web/js/ui/default/staff/circ/patron/items_out.js index 4543797b83..52e91f79d6 100644 --- a/Open-ILS/web/js/ui/default/staff/circ/patron/items_out.js +++ b/Open-ILS/web/js/ui/default/staff/circ/patron/items_out.js @@ -108,7 +108,7 @@ function($scope , $q , $routeParams , $timeout , egCore , egUser , patronSvc , { flesh : 4, flesh_fields : { circ : ['target_copy', 'workstation', 'checkin_workstation'], - acp : ['call_number', 'holds_count', 'status', 'circ_lib'], + acp : ['call_number', 'holds_count', 'status', 'circ_lib', 'location', 'floating', 'age_protect'], acn : ['record', 'owning_lib', 'prefix', 'suffix'], bre : ['wide_display_entry'] }, -- 2.11.0