Daily updates from Odoo
Sunday, October 19, 2025
3 changes · master
Resolved issues and error corrections
Salary package simulations now avoid creating unnecessary tracking entries when employee details are temporarily updated. This prevents incorrect or confusing change history values from appearing during simulations.
Original PR description
There was a tracking disable missing on a write on the employee model. This was causing some issues with the selection field tracking values. task-5155497 Forward-Port-Of: odoo/enterprise#96753
Tags in project sharing now use the same light visual style as the rest of the page. This fixes an inconsistent dark appearance, making shared project views look cleaner and more consistent for users.
Original PR description
Before this commit, the project sharing was using the dark style for tags even though the rest of the views are in light mode. Removing the tags_list.dark.scss file from the imported file in the manifest fixes this issue. task-5130176 Forward-Port-Of: odoo/enterprise#97406 Forward-Port-Of: odoo/enterprise#96751
The Documents app now counts Inbox items based on the actual internal folder rather than an inbox tag. This makes KPI figures more accurate and avoids test data cleanup issues that could disrupt automated checks.
Original PR description
After a discussion about what should be considered the inbox folder on earlier versions, it appears that the `kpi.provider:get_kpi_summary` method should return the count of documents in the folder having the external identifier `documents.documents_internal_folder`, instead of selecting the documents with the inbox tag. As some documents might be referenced by foreign keys in demo data, we also avoid to unlink the documents in the tests to avoid potential errors in the test suites. Runbot-build-error-id: [231787](https://runbot.odoo.com/odoo/runbot.build.error/231787) Task-id: [5062431](https://www.odoo.com/odoo/project.task/5062431) Forward-Port-Of: odoo/enterprise#97594 Forward-Port-Of: odoo/enterprise#95699