Friday, July 5, 2024
4 changes · 17.0
Resolved issues and error corrections
The attendance status request now avoids loading extra employee and kiosk information that is not needed for the top-bar attendance view. This reduces unnecessary data transfer and should make the attendance indicator lighter and more efficient without changing the user experience.
Original PR description
Unecessary info is fetched with the route hr_attendance/attendance_user_data such as employee avatar and other kiosk related data which is not necessary for the systray. task-4036988
Clicking an employee card in the Attendance kanban view no longer triggers an error caused by a removed action. This keeps the attendance interface usable and avoids disruption for users managing employee attendance.
Original PR description
Version 17.0 steps to produce: - open 'hr_employees_view_kanban' in debug mode by searching in 'open view' - open hr attendance kanban view - click on kanban record - The method 'action_employee_kiosk_confirm' does not exist on the model 'hr.employee' issue: faced with a traceback cause: 'action_employee_kiosk_confirm' action was removed from hr.employee.public solution: remove 'action_employee_kiosk_confirm' action from 'hr_employees_view_kanban' view. task-4022620
This fix corrects a duplicate identifier in the Website settings page by giving the sitemap setting its own unique name. This helps avoid confusion or display issues when managing website configuration.
Original PR description
-Before this commit there are 2 setting with same id call 'robots_setting' -After this commit, rename the second one to 'sitemap_setting' Description of the issue/feature this PR addresses: Current behavior before PR: Desired behavior after PR is merged: --- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr
The Studio app icon now maintains a consistent size of 70 pixels, matching all other app icons in the interface. Previously, the icon would resize when the browser window was resized, creating an inconsistent user experience. This fix ensures the Studio icon behaves the same way as other application icons.
Original PR description
This commit fixes the size of studio icons when the window is resized. The w-75 class was applied, which caused the element to be resized instead of keeping the desired width of 70px, like other icons do. Now, the icon keep the same dimensions, like any other app icon. task-3998287