From 7e95793049e45cfc635513724df66fd5be82f5c1 Mon Sep 17 00:00:00 2001 From: Kevin Baptiste <kba@odoo.com> Date: Wed, 15 Dec 2021 09:37:19 +0000 Subject: [PATCH] [FIX] hr_attendance: disable notifications in Kiosk No notifications should be received whilst in Kiosk Mode. closes odoo/odoo#81453 Taskid: 2704624 Signed-off-by: Kevin Baptiste <kba@odoo.com> --- addons/hr_attendance/static/src/js/kiosk_mode.js | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/addons/hr_attendance/static/src/js/kiosk_mode.js b/addons/hr_attendance/static/src/js/kiosk_mode.js index 26c565ce8468..b076523cf90e 100644 --- a/addons/hr_attendance/static/src/js/kiosk_mode.js +++ b/addons/hr_attendance/static/src/js/kiosk_mode.js @@ -39,6 +39,12 @@ var KioskMode = AbstractAction.extend({ return Promise.all([def, this._super.apply(this, arguments)]); }, + on_attach_callback: function () { + // Stop polling to avoid notifications in kiosk mode + this.call('bus_service', 'stopPolling'); + $('body').find('.o_thread_window_close').click(); + }, + _onBarcodeScanned: function(barcode) { var self = this; core.bus.off('barcode_scanned', this, this._onBarcodeScanned); @@ -69,6 +75,7 @@ var KioskMode = AbstractAction.extend({ core.bus.off('barcode_scanned', this, this._onBarcodeScanned); clearInterval(this.clock_start); clearInterval(this._interval); + this.call('bus_service', 'startPolling'); this._super.apply(this, arguments); }, -- GitLab