From 598b8dc8fec84ad49e4957e21a3e964d98921d4c Mon Sep 17 00:00:00 2001 From: pines Date: Tue, 22 Aug 2006 18:50:51 +0000 Subject: [PATCH] create date and edit date for item lists git-svn-id: svn://svn.open-ils.org/ILS/trunk@5642 dcc99617-32d9-48b4-a31d-7c20da2025e4 --- Open-ILS/xul/staff_client/server/circ/util.js | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/Open-ILS/xul/staff_client/server/circ/util.js b/Open-ILS/xul/staff_client/server/circ/util.js index 91ef8febf4..8b3ecea733 100644 --- a/Open-ILS/xul/staff_client/server/circ/util.js +++ b/Open-ILS/xul/staff_client/server/circ/util.js @@ -460,6 +460,14 @@ circ.util.columns = function(modify,params) { 'persist' : 'hidden width ordinal', 'id' : 'due_date', 'label' : getString('staff.circ_label_due_date'), 'flex' : 1, 'primary' : false, 'hidden' : true, 'render' : 'my.circ ? my.circ.due_date().substr(0,10) : (my.acp.circulations() ? my.acp.circulations()[0].due_date().substr(0,10) : "")' }, + { + 'persist' : 'hidden width ordinal', 'id' : 'create_date', 'label' : 'Date Created', 'flex' : 1, + 'primary' : false, 'hidden' : true, 'render' : 'my.acp.create_date().substr(0,10)' + }, + { + 'persist' : 'hidden width ordinal', 'id' : 'edit_date', 'label' : 'Date Last Edited', 'flex' : 1, + 'primary' : false, 'hidden' : true, 'render' : 'my.acp.edit_date().substr(0,10)' + }, { 'persist' : 'hidden width ordinal', 'id' : 'title', 'label' : getString('staff.mvr_label_title'), 'flex' : 2, 'primary' : false, 'hidden' : true, 'render' : 'try { my.mvr.title(); } catch(E) { my.acp.dummy_title(); }' -- 2.43.2