From a54bc1861cd1bc3001bea77f62b87c7342fa1894 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 Signed-off-by: Dawn Dale Signed-off-by: Galen Charlton --- 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 5a5aee9e36..7f41136f76 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 e75d9a275e..110ead8585 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.43.2