Daily updates from Odoo
Saturday, March 21, 2026
5 changes
1 change
Enhancements to existing features
This update improves the way users can manage databases by adding a filter to view databases associated with their accounts. It also fixes an issue where the user invitation wizard wouldn't correctly identify the project, and adds logging to track API calls for better monitoring. These changes ensure users have a clearer view of their database access and improve system reliability.
Original PR description
### [FIX] databases: fix invite user wizard when no users in list When there was no users in the list, the invite users wizard was failing to find the project on which the new users shall be invited. With this commit, the wizard is initialized with the active_id instead of self.project_id, which is always set in the databases settings form view. ### [IMP] databases: add filter on database users Add a filter on the databases list view to see all the databases that contain a given user. Task-id: [5945293](https://www.odoo.com/odoo/project.task/5945293) Forward-Port-Of: odoo/enterprise#111549 Forward-Port-Of: odoo/enterprise#108346
1 change
Enhancements to existing features
This update enhances database user management by adding a filter to easily identify databases associated with a user. Additionally, logging has been implemented for API calls to track database activity and synchronization processes have been refined for improved user experience and data accuracy.
Original PR description
### [FIX] databases: fix invite user wizard when no users in list When there was no users in the list, the invite users wizard was failing to find the project on which the new users shall be invited. With this commit, the wizard is initialized with the active_id instead of self.project_id, which is always set in the databases settings form view. ### [IMP] databases: add filter on database users Add a filter on the databases list view to see all the databases that contain a given user. Task-id: [5945293](https://www.odoo.com/odoo/project.task/5945293) Forward-Port-Of: odoo/enterprise#108346
1 change
Enhancements to existing features
This update adds a new filter to the database management interface, allowing users to easily identify and manage the databases they have access to. Previously, users couldn't easily see which databases they were connected to, leading to potential confusion and inefficiencies. This enhancement improves database organization and simplifies user access management.
Original PR description
### [FIX] databases: fix invite user wizard when no users in list When there was no users in the list, the invite users wizard was failing to find the project on which the new users shall be invited. With this commit, the wizard is initialized with the active_id instead of self.project_id, which is always set in the databases settings form view. ### [IMP] databases: add filter on database users Add a filter on the databases list view to see all the databases that contain a given user. Task-id: [5945293](https://www.odoo.com/odoo/project.task/5945293) Forward-Port-Of: odoo/enterprise#111549 Forward-Port-Of: odoo/enterprise#108346
2 changes
Enhancements to existing features
This update enhances database user management by adding a filter to easily identify databases a user belongs to, and by implementing logging for API calls to track database activity. It also corrects a previous issue where the invite user wizard failed to find the correct project and ensures current user databases are synchronized first.
Original PR description
### [FIX] databases: fix invite user wizard when no users in list When there was no users in the list, the invite users wizard was failing to find the project on which the new users shall be invited. With this commit, the wizard is initialized with the active_id instead of self.project_id, which is always set in the databases settings form view. ### [IMP] databases: add filter on database users Add a filter on the databases list view to see all the databases that contain a given user. Task-id: [5945293](https://www.odoo.com/odoo/project.task/5945293)
This update introduces a new system that allows other Odoo modules to adjust timesheet values directly within the timesheet wizard. This improves flexibility and accuracy by enabling automated updates based on related activities. It builds upon previous work to enhance the timesheet management process.
Original PR description
Add a hook in helpdesk_timesheet timer wizard for other modules to modify timesheet values. Forward-Port-Of: odoo/enterprise#107441 Forward-Port-Of: odoo/enterprise#107301