From: phasefx <phasefx@dcc99617-32d9-48b4-a31d-7c20da2025e4> Date: Thu, 8 Jul 2010 13:24:13 +0000 (+0000) Subject: populate some fields in Item Status->Alternate View->Circulation History->Most Recent... X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=d039af97dfaea17884de5fb60a99829b8a9e53ed;p=evergreen%2Fpines.git 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 --- 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());