if (!check.route_to) { check.route_to = ' '; }
- if (document.getElementById('no_change_label')) {
- document.getElementById('no_change_label').setAttribute('value','');
- document.getElementById('no_change_label').setAttribute('hidden','true');
+ var no_change_label = document.getElementById('no_change_label');
+
+ if (no_change_label) {
+ no_change_label.setAttribute('value','');
+ no_change_label.setAttribute('hidden','true');
+ no_change_label.setAttribute('onclick','');
}
var msg = '';
if (check.ilsevent == 3 /* NO_CHANGE */) {
//msg = 'This item is already checked in.\n';
check.what_happened = 'no_change';
- if (document.getElementById('no_change_label')) {
- var m = document.getElementById('no_change_label').getAttribute('value');
+ if (no_change_label) {
+ var m = no_change_label.getAttribute('value');
var text = document.getElementById('circStrings').getFormattedString('staff.circ.utils.item_checked_in', [params.barcode]);
- document.getElementById('no_change_label').setAttribute('value', m + text + ' ');
- document.getElementById('no_change_label').setAttribute('hidden','false');
+ no_change_label.setAttribute('value', m + text + ' ');
+ no_change_label.setAttribute('hidden','false');
+ no_change_label.setAttribute('onclick','');
if (typeof params.info_blurb == 'function') {
params.info_blurb( text );
}
}
}
msg = '';
- if (document.getElementById('no_change_label')) {
- var m = document.getElementById('no_change_label').getAttribute('value');
+ if (no_change_label) {
+ var m = no_change_label.getAttribute('value');
var text = document.getElementById('circStrings').getFormattedString('staff.circ.utils.capture', [params.barcode]);
m += text + ' ';
- document.getElementById('no_change_label').setAttribute('value', m);
- document.getElementById('no_change_label').setAttribute('hidden','false');
+ no_change_label.setAttribute('value', m);
+ no_change_label.setAttribute('hidden','false');
+ no_change_label.setAttribute('onclick','');
if (typeof params.info_blurb == 'function') {
params.info_blurb( text );
}
sound.circ_bad();
}
}
- if (document.getElementById('no_change_label')) {
- var m = document.getElementById('no_change_label').getAttribute('value');
+ if (no_change_label) {
+ var m = no_change_label.getAttribute('value');
var needs_cat = document.getElementById('circStrings').getFormattedString('staff.circ.utils.needs_cataloging', [params.barcode]);
- document.getElementById('no_change_label').setAttribute('value', m + needs_cat + ' ');
- document.getElementById('no_change_label').setAttribute('hidden','false');
+ no_change_label.setAttribute('value', m + needs_cat + ' ');
+ no_change_label.setAttribute('hidden','false');
+ no_change_label.setAttribute('onclick','');
if (typeof params.info_blurb == 'function') {
params.info_blurb( needs_cat );
}
}
}
msg = '';
- if (document.getElementById('no_change_label')) {
- var m = document.getElementById('no_change_label').getAttribute('value');
+ if (no_change_label) {
+ var m = no_change_label.getAttribute('value');
var text = document.getElementById('circStrings').getFormattedString('staff.circ.utils.reservation_capture', [params.barcode]);
m += text + ' ';
- document.getElementById('no_change_label').setAttribute('value', m);
- document.getElementById('no_change_label').setAttribute('hidden','false');
+ no_change_label.setAttribute('value', m);
+ no_change_label.setAttribute('hidden','false');
+ no_change_label.setAttribute('onclick','');
if (typeof params.info_blurb == 'function') {
params.info_blurb( text );
}
alert(err_msg);
}
}
- if (document.getElementById('no_change_label')) {
- var m = document.getElementById('no_change_label').getAttribute('value');
+ if (no_change_label) {
+ var m = no_change_label.getAttribute('value');
var trans_msg = document.getElementById('circStrings').getFormattedString('staff.circ.utils.payload.in_transit', [params.barcode]);
- document.getElementById('no_change_label').setAttribute('value', m + trans_msg + ' ');
- document.getElementById('no_change_label').setAttribute('hidden','false');
+ no_change_label.setAttribute('value', m + trans_msg + ' ');
+ no_change_label.setAttribute('hidden','false');
+ no_change_label.setAttribute('onclick','');
if (typeof params.info_blurb == 'function') {
params.info_blurb( trans_msg );
}
// FIXME: add SFX and/or GFX
sound.circ_bad();
}
- if (document.getElementById('no_change_label')) {
- var m = document.getElementById('no_change_label').getAttribute('value');
- document.getElementById('no_change_label').setAttribute('value',m + mis_scan_msg + ' ');
- document.getElementById('no_change_label').setAttribute('hidden','false');
+ if (no_change_label) {
+ var m = no_change_label.getAttribute('value');
+ no_change_label.setAttribute('value',m + mis_scan_msg + ' ');
+ no_change_label.setAttribute('hidden','false');
+ no_change_label.setAttribute('onclick','');
if (typeof params.info_blurb == 'function') {
params.info_blurb( mis_scan_msg );
}
null,
document.getElementById('circStrings').getString('staff.circ.confirm.msg')
);
- if (document.getElementById('no_change_label')) {
- var m = document.getElementById('no_change_label').getAttribute('value');
- document.getElementById('no_change_label').setAttribute('value',m + mis_scan_msg + ' ');
- document.getElementById('no_change_label').setAttribute('hidden','false');
+ if (no_change_label) {
+ var m = no_change_label.getAttribute('value');
+ no_change_label.setAttribute('value',m + mis_scan_msg + ' ');
+ no_change_label.setAttribute('hidden','false');
+ no_change_label.setAttribute('onclick','');
if (typeof params.info_blurb == 'function') {
params.info_blurb( mis_scan_msg );
}