Openbravo Issue Tracking System - POS2
View Issue Details
0048807POS2POSpublic2022-03-15 18:292022-04-01 15:17
gorka_gil 
AugustoMauch 
highminoralways
closedfixed 
5
 
 
No
0048807: While doing a close till, open count safe box, the clicks on safe boxes didn't work
Whith safe boxes,
while doing a close till without finish it, navigate to count safe box,
the clicks in the rows didn't work.

Looks like although the window show is the count window, the config is still from the close till window.
- configure to use safe boxes:
   - touchpoint type: use safe box
   - touchpoint type / payment method cash : defined in safe box
- login in pos and select any safe box
- open close till:
     - menu / till / close till
- open count safe box:
     - menu / store / count safe box

ERROR: if you do click in the safe boxes didn't navigate and gives an error in the console

If navigating directly to the count safe box it works well
No tags attached.
has duplicate defect 0048770 closed AugustoMauch POS2 [Safe boxes] Close Till after going to Count Safe Box is not possible and an error is thrown 
related to feature request 0048714 closed gorka_gil Retail Modules Add option to count safebox after remove it 
related to defect 0053916 closed sreehari POS2 POS2 - SafeBox - Issue when Count at till closure 
Issue History
2022-03-15 18:29gorka_gilNew Issue
2022-03-15 18:29gorka_gilAssigned To => Retail
2022-03-15 18:29gorka_gilTriggers an Emergency Pack => No
2022-03-15 18:30gorka_gilAssigned ToRetail => AugustoMauch
2022-03-18 15:05AugustoMauchStatusnew => scheduled
2022-03-21 18:31hgbotNote Added: 0135900
2022-03-23 16:35guilleaerRelationship addedhas duplicate 0048770
2022-03-23 16:35guilleaerRelationship deletedhas duplicate 0048770
2022-03-23 16:35guilleaerRelationship addedrelated to 0048770
2022-03-31 10:22hgbotResolutionopen => fixed
2022-03-31 10:22hgbotStatusscheduled => closed
2022-03-31 10:22hgbotNote Added: 0136202
2022-03-31 10:22hgbotNote Added: 0136203
2022-03-31 10:26AugustoMauchRelationship replacedhas duplicate 0048770
2022-03-31 20:00gorka_gilRelationship addedrelated to 0048714
2022-04-01 15:17hgbotNote Added: 0136276
2023-11-29 11:31sreehariRelationship addedrelated to 0053916

Notes
(0135900)
hgbot   
2022-03-21 18:31   
Merge Request created: https://gitlab.com/openbravo/product/pmods/org.openbravo.pos2/-/merge_requests/879 [^]
(0136202)
hgbot   
2022-03-31 10:22   
Directly closing issue as related merge request is already approved.

Repository: https://gitlab.com/openbravo/product/pmods/org.openbravo.pos2 [^]
Changeset: 0eab4deff3a2d41c66b824b4f579a8a949863467
Author: Augusto Mauch <augusto.mauch@openbravo.com>
Date: 31-03-2022 09:59:22
URL: https://gitlab.com/openbravo/product/pmods/org.openbravo.pos2/-/commit/0eab4deff3a2d41c66b824b4f579a8a949863467 [^]

Fixes ISSUE-48807: Use different keys for cashup and safebox count windows

Even though both windows are very similar (both of them are just a CashupProcess, with different configurations) we need to be able to differenciate them, otherwise React will reuse the same component instance for both windows.

To differenciate them I have just added a key property to CashupWindow.config.json, and I have created a separate configuration for the count safebox windows with a different key.

---
A web-jspack/org.openbravo.pos2/src/components/Cashup/CashupProcess/CountSafeboxWindow.config.json
M web-jspack/org.openbravo.pos2/src/components/Cashup/CashupProcess/CashupWindow.config.json
M web-jspack/org.openbravo.pos2/src/ob-init.js
---
(0136203)
hgbot   
2022-03-31 10:22   
Merge request merged: https://gitlab.com/openbravo/product/pmods/org.openbravo.pos2/-/merge_requests/879 [^]
(0136276)
hgbot   
2022-04-01 15:17   
Repository: https://gitlab.com/openbravo/product/pmods/org.openbravo.pos2 [^]
Changeset: 16cf266422e476ff7e1d7be0a253ed413d296596
Author: Gorka Gil <gorka.gil@openbravo.com>
Date: 31-03-2022 19:56:41
URL: https://gitlab.com/openbravo/product/pmods/org.openbravo.pos2/-/commit/16cf266422e476ff7e1d7be0a253ed413d296596 [^]

[simplifySafeboxFlow] Fix navigation from cashup to count

Since ISSUE-48807 is fixed, now is possible to navigate directly to count.

Also now is throw a specific error when we cancel the retry for count data,
that we capture and do logout

---
---