Thursday, April 30, 2020
4 changes · master
Enhancements to existing features
The website interface now uses consistent wording for the page publication status title. This reduces confusion for users managing website pages by aligning the status text with the main title.
Original PR description
Before this commit, the Title for the `"Page Published"` was `visible` and `Not visible`. With this commitment, we make it align with the main title. 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
Partner levels in the website CRM partner assignment area can now be arranged in a chosen order using a simple drag handle. This makes it easier for teams to control how partner tiers appear internally and on the website, keeping presentation aligned with business priorities.
Original PR description
…tner levels This commit attempts to display levels in the order of their sequence with a handle widget in sequence field to reorder them 1- Add a handle widget to the sequence field to reorder partner levels (in view_partner_grade_tree). 2- Update default order field (in "res.partner.grade") to order records by sequence. Task ID 2241632
The Events app has been cleaned up by removing an obsolete color field that was no longer used. This reduces unnecessary complexity behind the scenes without changing day-to-day event management behavior.
Original PR description
This commit will clean the code by removing the field 'color' from model 'event.event' since the field is not used/needed anymore. Task ID 2243918
This update cleans up internal handling in financial reporting so reports no longer rely on improper stored values. It supports future platform improvements in Odoo's data layer without changing day-to-day reporting behavior for users.
Original PR description
Task [2204376](https://www.odoo.com/web?#id=2204376&action=333&active_id=967&model=project.task&view_type=form&cids=1&menu_id=4720) Some class properties were used as instance properties when they shouldn't have been. Values that are not fields were used on empty recordsets, and this prevents a refactoring in the ORM.