Wednesday, July 8, 2020
3 changes · master
Enhancements to existing features
The Account Properties section now remains visible consistently, making product category accounting settings easier to review. Only the price difference account is hidden when it is not relevant, reducing confusion while preserving access to important accounting fields.
Original PR description
Purpose ======= https://github.com/odoo/odoo/pull/52351 already improved the display by hiding some account properties if it wasn't really neeeded on manual inventory valuation. Specification ============= Keep the Account Properties section visible in any cases. The price difference account is the only field of the section which is only used in automated valuation. TaskID: 2232026 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
The mail module now includes a new asset bundle to support upcoming changes. This helps keep mail-related interface resources organized and ready for future improvements without changing day-to-day user workflows.
Original PR description
Needed to merge introducing new assets in 13.4 See task-2285691 See odoo/odoo#53410
The IoT module now relies on the standard framework-managed service instead of starting it manually during tests. This prevents early startup crashes and makes the IoT testing setup more reliable without changing end-user functionality.
Original PR description
This commit is the counterpart of odoo/odoo#53817. Without this commit, the IOT longpolling service was instantiated too soon, before services were deployed into the env, and it crashed (this service uses the localstorage service in init). Note that we shouldn't manually instantiate services (registering them to the serviceRegistry is the correct way to do).