Wednesday, May 13, 2020
4 changes · master
Resolved issues and error corrections
Fixed an issue where resizing a column in one embedded list could unintentionally widen columns in another list on the same form. This keeps form layouts more predictable and prevents users from accidentally disrupting nearby tables.
Original PR description
Before this commit, on extending the column of the relational field table inside the group, all the column of the table extend rather than the selected column After this commit, only the selected column will expand rather than all columns expand. task-2189968
This fixes a case where default company-related selection rules were not applied correctly for company fields. It helps ensure users only see valid company choices consistently across the system.
Original PR description
The supported case of check_company on `res_company` model fields wasn't considered when specifying a default domain on `check_company=True` fields. NB: It is already correctly supported in the `_check_company()` method. -- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr
Corrects typos that caused errors when creating lead reveal rules from the website CRM lead feature. This helps ensure new lead generation rules can be saved reliably without interrupting users.
Original PR description
…putation Oversight of efafadc3ee2740407d6d6ff8082ab9e1f7d8e87f This commit fixes typos that raise an error when a crm.reveal.rule is created. Task 2250137 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
When a user creates a new Studio model with a name that already exists, the setup screen now closes and returns them to the previous model. This prevents users from getting stuck and lets them choose a unique name to continue their work.
Original PR description
Purpose: -Purpose of this commit is to close the model configurator on unique name model error and go to the previous model. Task-2250768