[open-ils-commits] r14767 - in trunk/Open-ILS/xul/staff_client/server: circ locale/en-US (phasefx)

svn at svn.open-ils.org svn at svn.open-ils.org
Wed Nov 4 14:07:19 EST 2009


Author: phasefx
Date: 2009-11-04 14:07:15 -0500 (Wed, 04 Nov 2009)
New Revision: 14767

Modified:
   trunk/Open-ILS/xul/staff_client/server/circ/util.js
   trunk/Open-ILS/xul/staff_client/server/locale/en-US/circ.properties
Log:
Shelf Time and Shelf Expire Time columns for holds

Modified: trunk/Open-ILS/xul/staff_client/server/circ/util.js
===================================================================
--- trunk/Open-ILS/xul/staff_client/server/circ/util.js	2009-11-04 17:03:05 UTC (rev 14766)
+++ trunk/Open-ILS/xul/staff_client/server/circ/util.js	2009-11-04 19:07:15 UTC (rev 14767)
@@ -1629,6 +1629,24 @@
         },
         {
             'persist' : 'hidden width ordinal',
+            'id' : 'shelf_time',
+            'label' : document.getElementById('circStrings').getString('staff.circ.utils.holds.shelf_time'),
+            'flex' : 0,
+            'primary' : false,
+            'hidden' : true,
+            'editable' : false, 'render' : function(my) { return my.ahr.shelf_time(); }
+        },
+        {
+            'persist' : 'hidden width ordinal',
+            'id' : 'shelf_expire_time',
+            'label' : document.getElementById('circStrings').getString('staff.circ.utils.holds.shelf_expire_time'),
+            'flex' : 0,
+            'primary' : false,
+            'hidden' : true,
+            'editable' : false, 'render' : function(my) { return my.ahr.shelf_expire_time(); }
+        },
+        {
+            'persist' : 'hidden width ordinal',
             'id' : 'available_timestamp',
             'label' : document.getElementById('circStrings').getString('staff.circ.utils.available_timestamp'),
             'flex' : 1,

Modified: trunk/Open-ILS/xul/staff_client/server/locale/en-US/circ.properties
===================================================================
--- trunk/Open-ILS/xul/staff_client/server/locale/en-US/circ.properties	2009-11-04 17:03:05 UTC (rev 14766)
+++ trunk/Open-ILS/xul/staff_client/server/locale/en-US/circ.properties	2009-11-04 19:07:15 UTC (rev 14767)
@@ -325,6 +325,8 @@
 staff.circ.utils.ahr_mint_condition=Copy Quality
 staff.circ.utils.ahr_mint_condition.true=Good
 staff.circ.utils.ahr_mint_condition.false=Any
+staff.circ.utils.holds.shelf_time=Shelf Time
+staff.circ.utils.holds.shelf_expire_time=Shelf Expire Time
 # Hold for patron familyName, firstName secondName
 staff.circ.utils.payload.hold.patron=Hold for patron %1$s, %2$s %3$s
 staff.circ.utils.payload.hold.patron_alias=Hold for patron %1$s



More information about the open-ils-commits mailing list