[open-ils-commits] r16874 - trunk/Open-ILS/xul/staff_client/server/circ (phasefx)
svn at svn.open-ils.org
svn at svn.open-ils.org
Thu Jul 8 09:24:15 EDT 2010
Author: phasefx
Date: 2010-07-08 09:24:13 -0400 (Thu, 08 Jul 2010)
New Revision: 16874
Modified:
trunk/Open-ILS/xul/staff_client/server/circ/alternate_copy_summary.js
Log:
populate some fields in Item Status->Alternate View->Circulation History->Most Recent Circ Group when we're not bothering to retrieve the circ chain
Modified: trunk/Open-ILS/xul/staff_client/server/circ/alternate_copy_summary.js
===================================================================
--- trunk/Open-ILS/xul/staff_client/server/circ/alternate_copy_summary.js 2010-07-08 03:32:13 UTC (rev 16873)
+++ trunk/Open-ILS/xul/staff_client/server/circ/alternate_copy_summary.js 2010-07-08 13:24:13 UTC (rev 16874)
@@ -364,7 +364,9 @@
}
set("checkin_staff", details.circ.checkin_staff());
set("checkin_time", util.date.formatted_date( details.circ.checkin_time(), '%{localized}' ));
+ set("last_checkin_time", util.date.formatted_date( details.circ.checkin_time(), '%{localized}' ));
set("checkin_scan_time", util.date.formatted_date( details.circ.checkin_scan_time(), '%{localized}' ));
+ set("last_checkin_scan_time", util.date.formatted_date( details.circ.checkin_scan_time(), '%{localized}' ));
try { set("circ_circ_lib" , typeof details.circ.circ_lib() == 'object' ? details.circ.circ_lib().shortname() : data.hash.aou[ details.circ.circ_lib() ].shortname() ); } catch(E) {};
try { set_tooltip("circ_circ_lib" , typeof details.circ.circ_lib() == 'object' ? details.circ.circ_lib().name() : data.hash.aou[ details.circ.circ_lib() ].name() ); } catch(E) {};
set("circ_staff", details.circ.circ_staff());
More information about the open-ils-commits
mailing list