From 366b24a6b5401511c08ad68abbb3da28c800ccd6 Mon Sep 17 00:00:00 2001 From: Jane Sandberg Date: Sun, 3 Jun 2018 15:50:40 -0700 Subject: [PATCH] LP1010635: Make bre dates populate in Item Status grid To test: 1) Enable the Date Record Created and Date Record Last Edited columns in Item Status. 2) Scan an item barcode into Item Status. Note that the two columns you enabled are empty. 3) Apply this commit. 4) Reload the Item Status screen, and scan your barcode again. The dates should now be populated. Signed-off-by: Jane Sandberg Signed-off-by: Garry Collum Signed-off-by: Galen Charlton --- Open-ILS/web/js/ui/default/staff/circ/services/item.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Open-ILS/web/js/ui/default/staff/circ/services/item.js b/Open-ILS/web/js/ui/default/staff/circ/services/item.js index 42ed49fd49..6fba28578b 100644 --- a/Open-ILS/web/js/ui/default/staff/circ/services/item.js +++ b/Open-ILS/web/js/ui/default/staff/circ/services/item.js @@ -23,7 +23,7 @@ function(egCore , egCirc , $uibModal , $q , $timeout , $window , egConfirmDialog select : { // avoid fleshing MARC on the bre // note: don't add simple_record.. not sure why - bre : ['id','tcn_value','creator','editor'], + bre : ['id','tcn_value','creator','editor', 'create_date', 'edit_date'], } } -- 2.43.2