Saturday, May 10, 2025
6 changes
3 changes
Resolved issues and error corrections
The leave request form now behaves more clearly for managers. Action buttons only appear after a leave request is saved, and available hours are shown when the selected time off type can deduct extra hours.
Original PR description
With this commit, some elements in leave's form view are fixed :
- The buttons are only shown when the leave is saved.
- The available hours are displayed when a time off type with deduct extra hours are selected.
task-4756706This update fixes an error that appeared when users opened the optional column menu in sub-task or blocked-by sections of field service tasks. It helps users manage task details without interruptions or unexpected crash screens.
Original PR description
**Steps to reproduce:** - Install `project` and `industry_fsm_sale` modules - Open any task with subtasks - Go to the Sub-tasks notebook or blocked-by notebook - Click the optional column dropdown **Issue:** - when clicking on optional column in subtasks/blockedby notebook a traceback occurs **Fix:** - Used `parent.has_template_ancestor` instead of `has_template_ancestor` to explicitly access the field from the parent record . task-4764758
The live chat helpdesk report query was adjusted to match recent backend changes. This helps keep reporting reliable without changing how users interact with the helpdesk live chat feature.
Original PR description
Group by has been removed as there is only one channel per row, other tables are now joined with lateral. Enterprise counter-part. https://github.com/odoo/odoo/pull/209254
2 changes
Resolved issues and error corrections
Attachment lists in Documents now have a slightly refined visual style. This makes attached files look cleaner and easier to scan for users without changing how the feature works.
1 change
Resolved issues and error corrections
This fixes an issue where some time off allocations could miss their latest relevant date value. It helps keep allocation information complete and reliable for HR users reviewing leave balances.
Original PR description
actual_lastcall was being false because it wasn't set in one case inside `add_lastcalls` method. This commit fixes this issue.
The SEPA Direct Debit payment provider view was cleaned up by removing an unused rule that could incorrectly hide the provider status. This helps ensure business users can consistently see the status of SEPA payment providers in the kanban view.
Original PR description
This commit remove un-used view which contain wrong condition to hide state field in kanban view of provider of Sepa direct debit and we don't want to hide state for Sepa provider. Related PR: https://github.com/odoo/upgrade/pull/7653