Saturday, February 14, 2026
4 changes · master
Enhancements to existing features
An outdated tip was removed from the Timesheets digest emails. This keeps automated business updates cleaner and avoids showing users irrelevant guidance.
Original PR description
Enterprise PR: https://github.com/odoo/enterprise/pull/105524 Upgrade PR: https://github.com/odoo/upgrade/pull/9364 task-5180327
The server action form has been adjusted to make key fields easier to see and distinguish. Added spacing and a clearer label improve usability for users configuring automated actions.
Original PR description
Add a padding between `evaluation_type` and other fields. Add label for the `update_path` field for better visibility. Task-5384414
Internal email-related performance tests were updated to match a recent document accounting change. This keeps automated checks accurate without changing user-facing behavior or adding real performance cost.
Original PR description
Following the change in the documents_account, we update the query count in test_mail because the override of mail_activity.action_done searches document (domain: [('request_activity_id', 'in', self.ids)]) which triggers _search_user_permission using the field is_company_allowed and the search on that field is overridden in documents_account with a clause in the domain as follow: Domain('id', 'in', self.env['documents.account.folder.setting'].sudo() ._search([]).select('folder_id'))
After recording the queries for those 3 tests with and without the PR changes, we have noticed that the only change is that sub query. So there is actually no additional queries but the tests count an additional one each.
Task-5363821This update improves the export of Spanish tax reports (modelo 347) to comply with recent regulations outlined in BOE-A-2025-25390. The changes address a requirement to include subsidy numbers, which are currently populated with six zeros as a placeholder. This ensures accurate reporting for Spanish tax filings.
Original PR description
reference: https://www.boe.es/buscar/doc.php?id=BOE-A-2025-25390 considering the modelo 347 As we do not have anything for the subsidy number, we just put 6 0s. opw-5926624 Forward-Port-Of: odoo/enterprise#107125