Openbravo Issue Tracking System - POS2
View Issue Details
0052430POS2Corepublic2022-09-27 18:082023-06-05 11:37
adrianromero 
meriem_azaf 
normalmajorhave not tried
closedfixed 
5
 
23Q1.323Q1.3 
No
0052430: OnLoginActions do not allow to display UI
OnLoginActions are asynchronous and in cases like Fiscalization events and other events it is required to display UI dialogs. But this UI never appears and the cashier cannot interact with it because it is rendered but behind the loading panel
Register the following login action and verify the ask confirmation expression is reached but the console log expression is never reached and the application never ends the login action because there is a dialog behind the loading panel the cashier cannot interact with it. See the screenshots attached.

import OB from 'org.openbravo.core2/src/core/OB';
import OnLoginActions from 'org.openbravo.core2/src/core/authentication/OnLoginActions';
import './assets/style/main.scss';

export async function register() {
  OnLoginActions.registerAction(OB.EVTFIS.fiscalizationLogin);

  OnLoginActions.registerAction(async () => {
    await OB.App.View.DialogUIHandler.askConfirmation({
      title: 'Login dialog title',
      message: 'message',
      hideCancel: true
    });
    console.log('End login action.');
  });
}

export async function init() {
  // Nothing
}
The loading panel should not be in top of all the UI it should only replace the POS application. This way dialogs and modals can be rendered on top of the loading panel.

Loading Screen component has a z-index of 2000 to be on top of all other material UI components according the change comment: https://gitlab.com/openbravo/product/pmods/org.openbravo.core2/-/commit/ec4dd5ede9bbd089d3508bbd5c83a4f35c3222cf [^] This is OK fdr common components but not for modals, snackbars or tooltips See z-index for material UI components: https://mui.com/material-ui/customization/z-index/ [^]

The proposal is to change the z-index to 1250 for the Loading Screen component to be on top of regular material ui components but not for modals, snackbars or tooltips. The proposed change fixes this issue:

diff --git a/web-jspack/org.openbravo.core2/src/components/LoadingScreen/LoadingScreen.scss b/web-jspack/org.openbravo.core2/src/components/LoadingScreen/LoadingScreen.scss
index c30838ef..6fe19787 100644
--- a/web-jspack/org.openbravo.core2/src/components/LoadingScreen/LoadingScreen.scss
+++ b/web-jspack/org.openbravo.core2/src/components/LoadingScreen/LoadingScreen.scss
@@ -14,7 +14,7 @@
 
 .obc2LoadingScreen-container .obc2LoadingScreen {
   position: absolute;
- z-index: 2000; /* This screen has to be above any other element */
+ z-index: 1250; /* This screen has to be above any other element but not modals, with z-index: 1300 */
   display: grid;
   align-items: center;
   justify-items: center;
No tags attached.
blocks defect 0050357 closed meriem_azaf OnLoginActions do not allow to display UI 
Issue History
2023-05-12 09:46AugustoMauchTypedefect => backport
2023-05-12 09:46AugustoMauchTarget Version => 23Q1.3
2023-05-15 18:00hgbotNote Added: 0149722
2023-06-05 11:37hgbotResolutionopen => fixed
2023-06-05 11:37hgbotStatusscheduled => closed
2023-06-05 11:37hgbotNote Added: 0150732
2023-06-05 11:37hgbotFixed in Version => 23Q1.3
2023-06-05 11:37hgbotNote Added: 0150733

Notes
(0149722)
hgbot   
2023-05-15 18:00   
Merge Request created: https://gitlab.com/openbravo/product/pmods/org.openbravo.core2/-/merge_requests/1099 [^]
(0150732)
hgbot   
2023-06-05 11:37   
Merge request merged: https://gitlab.com/openbravo/product/pmods/org.openbravo.core2/-/merge_requests/1099 [^]
(0150733)
hgbot   
2023-06-05 11:37   
Directly closing issue as related merge request is already approved.

Repository: https://gitlab.com/openbravo/product/pmods/org.openbravo.core2 [^]
Changeset: fc681dac77f5edf37fe4c90b6e046a4f82c6c2ba
Author: Augusto Mauch <augusto.mauch@openbravo.com>
Date: 05-06-2023 11:36:17
URL: https://gitlab.com/openbravo/product/pmods/org.openbravo.core2/-/commit/fc681dac77f5edf37fe4c90b6e046a4f82c6c2ba [^]

Fixes ISSUE-52430: Updates loading screen z-index so that it is below modal dialogs

The problem was that the current z-index was so high that modal dialogs where displayed below the loading screen.

The z-index value has been updated to 1250 so that it is above the normal components, but below modal dialogs. We
need modal dialogs to be above the loading screen because we sometimes need to use them to display error information
or to request info or confirmations to the user

---
M web-jspack/org.openbravo.core2/src/components/LoadingScreen/LoadingScreen.scss
---