'flex' : 1,
'primary' : false,
'hidden' : true,
- 'editable' : false, 'render' : function(my) { return my.acp.status_changed_time(); },
+ 'editable' : false, 'render' : function(my) { return util.date.formatted_date( my.acp.status_changed_time(), '%{localized}' ); },
'persist' : 'hidden width ordinal'
},
{
{
'persist' : 'hidden width ordinal',
'fm_class' : 'circ',
- 'id' : 'xact_start_full',
- 'label' : document.getElementById('circStrings').getString('staff.circ.utils.checkout_timestamp'),
- 'flex' : 1,
- 'primary' : false,
- 'hidden' : true,
- 'editable' : false, 'render' : function(my) {
- if (my.circ) {
- return my.circ.xact_start();
- } else {
- return "";
- }
- }
- },
- {
- 'persist' : 'hidden width ordinal',
- 'fm_class' : 'circ',
- 'id' : 'checkin_time_full',
- 'label' : document.getElementById('circStrings').getString('staff.circ.utils.checkin_timestamp'),
- 'flex' : 1,
- 'primary' : false,
- 'hidden' : true,
- 'editable' : false, 'render' : function(my) {
- if (my.circ) {
- return my.circ.checkin_time();
- } else {
- return "";
- }
- }
- },
- {
- 'persist' : 'hidden width ordinal',
- 'fm_class' : 'circ',
'id' : 'xact_start',
'label' : document.getElementById('circStrings').getString('staff.circ.utils.xact_start'),
'flex' : 1,
'hidden' : true,
'editable' : false, 'render' : function(my) {
if (my.circ) {
- return my.circ.xact_start().substr(0,10);
+ return util.date.formatted_date( my.circ.xact_start(), '%{localized}' );
} else {
return "";
}
'hidden' : true,
'editable' : false, 'render' : function(my) {
if (my.circ) {
- return my.circ.checkin_time().substr(0,10);
+ return util.date.formatted_date( my.circ.checkin_time(), '%{localized}' );
} else {
return "";
}
'flex' : 1,
'primary' : false,
'hidden' : true,
- 'editable' : false, 'render' : function(my) { return my.circ ? my.circ.xact_finish() : ""; },
+ 'editable' : false, 'render' : function(my) { return my.circ ? util.date.formatted_date( my.circ.xact_finish(), '%{localized}' ) : ""; },
},
{
'persist' : 'hidden width ordinal',
'hidden' : true,
'editable' : false, 'render' : function(my) {
if (my.circ) {
- return my.circ.due_date().substr(0,10);
- } else {
- return "";
- }
- }
- },
- {
- 'persist' : 'hidden width ordinal',
- 'fm_class' : 'circ',
- 'id' : 'due_time',
- 'label' : document.getElementById('commonStrings').getString('staff.circ_label_due_time'),
- 'flex' : 1,
- 'primary' : false,
- 'hidden' : true,
- 'editable' : false, 'render' : function(my) {
- if (my.circ) {
- return my.circ.due_date().substr(11,8);
+ return util.date.formatted_date( my.circ.due_date(), '%{localized}' );
} else {
return "";
}
'flex' : 1,
'primary' : false,
'hidden' : true,
- 'editable' : false, 'render' : function(my) { return my.acp.create_date().substr(0,10); }
+ 'editable' : false, 'render' : function(my) { return util.date.formatted_date( my.acp.create_date(), '%{localized}' ); }
},
{
'persist' : 'hidden width ordinal',
'flex' : 1,
'primary' : false,
'hidden' : true,
- 'editable' : false, 'render' : function(my) { return my.acp.edit_date().substr(0,10); }
+ 'editable' : false, 'render' : function(my) { return util.date.formatted_date( my.acp.edit_date(), '%{localized}' ); }
},
{
'persist' : 'hidden width ordinal',
'hidden' : true,
'editable' : false, 'render' : function(my) {
if (my.circ) {
- return my.circ.stop_fines_time();
+ return util.date.formatted_date( my.circ.stop_fines_time(), '%{localized}' );
} else {
return "";
}
'flex' : 1,
'primary' : false,
'hidden' : true,
- 'editable' : false, 'render' : function(my) { return my.circ ? my.circ.checkin_scan_time().substr(0,10) : ""; },
- },
- {
- 'persist' : 'hidden width ordinal',
- 'fm_class' : 'circ',
- 'id' : 'checkin_scan_timestamp',
- 'label' : document.getElementById('circStrings').getString('staff.circ.utils.checkin_scan_timestamp'),
- 'flex' : 1,
- 'primary' : false,
- 'hidden' : true,
- 'editable' : false, 'render' : function(my) { return my.circ ? my.circ.checkin_scan_time() : ""; },
+ 'editable' : false, 'render' : function(my) { return my.circ ? util.date.formatted_date( my.circ.checkin_scan_time(), '%{localized}' ) : ""; },
},
{
'persist' : 'hidden width ordinal',
'persist' : 'hidden width ordinal',
'fm_class' : 'bre',
'id' : 'create_date',
- 'label' : document.getElementById('circStrings').getString('staff.circ.utils.create_date'),
+ 'label' : document.getElementById('circStrings').getString('staff.circ.utils.bre.create_date'),
'flex' : 1,
'primary' : false,
'hidden' : true,
- 'editable' : false, 'render' : function(my) { return my.bre ? my.bre.create_date() : ''; }
+ 'editable' : false, 'render' : function(my) { return my.bre ? util.date.formatted_date( my.bre.create_date(), '%{localized}' ) : ''; }
},
{
'persist' : 'hidden width ordinal',
'fm_class' : 'bre',
'id' : 'edit_date',
- 'label' : document.getElementById('circStrings').getString('staff.circ.utils.edit_date'),
+ 'label' : document.getElementById('circStrings').getString('staff.circ.utils.bre.edit_date'),
'flex' : 1,
'primary' : false,
'hidden' : true,
- 'editable' : false, 'render' : function(my) { return my.bre ? my.bre.edit_date() : ''; }
+ 'editable' : false, 'render' : function(my) { return my.bre ? util.date.formatted_date( my.bre.edit_date(), '%{localized}' ) : ''; }
},
{
'persist' : 'hidden width ordinal',
'flex' : 1,
'primary' : false,
'hidden' : false,
- 'editable' : false, 'render' : function(my) { return my.atc.source_send_time(); }
+ 'editable' : false, 'render' : function(my) { return util.date.formatted_date( my.atc.source_send_time(), '%{localized}' ); }
},
{
'persist' : 'hidden width ordinal',
'flex' : 1,
'primary' : false,
'hidden' : false,
- 'editable' : false, 'render' : function(my) { return my.atc.dest_recv_time(); }
+ 'editable' : false, 'render' : function(my) { return util.date.formatted_date( my.atc.dest_recv_time(), '%{localized}' ); }
},
{
'persist' : 'hidden width ordinal',
'flex' : 1,
'primary' : false,
'hidden' : true,
- 'editable' : false, 'render' : function(my) { return my.ahr.cancel_time(); }
+ 'editable' : false, 'render' : function(my) { return util.date.formatted_date( my.ahr.cancel_time(), '%{localized}' ); }
},
{
'persist' : 'hidden width ordinal',
}
}
},
-
- {
- 'persist' : 'hidden width ordinal',
- 'id' : 'request_timestamp',
- 'label' : document.getElementById('circStrings').getString('staff.circ.utils.request_timestamp'),
- 'flex' : 0,
- 'primary' : false,
- 'hidden' : true,
- 'editable' : false, 'render' : function(my) { return my.ahr.request_time().toString(); }
- },
{
'persist' : 'hidden width ordinal',
'id' : 'request_time',
'flex' : 0,
'primary' : false,
'hidden' : true,
- 'editable' : false, 'render' : function(my) { return my.ahr.request_time().toString().substr(0,10); }
+ 'editable' : false, 'render' : function(my) { return util.date.formatted_date( my.ahr.request_time(), '%{localized}' ); }
},
{
'persist' : 'hidden width ordinal',
'flex' : 0,
'primary' : false,
'hidden' : true,
- 'editable' : false, 'render' : function(my) { return my.ahr.shelf_time(); }
+ 'editable' : false, 'render' : function(my) { return util.date.formatted_date( my.ahr.shelf_time(), '%{localized}' ); }
},
{
'persist' : 'hidden width ordinal',
'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,
- 'primary' : false,
- 'hidden' : true,
- 'editable' : false, 'render' : function(my) {
- if (my.ahr.transit() && my.ahr.transit().dest_recv_time()) {
- return my.ahr.transit().dest_recv_time().toString();
- }
- if (!my.ahr.transit() && my.ahr.capture_time()) {
- return my.ahr.capture_time().toString();
- }
- return "";
- }
+ 'editable' : false, 'render' : function(my) { return util.date.formatted_date( my.ahr.shelf_expire_time(), '%{localized}' ); }
},
{
'persist' : 'hidden width ordinal',
'hidden' : false,
'editable' : false, 'render' : function(my) {
if (my.ahr.transit() && my.ahr.transit().dest_recv_time()) {
- return my.ahr.transit().dest_recv_time().toString().substr(0,10);
+ return util.date.formatted_date( my.ahr.transit().dest_recv_time(), '%{localized}' );
}
if (!my.ahr.transit() && my.ahr.capture_time()) {
- return my.ahr.capture_time().toString().substr(0,10);
+ return util.date.formatted_date( my.ahr.capture_time(), '%{localized}' );
}
return "";
}
},
{
'persist' : 'hidden width ordinal',
- 'id' : 'capture_timestamp',
- 'label' : document.getElementById('circStrings').getString('staff.circ.utils.capture_timestamp'),
- 'flex' : 1,
- 'primary' : false,
- 'hidden' : true,
- 'editable' : false, 'render' : function(my) { return my.ahr.capture_time() ? my.ahr.capture_time().toString() : ""; }
- },
- {
- 'persist' : 'hidden width ordinal',
'id' : 'capture_time',
'label' : document.getElementById('circStrings').getString('staff.circ.utils.capture_time'),
'flex' : 1,
'primary' : false,
'hidden' : true,
- 'editable' : false, 'render' : function(my) { return my.ahr.capture_time() ? my.ahr.capture_time().toString().substr(0,10) : ""; }
+ 'editable' : false, 'render' : function(my) { return my.ahr.capture_time() ? util.date.formatted_date( my.ahr.capture_time(), '%{localized}' ) : ""; }
},
{
'persist' : 'hidden width ordinal',
if (my.ahr.thaw_date() == null) {
return document.getElementById('circStrings').getString('staff.circ.utils.thaw_date.none');
} else {
- return my.ahr.thaw_date().substr(0,10);
+ return util.date.formatted_date( my.ahr.thaw_date(), '%{localized}' );
}
}
},
},
{
'persist' : 'hidden width ordinal',
- 'id' : 'expire_time',
- 'label' : document.getElementById('commonStrings').getString('staff.ahr_expire_time_label'),
- 'flex' : 1,
- 'primary' : false,
- 'hidden' : true,
- 'editable' : false, 'render' : function(my) { return my.ahr.expire_time(); }
- },
- {
- 'persist' : 'hidden width ordinal',
'id' : 'expire_date',
'label' : document.getElementById('commonStrings').getString('staff.ahr_expire_date_label'),
'flex' : 1,
'primary' : false,
'hidden' : true,
- 'editable' : false, 'render' : function(my) { return my.ahr.expire_time() ? my.ahr.expire_time().toString().substr(0,10) : ''; }
+ 'editable' : false, 'render' : function(my) { return my.ahr.expire_time() ? util.date.formatted_date( my.ahr.expire_time(), '%{localized}' ) : ''; }
},
{
'persist' : 'hidden width ordinal',
'flex' : 1,
'primary' : false,
'hidden' : true,
- 'editable' : false, 'render' : function(my) { return my.ahr.fulfillment_time(); }
+ 'editable' : false, 'render' : function(my) { return util.date.formatted_date( my.ahr.fulfillment_time(), '%{localized}' ); }
},
{
'persist' : 'hidden width ordinal',
'flex' : 1,
'primary' : false,
'hidden' : true,
- 'editable' : false, 'render' : function(my) { return my.ahr.prev_check_time(); }
+ 'editable' : false, 'render' : function(my) { return util.date.formatted_date( my.ahr.prev_check_time(), '%{localized}' ); }
},
{
'persist' : 'hidden width ordinal',
'flex' : 1,
'primary' : false,
'hidden' : true,
- 'editable' : false, 'render' : function(my) { return my.ahr.notify_time(); }
+ 'editable' : false, 'render' : function(my) { return util.date.formatted_date( my.ahr.notify_time(), '%{localized}' ); }
},
{
'persist' : 'hidden width ordinal',
'flex' : 1,
'primary' : false,
'hidden' : true,
- 'editable' : false, 'render' : function(my) { return my.ahr.transit() ? my.ahr.transit().source_send_time() : ""; }
+ 'editable' : false, 'render' : function(my) { return my.ahr.transit() ? util.date.formatted_date( my.ahr.transit().source_send_time(), '%{localized}' ) : ""; }
},
{
'persist' : 'hidden width ordinal',
'flex' : 1,
'primary' : false,
'hidden' : true,
- 'editable' : false, 'render' : function(my) { return my.ahr.transit() ? my.ahr.transit().dest_recv_time() : ""; }
+ 'editable' : false, 'render' : function(my) { return my.ahr.transit() ? util.date.formatted_date( my.ahr.transit().dest_recv_time(), '%{localized}' ) : ""; }
},
{
'persist' : 'hidden width ordinal',
},
{
'persist' : 'hidden width ordinal', 'id' : 'last_billing_ts', 'label' : commonStrings.getString('staff.mbts_last_billing_timestamp_label'), 'flex' : 1,
- 'primary' : false, 'hidden' : true, 'editable' : false, 'render' : function(my) { return util.date.formatted_date( my.mbts.last_billing_ts(), "" ); }
+ 'primary' : false, 'hidden' : true, 'editable' : false, 'render' : function(my) { return util.date.formatted_date( my.mbts.last_billing_ts(), "%{localized}" ); }
},
{
'persist' : 'hidden width ordinal', 'id' : 'last_payment_note', 'label' : commonStrings.getString('staff.mbts_last_payment_note_label'), 'flex' : 2,
},
{
'persist' : 'hidden width ordinal', 'id' : 'last_payment_ts', 'label' : commonStrings.getString('staff.mbts_last_payment_timestamp_label'), 'flex' : 1,
- 'primary' : false, 'hidden' : true, 'editable' : false, 'render' : function(my) { return util.date.formatted_date( my.mbts.last_payment_ts(), "" ); }
+ 'primary' : false, 'hidden' : true, 'editable' : false, 'render' : function(my) { return util.date.formatted_date( my.mbts.last_payment_ts(), "%{localized}" ); }
},
{
'persist' : 'hidden width ordinal', 'id' : 'xact_start', 'label' : commonStrings.getString('staff.mbts_xact_start_label'), 'flex' : 1,
- 'primary' : false, 'hidden' : false, 'editable' : false, 'render' : function(my) { return my.mbts.xact_start() ? my.mbts.xact_start().toString().substr(0,10) : ""; }
+ 'primary' : false, 'hidden' : false, 'editable' : false, 'render' : function(my) { return my.mbts.xact_start() ? util.date.formatted_date( my.mbts.xact_start(), "%{localized}" ) : ""; }
},
{
'persist' : 'hidden width ordinal', 'id' : 'xact_finish', 'label' : commonStrings.getString('staff.mbts_xact_finish_label'), 'flex' : 1,
- 'primary' : false, 'hidden' : false, 'editable' : false, 'render' : function(my) { return my.mbts.xact_finish() ? my.mbts.xact_finish().toString().substr(0,10) : ""; }
+ 'primary' : false, 'hidden' : false, 'editable' : false, 'render' : function(my) { return my.mbts.xact_finish() ? util.date.formatted_date( my.mbts.xact_finish(), "%{localized}" ) : ""; }
},
];
for (var i = 0; i < c.length; i++) {
},
{
'persist' : 'hidden width ordinal', 'id' : 'void_time', 'label' : commonStrings.getString('staff.mb_void_time_label'), 'flex' : 1,
- 'primary' : false, 'hidden' : true, 'editable' : false, 'render' : function(my) { return my.mb.void_time(); }
+ 'primary' : false, 'hidden' : true, 'editable' : false, 'render' : function(my) { return util.date.formatted_date( my.mb.void_time(), "%{localized}" ); }
},
{
'persist' : 'hidden width ordinal', 'id' : 'amount', 'label' : commonStrings.getString('staff.mb_amount_label'), 'flex' : 1,
},
{
'persist' : 'hidden width ordinal', 'id' : 'billing_ts', 'label' : commonStrings.getString('staff.mb_billing_ts_label'), 'flex' : 1,
- 'primary' : false, 'hidden' : false, 'editable' : false, 'render' : function(my) { return util.date.formatted_date( my.mb.billing_ts(), "" ); }
+ 'primary' : false, 'hidden' : false, 'editable' : false, 'render' : function(my) { return util.date.formatted_date( my.mb.billing_ts(), "%{localized}" ); }
},
{
'persist' : 'hidden width ordinal', 'id' : 'note', 'label' : commonStrings.getString('staff.mb_note_label'), 'flex' : 2,
},
{
'persist' : 'hidden width ordinal', 'id' : 'mp_payment_ts', 'label' : commonStrings.getString('staff.mp_payment_timestamp_label'), 'flex' : 1,
- 'primary' : false, 'hidden' : false, 'editable' : false, 'render' : function(my) { return util.date.formatted_date( my.mp.payment_ts(), "" ); }
+ 'primary' : false, 'hidden' : false, 'editable' : false, 'render' : function(my) { return util.date.formatted_date( my.mp.payment_ts(), "%{localized}" ); }
},
{
'persist' : 'hidden width ordinal', 'id' : 'mp_note', 'label' : commonStrings.getString('staff.mp_note_label'), 'flex' : 2,
{
'persist' : 'hidden width ordinal', 'id' : 'ausp_set_date', 'label' : commonStrings.getString('staff.ausp_set_date_label'), 'flex' : 1,
'primary' : false, 'hidden' : false, 'editable' : false, 'render' : function(my) {
- return my.ausp ? my.ausp.set_date() : '';
+ return my.ausp ? util.date.formatted_date( my.ausp.set_date(), "%{localized}" ) : '';
}
},
{
},
{
'persist' : 'hidden width ordinal', 'id' : 'create_date', 'label' : commonStrings.getString('staff.au_create_date_label'), 'flex' : 1,
- 'primary' : false, 'hidden' : true, 'editable' : false, 'render' : function(my) { return my.au.create_date(); }
+ 'primary' : false, 'hidden' : true, 'editable' : false, 'render' : function(my) { return util.date.formatted_date( my.au.create_date(), "%{localized}" ); }
},
{
'persist' : 'hidden width ordinal', 'id' : 'expire_date', 'label' : commonStrings.getString('staff.au_expire_date_label'), 'flex' : 1,
- 'primary' : false, 'hidden' : true, 'editable' : false, 'render' : function(my) { return my.au.expire_date().substr(0,10); }
+ 'primary' : false, 'hidden' : true, 'editable' : false, 'render' : function(my) { return util.date.formatted_date( my.au.expire_date(), "%{localized_date}" ); }
},
{
'persist' : 'hidden width ordinal', 'id' : 'home_ou', 'label' : commonStrings.getString('staff.au_home_library_label'), 'flex' : 1,
},
{
'persist' : 'hidden width ordinal', 'id' : 'dob', 'label' : commonStrings.getString('staff.au_birth_date_label'), 'flex' : 1,
- 'primary' : false, 'hidden' : true, 'editable' : false, 'render' : function(my) { return my.au.dob().substr(0,10); }
+ 'primary' : false, 'hidden' : true, 'editable' : false, 'render' : function(my) { return util.date.formatted_date( my.au.dob(), "%{localized_date}" ); }
},
{
'persist' : 'hidden width ordinal', 'id' : 'ident_type', 'label' : commonStrings.getString('staff.au_ident_type_label'), 'flex' : 1,