Openbravo Issue Tracking System - Openbravo ERP
View Issue Details
0058265Openbravo ERPA. Platformpublic2025-03-17 20:282025-03-24 14:55
shuehner 
shuehner 
normalmajorhave not tried
closedfixed 
5
 
PR25Q2 
approved
No
Core
No
0058265: Install from obx file does not handle AD_MODULE_MERGE entries
Installing a new obx version from a file does not detect / handle ad_module_merge entries declared in the new version.

That means that the merged module does not get auto-uninstalled as it should be.

As a consequence the rest of the process has both the merge copy + the original module present and will fail with various errors

Rebuilding system will have lots of duplicate errors

Trying to install 2nd module from obx file will have in ‘verifyLocalChanges’ as that reads model from xml file which fails with seeing i.e. EM* columns twice



It looks like that error is present from day1 on adding support code for ad_module_merge.

https://gitlab.com/orisha-group/bu-commerce/openbravo/product/openbravo/-/commit/6a41faac00f680e468ff0b559605ac49ae9e0ef9#6fe7d4ebb49405382b6092f13a4a78c1b3cebab0_1247_1318 [^]

https://gitlab.com/orisha-group/bu-commerce/openbravo/product/openbravo/-/commit/d7658bec195f8e4e5af0764eaa63c490a61c3ebe#6fe7d4ebb49405382b6092f13a4a78c1b3cebab0_1319_1320 [^]

Problem seems to be the extra / in front of src-db.

When parsing file for obx of core/ad_module_id=0 as created by script packagedistribution/packager/obx file the AD_MODULE_MERGE.xml file inside the ZipInputStream does not match with that leading /
Have context with backoffice only (git master) + org.openbravo.retail.config
=> Pre org.openbravo.retail.config merge into core

Have local obx file ready with:
- higher ad_module.version
- ad_module_merge having and entry to declare merge of org.openbravo.retail.config

Install this obx file from local.

Expected:
- Message telling about uninstalled org.openbravo.retail.config module as it has been merged. After confirming this the module folder should be deleted
Actual:
- This declared is not detected and obx file is installed without deleting the org.openbravo.retail.config module folder
No tags attached.
depends on backport 0058283PR25Q1.1 closed shuehner Install from obx file does not handle AD_MODULE_MERGE entries 
depends on backport 0058284PR24Q4.2 closed shuehner Install from obx file does not handle AD_MODULE_MERGE entries 
Issue History
2025-03-17 20:28shuehnerNew Issue
2025-03-17 20:28shuehnerAssigned To => Triage Platform Base
2025-03-17 20:28shuehnerOBNetwork customer => No
2025-03-17 20:28shuehnerModules => Core
2025-03-17 20:28shuehnerTriggers an Emergency Pack => No
2025-03-17 20:34hgbotMerge Request Status => open
2025-03-17 20:34hgbotNote Added: 0176912
2025-03-18 18:45shuehnerAssigned ToTriage Platform Base => shuehner
2025-03-18 18:45shuehnerStatusnew => scheduled
2025-03-24 13:35hgbotMerge Request Statusopen => approved
2025-03-24 14:55hgbotNote Added: 0177179
2025-03-24 14:55hgbotResolutionopen => fixed
2025-03-24 14:55hgbotStatusscheduled => closed
2025-03-24 14:55hgbotFixed in Version => PR25Q2
2025-03-24 14:55hgbotNote Added: 0177180

Notes
(0176912)
hgbot   
2025-03-17 20:34   
Merge Request created: https://gitlab.com/orisha-group/bu-commerce/openbravo/product/openbravo/-/merge_requests/1595 [^]
(0177179)
hgbot   
2025-03-24 14:55   
Merge request merged: https://gitlab.com/orisha-group/bu-commerce/openbravo/product/openbravo/-/merge_requests/1595 [^]
(0177180)
hgbot   
2025-03-24 14:55   
Directly closing issue as related merge request is already approved.

Repository: https://gitlab.com/orisha-group/bu-commerce/openbravo/product/openbravo [^]
Changeset: ac4a1128347f92aca1d709eb5559e08096f84ab8
Author: Stefan Huehner <s.huehner@orisha.com>
Date: 24-03-2025 14:54:41
URL: https://gitlab.com/orisha-group/bu-commerce/openbravo/product/openbravo/-/commit/ac4a1128347f92aca1d709eb5559e08096f84ab8 [^]

Fixes ISSUE-58265: Fix reading module merges from local obx file.

When installing an update to a module from local obx file the code
to find and read AD_MODULE_MERGE.xml inside the obx file was using wrong
filename comparison with an extra leading / in front of the
src-db/database/sourcedata/AD_MODULE_MERGE.xml.
As the filename stores in the obx file don't have a leading / it didn't
find the file so never triggered handling of merged modules.

Remove the leading / to have the name comparison working (and be same as
done for the various other xml file like i.e. AD_MODULE_DBPREFIX in the
same function.

---
M src/org/openbravo/erpCommon/modules/ImportModule.java
---