Skip to content

Commit 7fe5c89

Browse files
committed
[IMP] util.modules: new hack to override load data mode
The new runtime option 'load_data_init' will be used for each package when loading package graph. It works like the previous package.init but more comprehensive and complete. Now if any directly or indirectly dependent module is configured 'load_data_init', the module will also be configured 'load_data_init' odoo#189000
1 parent e38e861 commit 7fe5c89

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

src/util/modules.py

+6-3
Original file line numberDiff line numberDiff line change
@@ -907,9 +907,12 @@ def _force_upgrade_of_fresh_module(cr, module, init, version):
907907
[version, module],
908908
)
909909
if init and cr.rowcount:
910-
# Force module in `init` mode beside its state is forced to `to upgrade`
911-
# See http://git.io/vnF7O
912-
odoo.tools.config["init"][module] = "oh yeah!"
910+
if version_gte("saas~18.1"):
911+
odoo.tools.config["load_data_init"][module] = "oh yeah!"
912+
else:
913+
# Force module in `init` mode beside its state is forced to `to upgrade`
914+
# See http://git.io/vnF7O
915+
odoo.tools.config["init"][module] = "oh yeah!"
913916

914917

915918
# for compatibility

0 commit comments

Comments
 (0)