Browse Source

Aug 22: [FIX] Bug Fixed 'pos_idle_time_session_lock'

pull/220/merge
Risvana Cybro 3 weeks ago
parent
commit
57a167f990
  1. 2
      pos_idle_time_session_lock/__manifest__.py
  2. 5
      pos_idle_time_session_lock/doc/RELEASE_NOTES.md
  3. 2
      pos_idle_time_session_lock/static/src/js/session_timer.js

2
pos_idle_time_session_lock/__manifest__.py

@ -21,7 +21,7 @@
############################################################################# #############################################################################
{ {
'name': "POS Idle Session Lock", 'name': "POS Idle Session Lock",
'version': '16.0.1.0.1', 'version': '16.0.1.0.2',
'category': 'Point of Sale', 'category': 'Point of Sale',
'summary': """The Module Allows the POS User to Set Screen Lock for POS 'summary': """The Module Allows the POS User to Set Screen Lock for POS
Screen""", Screen""",

5
pos_idle_time_session_lock/doc/RELEASE_NOTES.md

@ -9,3 +9,8 @@
#### Version 16.0.1.0.1 #### Version 16.0.1.0.1
#### UPDT #### UPDT
- Bug fix in PosTimerChrome class.Fixed an issue that occurred while loading the POS session. - Bug fix in PosTimerChrome class.Fixed an issue that occurred while loading the POS session.
#### 20.08.2025
#### Version 16.0.1.0.2
#### UPDT
- Bug fix in PosTimerChrome class.Fixed an issue that occurred when same employee tries to log in again after completing the time session.

2
pos_idle_time_session_lock/static/src/js/session_timer.js

@ -46,9 +46,11 @@ const PosTimerChrome = (Chrome) =>
clearInterval(x); clearInterval(x);
if (self.env.pos.config.module_pos_hr) { if (self.env.pos.config.module_pos_hr) {
self.showTempScreen('LoginScreen'); self.showTempScreen('LoginScreen');
location.reload();
} }
else{ else{
self.showTempScreen('LogoutScreen'); self.showTempScreen('LogoutScreen');
location.reload();
} }
} }
}, 1000); }, 1000);

Loading…
Cancel
Save