Openbravo Issue Tracking System - Retail Modules
View Issue Details
0044752Retail ModulesWeb POSpublic2020-08-05 08:092021-01-19 12:49
alostale 
alostale 
normaltrivialhave not tried
closedfixed 
5
 
RR20Q4 
No
0044752: do not use global scope in jest tests
Currently many jest tests are using the global scope, mainly to simulate OB object. This will not be allowed by Babel which will be required by 0044751 to support jest tests with JSX.
run tests in strict mode which does not allow global:

    ReferenceError: OB is not defined

       9 | /* global global */
      10 |
    > 11 | OB = {
         | ^
      12 | App: {
      13 | Class: {}
      14 | },

Use global object instead of global scope.
No tags attached.
related to feature request 0042177 closed jarmendariz Openbravo ERP Create infrastucture for javascript tests 
related to feature request 0045019 closed Retail Retail Modules run jest tests in strict mode 
related to defect 0045750 closed ranjith_qualiantech_com Retail Modules do not use global scope in jest tests (fix new cases) 
blocks feature request 0044751 new Retail Retail Modules replace enyo with react for UI framework 
Issue History
2020-08-05 08:09alostaleNew Issue
2020-08-05 08:09alostaleAssigned To => Retail
2020-08-05 08:09alostaleTriggers an Emergency Pack => No
2020-08-05 08:09alostaleAssigned ToRetail => alostale
2020-08-05 08:09alostaleRelationship addedblocks 0044751
2020-08-05 08:10alostaleRelationship addedrelated to 0042177
2020-08-05 08:19hgbotNote Added: 0121823
2020-08-05 08:31hgbotNote Added: 0121825
2020-08-05 08:35hgbotNote Added: 0121826
2020-08-05 09:21hgbotNote Added: 0121831
2020-08-05 09:21hgbotResolutionopen => fixed
2020-08-05 09:21hgbotStatusnew => closed
2020-08-05 09:21hgbotFixed in Version => PR20Q4
2020-08-05 09:21hgbotNote Added: 0121832
2020-08-05 09:21hgbotFixed in VersionPR20Q4 => RR20Q4
2020-08-05 09:21hgbotNote Added: 0121833
2020-08-05 09:21hgbotNote Added: 0121834
2020-08-05 09:22hgbotNote Added: 0121835
2020-08-05 09:22hgbotNote Added: 0121836
2020-08-05 12:48hgbotNote Added: 0121851
2020-08-24 14:48hgbotNote Added: 0122309
2020-08-24 14:49hgbotNote Added: 0122310
2020-08-24 14:49hgbotNote Added: 0122311
2020-08-24 14:49hgbotNote Added: 0122312
2020-08-24 14:50hgbotNote Added: 0122313
2020-08-24 14:50hgbotNote Added: 0122314
2020-08-24 14:51hgbotNote Added: 0122315
2020-08-24 14:51hgbotNote Added: 0122316
2020-08-25 07:05hgbotNote Added: 0122319
2020-08-25 07:05hgbotNote Added: 0122320
2020-08-25 07:06hgbotNote Added: 0122321
2020-08-25 07:06hgbotNote Added: 0122322
2020-08-25 07:06hgbotNote Added: 0122323
2020-08-25 07:06hgbotNote Added: 0122324
2020-08-25 07:07hgbotNote Added: 0122325
2020-08-25 07:07hgbotNote Added: 0122326
2020-08-25 07:07hgbotNote Added: 0122327
2020-08-25 07:07hgbotNote Added: 0122328
2020-08-25 07:07hgbotNote Added: 0122329
2020-08-25 07:07hgbotNote Added: 0122330
2020-08-25 07:08hgbotNote Added: 0122331
2020-08-25 07:08hgbotNote Added: 0122332
2020-08-25 07:08hgbotNote Added: 0122333
2020-08-25 07:08hgbotNote Added: 0122334
2020-08-25 12:39hgbotNote Added: 0122348
2020-08-25 12:40hgbotNote Added: 0122349
2020-08-25 12:41hgbotNote Added: 0122350
2020-08-25 12:41hgbotNote Added: 0122351
2020-08-25 12:42hgbotNote Added: 0122352
2020-09-09 16:03alostaleSteps to Reproduce Updatedbug_revision_view_page.php?rev_id=21666#r21666
2020-09-09 16:05hgbotNote Added: 0122886
2020-09-09 16:19alostaleRelationship addedrelated to 0045019
2021-01-19 12:49shuehnerIssue cloned0045750
2021-01-19 12:49shuehnerRelationship addedrelated to 0045750

Notes
(0121823)
hgbot   
2020-08-05 08:19   
Merge Request created: https://gitlab.com/openbravo/product/openbravo/-/merge_requests/118 [^]
(0121825)
hgbot   
2020-08-05 08:31   
Merge Request created: https://gitlab.com/openbravo/product/pmods/org.openbravo.retail.posterminal/-/merge_requests/44 [^]
(0121826)
hgbot   
2020-08-05 08:35   
Merge Request created: https://gitlab.com/openbravo/product/pmods/org.openbravo.mobile.core/-/merge_requests/43 [^]
(0121831)
hgbot   
2020-08-05 09:21   
Merge request merged: https://gitlab.com/openbravo/product/openbravo/-/merge_requests/118 [^]
(0121832)
hgbot   
2020-08-05 09:21   
Directly closing issue as related merge request is already approved.

Repository: https://gitlab.com/openbravo/product/openbravo [^]
Changeset: 7854a07bd4ae30dfa7c60133f8e18271465ce029
Author: Asier Lostalé <asier.lostale@openbravo.com>
Date: 2020-08-05T08:17:58+02:00
URL: https://gitlab.com/openbravo/product/openbravo/-/commit/7854a07bd4ae30dfa7c60133f8e18271465ce029 [^]

fixed ISSUE-44752: global scope used in jest test

Prevent using global scope in jest test by replacing its usage by global
object.

---
M modules/org.openbravo.client.application/web-test/ob-utilities-number.test.js
M modules/org.openbravo.client.application/web-test/ob-utilities-validUrl.test.js
M modules/org.openbravo.client.application/web/org.openbravo.client.application/js/utilities/ob-utilities-date.js
---
(0121833)
hgbot   
2020-08-05 09:21   
Directly closing issue as related merge request is already approved.

Repository: https://gitlab.com/openbravo/product/pmods/org.openbravo.mobile.core [^]
Changeset: 9d698e62ecc5ad5e8d2865da5ef8f2fa4c3b0cc9
Author: Asier Lostalé <asier.lostale@openbravo.com>
Date: 2020-08-05T08:32:58+02:00
URL: https://gitlab.com/openbravo/product/pmods/org.openbravo.mobile.core/-/commit/9d698e62ecc5ad5e8d2865da5ef8f2fa4c3b0cc9 [^]

fixed ISSUE-44752: global scope used in jest test

Prevent using global scope in jest test by replacing its usage by global
object.

---
M web-test/base/fake-redux.js
M web-test/base/ob-app.js
M web-test/externalbp/ebp-test-base.js
M web-test/model/application-state/PersistenceChangeListenerManager.test.js
M web-test/model/application-state/State.test.js
M web-test/model/application-state/StateAPI.test.js
M web-test/model/application-state/StatePersistence.functional.test.js
M web-test/model/application-state/StatePersistence.test.js
M web-test/model/business-object/messages/Messages.test.js
M web-test/model/business-object/terminal-log/SetupTerminalLog.js
M web-test/model/business-object/terminal-log/TerminalLog.test.js
M web-test/model/persistence/indexeddb/IndexedDBController.test.js
M web-test/model/synchronization-buffer/SynchronizationBuffer.test.js
M web-test/util/Approval.test.js
M web-test/util/ArrayUtils.test.js
M web-test/util/UUID.test.js
M web-test/view/ActionCanceledUIHandler.test.js
---
(0121834)
hgbot   
2020-08-05 09:21   
Merge request merged: https://gitlab.com/openbravo/product/pmods/org.openbravo.mobile.core/-/merge_requests/43 [^]
(0121835)
hgbot   
2020-08-05 09:22   
Directly closing issue as related merge request is already approved.

Repository: https://gitlab.com/openbravo/product/pmods/org.openbravo.retail.posterminal [^]
Changeset: e39d6441f3618c6eb99bec04e634ac701c3b179a
Author: Asier Lostalé <asier.lostale@openbravo.com>
Date: 2020-08-05T08:30:17+02:00
URL: https://gitlab.com/openbravo/product/pmods/org.openbravo.retail.posterminal/-/commit/e39d6441f3618c6eb99bec04e634ac701c3b179a [^]

fixed ISSUE-44752: global scope used in jest test

Prevent using global scope in jest test by replacing its usage by global
object.

---
M web-test/model/business-logic/pack/Pack.test.js
M web-test/model/business-logic/stock/StockChecker.test.js
M web-test/model/business-object/business-partner/SynchronizeBusinessPartner.test.js
M web-test/model/business-object/business-partner/SynchronizeBusinessPartnerLocation.test.js
M web-test/model/business-object/cashup/Cashup.test.js
M web-test/model/business-object/cashup/SetupCashup.js
M web-test/model/business-object/document-sequence/SetupDocumentSequence.js
M web-test/model/business-object/safebox/SynchronizeCountSafeBox.test.js
M web-test/model/business-object/ticket/AddApprovalsModelHook.test.js
M web-test/model/business-object/ticket/CalculateTotalsModelHook.test.js
M web-test/model/business-object/ticket/TicketUtils.test.js
M web-test/model/business-object/ticket/actions/AddByTotalPromotion.test.js
M web-test/model/business-object/ticket/actions/AddProduct-actionPreparation.test.js
M web-test/model/business-object/ticket/actions/AddProduct.test.js
M web-test/model/business-object/ticket/actions/DisplayTotal.test.js
M web-test/model/business-object/ticket/actions/Print.test.js
M web-test/model/business-object/ticket/actions/PrintLine.test.js
M web-test/model/business-object/ticket/actions/ReactivateQuotation.test.js
M web-test/model/business-object/ticket/actions/RemovePromotion.test.js
M web-test/model/business-object/ticket/actions/SetLinePrice-actionPreparation.test.js
M web-test/model/business-object/ticket/actions/SetLinePrice.test.js
M web-test/model/business-object/ticket/actions/SplitLine-actionPreparation.test.js
M web-test/model/business-object/ticket/actions/SplitLine.test.js
M web-test/model/synchronization-buffer/HardwareManagerEndpoint.test.js
---
(0121836)
hgbot   
2020-08-05 09:22   
Merge request merged: https://gitlab.com/openbravo/product/pmods/org.openbravo.retail.posterminal/-/merge_requests/44 [^]
(0121851)
hgbot   
2020-08-05 12:48   
Repository: https://gitlab.com/openbravo/product/pmods/org.openbravo.mobile.core [^]
Changeset: 87c13396b342d7d2265fdc152680976804a5ac26
Author: Asier Lostalé <asier.lostale@openbravo.com>
Date: 2020-08-05T12:47:27+02:00
URL: https://gitlab.com/openbravo/product/pmods/org.openbravo.mobile.core/-/commit/87c13396b342d7d2265fdc152680976804a5ac26 [^]

related to ISSUE-44752: fixed typo

---
M web-test/base/fake-redux.js
---
(0122309)
hgbot   
2020-08-24 14:48   
Merge Request created: https://gitlab.com/openbravo/product/pmods/org.openbravo.retail.giftcards/-/merge_requests/17 [^]
(0122310)
hgbot   
2020-08-24 14:49   
Merge Request created: https://gitlab.com/openbravo/product/pmods/org.openbravo.retail.discounts.combo/-/merge_requests/3 [^]
(0122311)
hgbot   
2020-08-24 14:49   
Merge Request created: https://gitlab.com/openbravo/product/pmods/org.openbravo.retail.scanreceipt/-/merge_requests/1 [^]
(0122312)
hgbot   
2020-08-24 14:49   
Merge Request created: https://gitlab.com/openbravo/product/pmods/org.openbravo.retail.stockvalidation/-/merge_requests/3 [^]
(0122313)
hgbot   
2020-08-24 14:50   
Merge Request created: https://gitlab.com/openbravo/product/pmods/org.openbravo.retail.sessions/-/merge_requests/8 [^]
(0122314)
hgbot   
2020-08-24 14:50   
Merge Request created: https://gitlab.com/openbravo/product/pmods/org.openbravo.retail.loyalty.programs/-/merge_requests/6 [^]
(0122315)
hgbot   
2020-08-24 14:51   
Merge Request created: https://gitlab.com/openbravo/product/pmods/org.openbravo.retail.posterminal/-/merge_requests/70 [^]
(0122316)
hgbot   
2020-08-24 14:51   
Merge Request created: https://gitlab.com/openbravo/product/pmods/org.openbravo.mobile.core/-/merge_requests/56 [^]
(0122319)
hgbot   
2020-08-25 07:05   
Directly closing issue as related merge request is already approved.

Repository: https://gitlab.com/openbravo/product/pmods/org.openbravo.retail.giftcards [^]
Changeset: 19d0508552ded519bf36b90358118794e4bd6fa4
Author: Prakash M <prakash@qualiantech.com>
Date: 2020-08-24T17:50:45+05:30
URL: https://gitlab.com/openbravo/product/pmods/org.openbravo.retail.giftcards/-/commit/19d0508552ded519bf36b90358118794e4bd6fa4 [^]

Fixed ISSUE-44752: Global scope used in jest test

Prevent using global scope in jest test by replacing its usage by global
object.

---
M web-test/model/business-object/cashup/SetupCashup.js
M web-test/model/business-object/ticket/actions/AddProductActionPreparations.test.js
---
(0122320)
hgbot   
2020-08-25 07:05   
Merge request merged: https://gitlab.com/openbravo/product/pmods/org.openbravo.retail.giftcards/-/merge_requests/17 [^]
(0122321)
hgbot   
2020-08-25 07:06   
Directly closing issue as related merge request is already approved.

Repository: https://gitlab.com/openbravo/product/pmods/org.openbravo.retail.discounts.combo [^]
Changeset: 90e983a90c81488e7cbcf0e395281eddd41b6007
Author: Prakash M <prakash@qualiantech.com>
Date: 2020-08-24T17:53:36+05:30
URL: https://gitlab.com/openbravo/product/pmods/org.openbravo.retail.discounts.combo/-/commit/90e983a90c81488e7cbcf0e395281eddd41b6007 [^]

Fixed ISSUE-44752: Global scope used in jest test

Prevent using global scope in jest test by replacing its usage by global
object.

---
M web-test/model/business-logic/pack/Combo.test.js
---
(0122322)
hgbot   
2020-08-25 07:06   
Merge request merged: https://gitlab.com/openbravo/product/pmods/org.openbravo.retail.discounts.combo/-/merge_requests/3 [^]
(0122323)
hgbot   
2020-08-25 07:06   
Merge request merged: https://gitlab.com/openbravo/product/pmods/org.openbravo.retail.scanreceipt/-/merge_requests/1 [^]
(0122324)
hgbot   
2020-08-25 07:06   
Directly closing issue as related merge request is already approved.

Repository: https://gitlab.com/openbravo/product/pmods/org.openbravo.retail.scanreceipt [^]
Changeset: 4f7c4653240e16e3c0f0f6b2c91a5e0845b51192
Author: Prakash M <prakash@qualiantech.com>
Date: 2020-08-24T17:51:30+05:30
URL: https://gitlab.com/openbravo/product/pmods/org.openbravo.retail.scanreceipt/-/commit/4f7c4653240e16e3c0f0f6b2c91a5e0845b51192 [^]

Fixed ISSUE-44752: Global scope used in jest test

Prevent using global scope in jest test by replacing its usage by global
object.

---
M web/org.openbravo.retail.scanreceipt/js/OBSRUtils.js
M web/org.openbravo.retail.scanreceipt/js/postBarcodeActionHook.js
---
(0122325)
hgbot   
2020-08-25 07:07   
Directly closing issue as related merge request is already approved.

Repository: https://gitlab.com/openbravo/product/pmods/org.openbravo.retail.stockvalidation [^]
Changeset: b5c253b446ac50f5d27a6a5e1dc93061729602c1
Author: Prakash M <prakash@qualiantech.com>
Date: 2020-08-24T17:51:01+05:30
URL: https://gitlab.com/openbravo/product/pmods/org.openbravo.retail.stockvalidation/-/commit/b5c253b446ac50f5d27a6a5e1dc93061729602c1 [^]

Fixed ISSUE-44752: Global scope used in jest test

Prevent using global scope in jest test by replacing its usage by global
object.

---
M web-test/model/business-object/ticket/actions/AddProductActionPreparations.test.js
---
(0122326)
hgbot   
2020-08-25 07:07   
Merge request merged: https://gitlab.com/openbravo/product/pmods/org.openbravo.retail.stockvalidation/-/merge_requests/3 [^]
(0122327)
hgbot   
2020-08-25 07:07   
Directly closing issue as related merge request is already approved.

Repository: https://gitlab.com/openbravo/product/pmods/org.openbravo.retail.sessions [^]
Changeset: 96f033c488229d504f0f7ec972a791ec9b7516d7
Author: Prakash M <prakash@qualiantech.com>
Date: 2020-08-24T18:06:31+05:30
URL: https://gitlab.com/openbravo/product/pmods/org.openbravo.retail.sessions/-/commit/96f033c488229d504f0f7ec972a791ec9b7516d7 [^]

Fixed ISSUE-44752: Global scope used in jest test

Prevent using global scope in jest test by replacing its usage by global
object.

---
M web-test/model/business-object/cashup/SetupCashup.js
---
(0122328)
hgbot   
2020-08-25 07:07   
Merge request merged: https://gitlab.com/openbravo/product/pmods/org.openbravo.retail.sessions/-/merge_requests/8 [^]
(0122329)
hgbot   
2020-08-25 07:07   
Directly closing issue as related merge request is already approved.

Repository: https://gitlab.com/openbravo/product/pmods/org.openbravo.retail.loyalty.programs [^]
Changeset: 6f6d81a7c498e41f64a5fee39b6a6306858b766d
Author: Prakash M <prakash@qualiantech.com>
Date: 2020-08-24T17:53:57+05:30
URL: https://gitlab.com/openbravo/product/pmods/org.openbravo.retail.loyalty.programs/-/commit/6f6d81a7c498e41f64a5fee39b6a6306858b766d [^]

Fixed ISSUE-44752: Global scope used in jest test

Prevent using global scope in jest test by replacing its usage by global
object.

---
M web-test/model/business-object/business-partner/SynchronizeLoyaltyBusinessPartner.test.js
M web-test/model/business-object/loyalty/SynchronizeLoyaltyCard.test.js
M web-test/model/business-object/loyalty/SynchronizeLoyaltyEarnedPoints.test.js
M web-test/model/business-object/loyalty/SynchronizeLoyaltySubscription.test.js
---
(0122330)
hgbot   
2020-08-25 07:07   
Merge request merged: https://gitlab.com/openbravo/product/pmods/org.openbravo.retail.loyalty.programs/-/merge_requests/6 [^]
(0122331)
hgbot   
2020-08-25 07:08   
Merge request merged: https://gitlab.com/openbravo/product/pmods/org.openbravo.retail.posterminal/-/merge_requests/70 [^]
(0122332)
hgbot   
2020-08-25 07:08   
Directly closing issue as related merge request is already approved.

Repository: https://gitlab.com/openbravo/product/pmods/org.openbravo.retail.posterminal [^]
Changeset: da044da1bd2271897d5ea9e620782f7bf09b119d
Author: Prakash M <prakash@qualiantech.com>
Date: 2020-08-24T17:55:15+05:30
URL: https://gitlab.com/openbravo/product/pmods/org.openbravo.retail.posterminal/-/commit/da044da1bd2271897d5ea9e620782f7bf09b119d [^]

Fixed ISSUE-44752: Global scope used in jest test

Prevent using global scope in jest test by replacing its usage by global
object.

---
M web-test/model/business-object/document-sequence/SetupDocumentSequenceAndTicket.js
M web-test/model/business-object/ticket-list/BringTicketToSession.test.js
M web-test/model/business-object/ticket-list/LoadTicket.test.js
M web-test/model/business-object/ticket-list/MarkIgnoreCheckIfIsActiveToPendingTickets.test.js
M web-test/model/business-object/ticket-list/TicketListUtils.test.js
---
(0122333)
hgbot   
2020-08-25 07:08   
Directly closing issue as related merge request is already approved.

Repository: https://gitlab.com/openbravo/product/pmods/org.openbravo.mobile.core [^]
Changeset: 2383a958f2e2536afb9a154d295e214a2b238017
Author: Prakash M <prakash@qualiantech.com>
Date: 2020-08-24T17:52:38+05:30
URL: https://gitlab.com/openbravo/product/pmods/org.openbravo.mobile.core/-/commit/2383a958f2e2536afb9a154d295e214a2b238017 [^]

Fixed ISSUE-44752: Global scope used in jest test

Prevent using global scope in jest test by replacing its usage by global
object.

---
M web-test/model/masterdata/masterdata-models.js
M web-test/model/persistence/indexeddb/IndexedDBController.test.js
---
(0122334)
hgbot   
2020-08-25 07:08   
Merge request merged: https://gitlab.com/openbravo/product/pmods/org.openbravo.mobile.core/-/merge_requests/56 [^]
(0122348)
hgbot   
2020-08-25 12:39   
Repository: https://gitlab.com/openbravo/product/pmods/org.openbravo.retail.giftcards [^]
Changeset: bcc967ab2daf5309d377dbcd21c676553a6e6e18
Author: Prakash M <prakash@qualiantech.com>
Date: 2020-08-25T16:07:39+05:30
URL: https://gitlab.com/openbravo/product/pmods/org.openbravo.retail.giftcards/-/commit/bcc967ab2daf5309d377dbcd21c676553a6e6e18 [^]

Related to ISSUE-44752: Removed Global scope from files other than test

---
M web-test/model/business-object/cashup/SetupCashup.js
---
(0122349)
hgbot   
2020-08-25 12:40   
Repository: https://gitlab.com/openbravo/product/pmods/org.openbravo.retail.scanreceipt [^]
Changeset: 4e177c159bc188bf8589e6b132d16f1885ca1bf3
Author: Prakash M <prakash@qualiantech.com>
Date: 2020-08-25T16:07:22+05:30
URL: https://gitlab.com/openbravo/product/pmods/org.openbravo.retail.scanreceipt/-/commit/4e177c159bc188bf8589e6b132d16f1885ca1bf3 [^]

Related to ISSUE-44752: Removed Global scope from files other than test

---
M web/org.openbravo.retail.scanreceipt/js/OBSRUtils.js
M web/org.openbravo.retail.scanreceipt/js/postBarcodeActionHook.js
---
(0122350)
hgbot   
2020-08-25 12:41   
Repository: https://gitlab.com/openbravo/product/pmods/org.openbravo.retail.sessions [^]
Changeset: 871a109c47eb1aff4c094dbcaf0f70662efb398f
Author: Prakash M <prakash@qualiantech.com>
Date: 2020-08-25T16:07:05+05:30
URL: https://gitlab.com/openbravo/product/pmods/org.openbravo.retail.sessions/-/commit/871a109c47eb1aff4c094dbcaf0f70662efb398f [^]

Related to ISSUE-44752: Removed Global scope from files other than test

---
M web-test/model/business-object/cashup/SetupCashup.js
---
(0122351)
hgbot   
2020-08-25 12:41   
Repository: https://gitlab.com/openbravo/product/pmods/org.openbravo.mobile.core [^]
Changeset: 42c5af4792ba0e70127b872dadd043638ff02297
Author: Prakash M <prakash@qualiantech.com>
Date: 2020-08-25T16:06:33+05:30
URL: https://gitlab.com/openbravo/product/pmods/org.openbravo.mobile.core/-/commit/42c5af4792ba0e70127b872dadd043638ff02297 [^]

Related to ISSUE-44752: Removed Global scope from files other than test

---
M web-test/model/masterdata/masterdata-models.js
---
(0122352)
hgbot   
2020-08-25 12:42   
Repository: https://gitlab.com/openbravo/product/pmods/org.openbravo.retail.posterminal [^]
Changeset: 6a6140abdda0a30a6feb317cef709b14c0f267c3
Author: Prakash M <prakash@qualiantech.com>
Date: 2020-08-25T16:06:11+05:30
URL: https://gitlab.com/openbravo/product/pmods/org.openbravo.retail.posterminal/-/commit/6a6140abdda0a30a6feb317cef709b14c0f267c3 [^]

Related to ISSUE-44752: Removed Global scope from files other than test

---
M web-test/model/business-object/document-sequence/SetupDocumentSequenceAndTicket.js
---
(0122886)
hgbot   
2020-09-09 16:05   
Repository: https://gitlab.com/openbravo/product/pmods/org.openbravo.retail.posterminal [^]
Changeset: 90ba54b653650a43f597114ece60b95b2735c83f
Author: Asier Lostalé <asier.lostale@openbravo.com>
Date: 2020-09-09T16:04:34+02:00
URL: https://gitlab.com/openbravo/product/pmods/org.openbravo.retail.posterminal/-/commit/90ba54b653650a43f597114ece60b95b2735c83f [^]

related to ISSUE-44752: fixed global OB variable

---
M web-test/model/business-object/document-sequence/SetupDocumentSequenceAndTicket.js
---