Daily updates from Odoo
Friday, May 23, 2025
3 changes · master
Resolved issues and error corrections
The employee folder access settings now open correctly instead of showing an error. This lets administrators manage document permissions for employee folders without interruption.
Original PR description
Steps to reproduce: 1. Go to the configuration, then settings. 2. Click the ' Manage Employee Access to employee folder' link. 3. In hr section, it throws a traceback. Technical Reason: Invalid prop structure passed to DocumentsPermissionPanel. After this commit: No traceback will occur, and the permission panel will appear. Task-4781134
Fixed an issue where the appointment type could appear blank in the scheduling Gantt popover. This helps users quickly identify appointment details without missing information.
Original PR description
Introduced in odoo/odoo@f79b2edb614fd08b19b18beeb16be38743f637b2 , the value of m2o is now changed to an object. Therefore, we cannot use appointment_type_id[1] to access the display_name as we did before, but access it directly as read from the object. Task-4816434
This fixes several document management issues caused by a recent internal data format change. Users creating folders, sharing shortcuts, or splitting PDFs should now see the correct destination folder and avoid related errors.
Original PR description
Purpose ======= Fix the parent folder placeholder which is set to "Shared with me" instead of "My Drive" when creating a folder in My Drive. Fix the traceback appearing when trying to share a shortcut. Fix the PDF splitted parts which aren't saved in the same folder as the original PDF. Specification ============= Following the PR linked, in the RelationalModel the value of a many2one is now represented using an object instead of an array. While converting the use in the documents module, some occurrences have been missed resulting in strange front-end behavior. Fixing that by making sure all the many2one values are correctly accessed using an object key. related PR: odoo/enterprise#83203 Task-4762955