Thursday, January 2, 2025
4 changes · master
Enhancements to existing features
Product and category cards in Point of Sale now display text more neatly when no image is available. This improves the checkout screen’s readability and gives staff a more consistent browsing experience.
Original PR description
Following this commit : ==== - When a product does not have an image then the product quantity is not aligned properly in the product card due to the bigger heading tag which is been handled now. - Category name is also aligned to center when category does not have image associated with it. task-4432493
The mail composer code was simplified by removing an unused piece of logic that no longer appears in the interface. This reduces maintenance overhead without changing how users send messages.
Original PR description
Since odoo#186084, the `hasSendButtonNonEditing` getter has been removed from the composer template. This commit removes that getter, as it's now dead code. Enterprise PR: odoo/enterprise#76335
Removed an unused piece of WhatsApp messaging code that was left over after a related interface change. This has no expected change for users, but keeps the codebase simpler and easier to maintain.
Original PR description
Since odoo/odoo#186084, the `hasSendButtonNonEditing` getter has been removed from the composer template. This commit removes that getter, as it's now dead code. Related to odoo/odoo#192103
The Field Service Tasks Analysis report was adjusted to match recent changes that removed an inactive-task filter. This keeps reporting views working correctly without requiring broader changes to field service or task analysis reports.
Original PR description
- Removed the inactive filter in the Tasks Analysis report, so we need to update the xpath accordingly. Technical: - If the `inactive` filter is added in the `project_task_view_search_fsm_base` view, it will require the removal of both the Task Analysis report and the FSM report. Hence, we should not include the `inactive` filter in the `project_task_view_search_fsm_base`. Related : https://github.com/odoo/odoo/pull/175518 task-4037091