<!ENTITY staff.circ.checkin_overlay.do_not_alert_on_precat.label "Ignore Pre-cataloged Items">
<!ENTITY staff.circ.checkin_overlay.checkin_auto.label "Auto-Print Hold and Transit Slips">
<!ENTITY staff.circ.checkin_overlay.checkin_auto.accesskey "P">
+<!ENTITY staff.circ.checkin_overlay.checkin_modifiers_btn.label "Checkin Modifiers">
+<!ENTITY staff.circ.checkin_overlay.checkin_modifiers_btn.accesskey "M">
<!ENTITY staff.circ.renew_overlay.background_text "Renew Item">
<!ENTITY staff.circ.renew_overlay.sel_clip.label "Copy to Clipboard">
<!ENTITY staff.circ.renew_overlay.sel_clip.accesskey "C">
}
var backdate = obj.controller.view.checkin_effective_datepicker.value;
var auto_print = document.getElementById('checkin_auto');
- if (auto_print) auto_print = auto_print.checked;
+ if (auto_print) auto_print = auto_print.getAttribute('checked') == 'true';
JSAN.use('circ.util');
circ.util.checkin_via_barcode(
ses(),
accesskey="&staff.checkin.print_receipt.accesskey;"/>
<checkbox id="trim_list" label="&staff.circ.checkin_overlay.trim_list.label;" checked="true" oils_persist="checked"/>
<checkbox id="strict_barcode" label="&staff.circ.checkin_overlay.strict_barcode.label;" checked="false" oils_persist="checked"/>
- <checkbox id="do_not_alert_on_precat" label="&staff.circ.checkin_overlay.do_not_alert_on_precat.label;" oils_persist="checked"/>
<spacer id="pcii3s" flex="1"/>
- <checkbox id="checkin_auto" label="&staff.circ.checkin_overlay.checkin_auto.label;" accesskey="&staff.circ.checkin_overlay.checkin_auto.accesskey;" oils_persist="checked"/>
+ <button id="checkin_modifiers" oncommand="this.firstChild.showPopup();"
+ label="&staff.circ.checkin_overlay.checkin_modifiers_btn.label;"
+ accesskey="&staff.circ.checkin_overlay.checkin_modifiers_btn.accesskey;"
+ type="menu" allowevents="true">
+ <menupopup id="checkin_modifiers_popup">
+ <menuitem type="checkbox" id="do_not_alert_on_precat" label="&staff.circ.checkin_overlay.do_not_alert_on_precat.label;" oils_persist="checked"/>
+ <menuitem type="checkbox" id="checkin_auto" label="&staff.circ.checkin_overlay.checkin_auto.label;" accesskey="&staff.circ.checkin_overlay.checkin_auto.accesskey;" oils_persist="checked"/>
+ </menupopup>
+ </button>
</hbox>
</overlay>
print_data.route_to;
if (document.getElementById('do_not_alert_on_precat')) {
var x = document.getElementById('do_not_alert_on_precat');
- if (! x.checked) {
+ if (x.getAttribute('checked') != 'true') {
print_data.route_to_msg = document.getElementById('circStrings').getFormattedString('staff.circ.utils.route_to.msg', [check.route_to]);
msg += print_data.route_to_msg;
}