Wednesday, September 2, 2020
3 changes · master
Enhancements to existing features
The help message in Discuss now only mentions canned response shortcuts when Live Chat is installed, where that feature is actually available. This avoids confusing users with guidance for a capability they may not have access to.
Original PR description
PURPOSE When typing the /help command in discuss, a helper message that is mentioning the shortcut for canned responses is displayed. The issue is that canned responses are available to the users after 'im_livechat' module installation. SPECIFICATION Display the "Type :shortcut to insert canned responses in your message." part in the helper when livechat is installed. LINKS Task-2264981 PR https://github.com/odoo/odoo/pull/52600 -- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr
This update cleans up outdated and redundant field settings across several Odoo modules, making the codebase easier to maintain and less error-prone. It also ensures report fields are not editable where changes would have no real effect, reducing confusion for users and implementers.
Original PR description
* `_depends` model attribute isn't supported anymore * SQL report fields should all be `readonly` to avoid modifications without any impact * `required=False` should only be specified on fields where it really has an impact, for clearer fields declaration (and better examples when copy/pasting code from one place to another :D). -- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr
This update removes unnecessary field configuration across several enterprise modules, aligning them with the main Odoo codebase. The change reduces maintenance complexity without changing day-to-day business workflows.
Original PR description
Enterprise counterpart of https://github.com/odoo/odoo/pull/43825 .