Daily updates from Odoo
Tuesday, December 12, 2023
4 changes
1 change
Resolved issues and error corrections
The Timesheets list view now displays the timer button correctly aligned with the hours. This small visual fix makes the timesheet interface cleaner and easier to read.
Original PR description
Steps: - install timesheets app - go to list view then - check timer button and it's time isn't aligned Issue: The timer button is not correctly aligned to the hours Cause : The problem occurs because the padding height difference is more ,so it is not aligned properly. Fix: By decreasing the padding height the problem got solved. task-3549279
3 changes
Resolved issues and error corrections
This update corrects the button display in the consolidation grid view when editing consolidations. The 'Add a column' button now appears when needed, and the 'Consolidation balance' button has been removed from the editing interface where it was not required. These changes improve the user experience by ensuring only relevant actions are available during consolidation editing.
Original PR description
The 'Add a column' button was missing when editing a consolidation. The 'Consolidation balance' button was not needed when editing a consolidation. opw-3587724 Forward-Port-Of: odoo/enterprise#51398
This update fixes a display issue in the Employee module where text in the planning statistics button was being cut off at the bottom. The fix applies styling adjustments to ensure all text displays properly without clipping, improving the user experience when viewing employee planning information.
Original PR description
Description of the issue/feature this PR addresses: In the Employee module's view, the text in the planning stat button is being clipped from the bottom. Fix: This PR introduces styling adjustments to prevent the text from being clipped. task:3468392 Forward-Port-Of: odoo/enterprise#46767
This update corrects the display order of fields in the project task list view. Previously, the start date was appearing before the task name due to a duplicate field reference in the view configuration. The fix removes the duplication and ensures fields display in the correct sequence, improving the user experience when viewing project tasks.
Original PR description
The issue of the start date appearing before the task name in the project task list view is caused by a duplication of the company_id in the list view definition so changed the xpath reference to company_id to user_ids task-3468392 Forward-Port-Of: odoo/enterprise#47401