[open-ils-commits] r13289 - trunk/Open-ILS/xul/staff_client/server/circ (phasefx)

svn at svn.open-ils.org svn at svn.open-ils.org
Tue Jun 2 15:56:13 EDT 2009


Author: phasefx
Date: 2009-06-02 15:56:10 -0400 (Tue, 02 Jun 2009)
New Revision: 13289

Modified:
   trunk/Open-ILS/xul/staff_client/server/circ/util.js
Log:
missed a column, for hold Available On.  the other was the (timestamp) variant

Modified: trunk/Open-ILS/xul/staff_client/server/circ/util.js
===================================================================
--- trunk/Open-ILS/xul/staff_client/server/circ/util.js	2009-06-02 17:11:02 UTC (rev 13288)
+++ trunk/Open-ILS/xul/staff_client/server/circ/util.js	2009-06-02 19:56:10 UTC (rev 13289)
@@ -1345,7 +1345,7 @@
 				if (my.ahr.transit() && my.ahr.transit().dest_recv_time()) {
 					return my.ahr.transit().dest_recv_time().toString().substr(0,10);
 				}
-				if (my.ahr.capture_time()) {
+				if (!my.ahr.transit() && my.ahr.capture_time()) {
 					return my.ahr.capture_time().toString().substr(0,10);
 				}
 				return "";



More information about the open-ils-commits mailing list