Daily updates from Odoo
Tuesday, July 21, 2026
2 changes
Enhancements to existing features
The planning and point-of-sale payment integration has been consolidated into the main planning POS module. This removes a separate bridge component because the main module already depends on online payments, making maintenance simpler without changing expected business workflows.
Original PR description
Since `pos_sale_planning` depends directly on `pos_online_payment`, this commit removes the bridge module `pos_sale_planning_online_payment` and merges its logic into `pos_sale_planning`. Task-6128503 Related PRs: - Community: https://github.com/odoo/odoo/pull/264942 - Upgrade: https://github.com/odoo/upgrade/pull/10659
The Timesheets print option is now hidden on helpdesk tickets that have no logged timesheet entries. This prevents users from accidentally generating blank PDFs and keeps the ticket actions menu more relevant.
Original PR description
Before this PR --- - The "Timesheets" print action was visible in the gear menu of helpdesk tickets even when no timesheet entries were logged on the ticket. - Clicking the action generated an empty timesheet PDF. After this PR --- - The "Timesheets" print action is now hidden on helpdesk tickets when no timesheet entries are linked (timesheet_ids is empty). - Empty timesheet PDFs can no longer be triggered from the ticket view. task-5361456