From: Bill Erickson Date: Mon, 30 Nov 2015 22:55:05 +0000 (-0500) Subject: JBAS-567 Hide and ignore fast-entry checkin option X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=ed3b19c2553b473208353e1500b86274ad17a4aa;p=working%2FEvergreen.git JBAS-567 Hide and ignore fast-entry checkin option Signed-off-by: Bill Erickson --- diff --git a/Open-ILS/xul/staff_client/server/circ/checkin.js b/Open-ILS/xul/staff_client/server/circ/checkin.js index 999ed31725..c027cb7af1 100644 --- a/Open-ILS/xul/staff_client/server/circ/checkin.js +++ b/Open-ILS/xul/staff_client/server/circ/checkin.js @@ -589,8 +589,9 @@ circ.checkin.prototype = { try { var textbox = obj.controller.view.checkin_barcode_entry_textbox; var async = false; - var async_checkbox = document.getElementById('async_checkin'); - if (async_checkbox) { async = async_checkbox.getAttribute('checked') == 'true'; } + //KCLS jbas-567 + //var async_checkbox = document.getElementById('async_checkin'); + //if (async_checkbox) { async = async_checkbox.getAttribute('checked') == 'true'; } var barcode = textbox.value; if (async) { textbox.value = ''; textbox.focus(); @@ -766,8 +767,9 @@ circ.checkin.prototype = { 'on_checkin' : function() { var async = false; - var async_checkbox = document.getElementById('async_checkin'); - if (async_checkbox) { async = async_checkbox.getAttribute('checked') == 'true'; } + //KCLS jbas-567 + //var async_checkbox = document.getElementById('async_checkin'); + //if (async_checkbox) { async = async_checkbox.getAttribute('checked') == 'true'; } if (!async) { this.controller.view.checkin_barcode_entry_textbox.disabled = false; this.controller.view.checkin_barcode_entry_textbox.select(); @@ -778,8 +780,9 @@ circ.checkin.prototype = { 'on_failure' : function() { var async = false; - var async_checkbox = document.getElementById('async_checkin'); - if (async_checkbox) { async = async_checkbox.getAttribute('checked') == 'true'; } + //KCLS jbas-567 + //var async_checkbox = document.getElementById('async_checkin'); + //if (async_checkbox) { async = async_checkbox.getAttribute('checked') == 'true'; } if (!async) { this.controller.view.checkin_barcode_entry_textbox.disabled = false; this.controller.view.checkin_barcode_entry_textbox.select(); diff --git a/Open-ILS/xul/staff_client/server/circ/checkin_overlay.xul b/Open-ILS/xul/staff_client/server/circ/checkin_overlay.xul index 22731c73e7..b1cff15687 100644 --- a/Open-ILS/xul/staff_client/server/circ/checkin_overlay.xul +++ b/Open-ILS/xul/staff_client/server/circ/checkin_overlay.xul @@ -169,7 +169,9 @@ accesskey="&staff.checkin.print_receipt.accesskey;"/> +