From d039af97dfaea17884de5fb60a99829b8a9e53ed Mon Sep 17 00:00:00 2001 From: phasefx Date: Thu, 8 Jul 2010 13:24:13 +0000 Subject: [PATCH] populate some fields in Item Status->Alternate View->Circulation History->Most Recent Circ Group when we're not bothering to retrieve the circ chain git-svn-id: svn://svn.open-ils.org/ILS/trunk@16874 dcc99617-32d9-48b4-a31d-7c20da2025e4 --- Open-ILS/xul/staff_client/server/circ/alternate_copy_summary.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Open-ILS/xul/staff_client/server/circ/alternate_copy_summary.js b/Open-ILS/xul/staff_client/server/circ/alternate_copy_summary.js index e9d07231de..d1de4f7b8d 100644 --- a/Open-ILS/xul/staff_client/server/circ/alternate_copy_summary.js +++ b/Open-ILS/xul/staff_client/server/circ/alternate_copy_summary.js @@ -364,7 +364,9 @@ function load_item() { } 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()); -- 2.43.2