From: Josh Stompro Date: Fri, 13 Sep 2019 20:02:36 +0000 (-0500) Subject: LP#1555791 - Hide Print List from checkout screen X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=feb711367f733c7e01a04294c3f9bb2a476f857a;p=evergreen%2Fpines.git LP#1555791 - Hide Print List from checkout screen Hide the print list button from the checkout screen so customers don't learn to use that instead of logout. Signed-off-by: Josh Stompro Signed-off-by: Terran McCanna Signed-off-by: Galen Charlton --- diff --git a/Open-ILS/web/js/ui/default/circ/selfcheck/selfcheck.js b/Open-ILS/web/js/ui/default/circ/selfcheck/selfcheck.js index 4b119f467c..8a614b0e54 100644 --- a/Open-ILS/web/js/ui/default/circ/selfcheck/selfcheck.js +++ b/Open-ILS/web/js/ui/default/circ/selfcheck/selfcheck.js @@ -568,6 +568,7 @@ SelfCheckManager.prototype.updateScanBox = function(args) { */ SelfCheckManager.prototype.drawCircPage = function() { + openils.Util.hide('oils-selfck-print-list-link'); openils.Util.show('oils-selfck-bottom-div'); openils.Util.show('oils-selfck-circ-tbody', 'table-row-group'); this.goToTab('checkout'); @@ -628,7 +629,7 @@ SelfCheckManager.prototype.updateFinesSummary = function() { SelfCheckManager.prototype.drawItemsOutPage = function() { openils.Util.hide('oils-selfck-circ-tbody'); - + openils.Util.show('oils-selfck-print-list-link'); this.goToTab('items_out'); while(this.itemsOutTbody.childNodes[0]) @@ -795,7 +796,7 @@ SelfCheckManager.prototype.drawHoldsPage = function() { // TODO add option to hid scanBox // this.updateScanBox(...) - + openils.Util.show('oils-selfck-print-list-link'); this.goToTab('holds'); this.holdTbody = dojo.byId('oils-selfck-hold-tbody'); @@ -885,6 +886,7 @@ SelfCheckManager.prototype.drawFinesPage = function() { // TODO add option to hid scanBox // this.updateScanBox(...) + openils.Util.show('oils-selfck-print-list-link'); this.goToTab('fines'); progressDialog.show(true);