Tuesday, April 14, 2020
2 changes · master
Enhancements to existing features
This update removes redundant internal settings from CRM, Events, and related website modules. It keeps existing record-copying behavior the same while simplifying maintenance and reducing unnecessary configuration.
Original PR description
PURPOSE Editable stored fields are copy by default if their base field allow it (char, integer, ...).Purpose of this Commit is to remove unnecessary copy=True statement added when using stored editable fields. SPECIFICATIONS All unnecessary copy=True statements are removed from the crm, event and its dependent modules as Editable stored fields are copy by default if their base field allow it (char, integer, etc). PR #49029 Task 2225253 -- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr
The uninstall wizard for Studio now only shows a customization warning when actual Studio customizations exist. This avoids alarming users when removing Studio from a database where no customizations were made.
Original PR description
Currently, when you uninstall web_studio that time customization warning appear in wizard even if there is no customization made in the studio In this commit, We improve that Customization warning should only be displayed if you've actually done at least one customization - if all values are 0, there's no need to display it in the wizard. task - 2232923