Thursday, April 13, 2023
5 changes · master
Enhancements to existing features
Advanced search and filtering tools were updated across Spreadsheet, Map, and Studio areas to stay aligned with the latest search behavior. Users should see smoother handling of complex filters, including clearer reset options when a filter cannot be supported.
Employee names are now shown more consistently across HR-related screens using the same avatar-style display. This makes it easier for users to recognize employees quickly and creates a more uniform experience across approvals, appraisals, payroll, referrals, and Belgian payroll workflows.
Original PR description
linked to pr https://github.com/odoo/odoo/pull/111817 https://www.odoo.com/web#id=3132728&menu_id=4720&cids=1&action=333&active_id=1251&model=project.task&view_type=form
The planning dialog now shows only time slots that match the roles assigned to the selected resource. This helps users find suitable planning options faster and reduces confusion from unrelated slots.
Original PR description
Before this commit plan dialog in planning gantt view show all the slots for any resources and it may cause problems to user because user has to find slots that are resource related. This commit add a domain in plan dialog to see slots that have role in resource roles this way user only see slots that are actually gonna usefull for resource. task-2888248
Users can now select a helpdesk ticket directly from the timesheet timer when the chosen project is linked to a helpdesk team. This makes it easier to track time against support work while keeping the interface focused by showing either task or ticket fields as appropriate.
Original PR description
Currently the timer can be sarted only on task and project from timer header component. In this comment, if the project has a link to the helpdesk team, the helpdesk ticket field will appear in the timer header component. If the helpdesk does not have access, the user will not see the helpdesk ticket. If project is selected then helpdesk ticket field will appear. Both task and helpdesk ticket fields will not appear simultaneously. task-2829389
This update makes many Odoo Enterprise apps more explicit about whether posted messages contain formatted content or plain text. It helps ensure message text is displayed safely and consistently across business workflows such as accounting, helpdesk, delivery, documents, HR, and appointments.
Original PR description
Enterprise part of odoo/odoo#111850 When using message_post, the body format must be explicitly specified. If html is expected, a Markup object should be used. If text is given, the content will be escaped.