Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[IMP] util.modules: new hack to override load data mode #176

Closed
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions src/util/modules.py
Original file line number Diff line number Diff line change
Expand Up @@ -895,6 +895,11 @@ def _force_upgrade_of_fresh_module(cr, module, init, version):
# Low level implementation
# Force module state to be in `to upgrade`.
# Needed for migration script execution. See http://git.io/vnF7f
if version_gte("saas~18.2") and init:
env_ = env(cr)
env_.registry._force_upgrade_scripts.add(module)
return

cr.execute(
"""
UPDATE ir_module_module
Expand Down