Daily updates from Odoo
Saturday, May 16, 2026
4 changes · master
Resolved issues and error corrections
This update resolves a technical problem preventing the Account Asset module from properly updating. The issue stemmed from an outdated process that caused database errors and prevented users from accessing the system. This fix ensures the module updates correctly and reliably.
Original PR description
This commit fixes the account asset error when updating the module. The problem was the `account.depreciation.model.csv` was being loaded again and if there was a `running` asset, it causes an error that we can't update a depreciation model that has running asset. As a result gets the module stuck in the to upgrade state which means that on every request to the Odoo db it will attempt the module upgrade again, which will keep failing, rendering the database inaccessible. Bug introduced in https://github.com/odoo/enterprise/pull/110143. A new condition in the write is added to make sure that the module is not in `install_mode` to bypass the update condition. opw-6216476 Forward-Port-Of: odoo/enterprise#117434
This update fixes an issue where completion and refusal emails for signatures were incorrectly using the partner's email address instead of the signer's email. Now, emails are sent using the correct, validated email address, ensuring signers receive important notifications accurately.
Original PR description
Previously, completion and refusal emails were sent using the partner email directly, ignoring the computed email defined on the sign request item. The computed email includes validation rules and should be the main email for signer communication. This commit ensures that completion and refusal emails are sent using the computed signer email instead of the partner email. task-6148765 Forward-Port-Of: odoo/enterprise#117396 Forward-Port-Of: odoo/enterprise#114606
This update fixes a problem where demo data didn't correctly set the 'Device Installation and Maintenance' worksheet for Field Service products. Now, when demo data is loaded, the correct worksheet is automatically applied, ensuring accurate product information and setup.
Original PR description
Load product_product_demo.xml in the 'planning_field_service_sale_worksheet' module so that the `Device Installation and Maintenance` worksheet is correctly set in Field Service product when demo data is loaded, instead of using the default worksheet. Forward-Port-Of: odoo/enterprise#117407
This update resolves an issue where Discuss Avatar images weren't consistently displaying correctly across certain Odoo modules. The change standardizes how record properties are handled for DiscussAvatars, ensuring a more reliable and accurate display of avatars in the Enterprise suite. This improves the user experience for all users.
Original PR description
https://github.com/odoo/odoo/pull/264304