From: Galen Charlton Date: Mon, 11 Feb 2013 22:12:49 +0000 (-0500) Subject: LOCAL: remove checkbox for asynchronous checkin X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=df876f4cd2887848fa325431d255711e019c4a6f;p=evergreen%2Fequinox.git LOCAL: remove checkbox for asynchronous checkin Signed-off-by: Galen Charlton --- diff --git a/Open-ILS/xul/staff_client/server/circ/checkin.js b/Open-ILS/xul/staff_client/server/circ/checkin.js index d628861ea3..908d4e32f9 100644 --- a/Open-ILS/xul/staff_client/server/circ/checkin.js +++ b/Open-ILS/xul/staff_client/server/circ/checkin.js @@ -559,8 +559,6 @@ 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'; } var barcode = textbox.value; // Auto-complete the barcode, items only var barcode_object = xulG.get_barcode(window, 'asset', barcode); @@ -730,8 +728,6 @@ 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'; } if (!async) { this.controller.view.checkin_barcode_entry_textbox.disabled = false; this.controller.view.checkin_barcode_entry_textbox.select(); @@ -742,8 +738,6 @@ 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'; } 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 1dc7896812..af26e2688b 100644 --- a/Open-ILS/xul/staff_client/server/circ/checkin_overlay.xul +++ b/Open-ILS/xul/staff_client/server/circ/checkin_overlay.xul @@ -164,7 +164,6 @@ accesskey="&staff.checkin.print_receipt.accesskey;"/> -