Daily updates from Odoo
Wednesday, January 16, 2019
3 changes · master
Resolved issues and error corrections
This change adds a validation check to prevent two many-to-many fields from being configured with the same underlying relationship settings. It helps avoid data confusion and hard-to-diagnose errors caused by inconsistent field definitions.
Original PR description
Prevent two many2many fields from using the same config (table, column1, column2). Fixes #24927.
This fixes an issue where inherited many-to-many fields could use the wrong relationship table, causing records to link incorrectly or conflict with parent models. The change improves data consistency for customizations and inherited models without changing user-facing workflows.
Original PR description
In Many2many, if the field is an inherited one, stored and new model name, if the relation table is not filled in or is the same as the parent model, it can cause conflicts as relation ids are not correct. See https://github.com/odoo/odoo/issues/24927 -- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr
This update fixes a typo in the Survey app. It is a minor correction that helps keep survey-related text or code clearer without changing business workflows.
Original PR description
Description of the issue/feature this PR addresses: Current behavior before PR: Desired behavior after PR is merged: -- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr