-
Notifications
You must be signed in to change notification settings - Fork 78
[FIX] util/orm.py: fix custom_module_field_as_manual transient access
#8
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
Closed
erl-odoo
wants to merge
1
commit into
odoo:master
from
odoo-dev:master-custom-transient-models-access-erl
Closed
[FIX] util/orm.py: fix custom_module_field_as_manual transient access
#8
erl-odoo
wants to merge
1
commit into
odoo:master
from
odoo-dev:master-custom-transient-models-access-erl
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Contributor
Contributor
Author
|
@aj-fuentes |
aj-fuentes
requested changes
Nov 17, 2023
Contributor
|
upgradeci retry with always only base |
177b790 to
6591347
Compare
aj-fuentes
reviewed
Nov 17, 2023
6591347 to
95140d5
Compare
From Odoo version 14.0 transient models require access rights instead of implicit access (see related odoo/odoo#43306). This can lead to access errors in `custom_module_field_as_manual`, particularly in the upgrade TestCrawler, leading to blocked upgrades. To reproduce: - have a v13 db with a custom menu which opens a custom model's view, having a relational field (e.g. one2many) to a custom transient model, and have existing records - run the upgrade test prepare - upgrade to v14 - run the upgrade test check, the TestCrawler will fail with an AccessError To fix that, create temporary access rights for custom transient models while using the context manager. upg-1157201
95140d5 to
9dd61af
Compare
aj-fuentes
approved these changes
Nov 20, 2023
Contributor
aj-fuentes
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM @KangOl ?
Contributor
|
@robodoo r+ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
From Odoo version 14.0 transient models require access rights instead of
implicit access (see related odoo/odoo#43306). This can lead to access
errors in
custom_module_field_as_manual, particularly in the upgradeTestCrawler, leading to blocked upgrades.
To reproduce:
having a relational field (e.g. one2many) to a custom transient model,
and have existing records
AccessError
To fix that, create temporary access rights for custom transient models
while using the context manager.
upg-1157201