Thursday, September 11, 2025
5 changes · master
Enhancements to existing features
The system's master release identifier has been updated to 19.1 alpha. This helps align upcoming development, testing, and release planning around the next product version.
This update makes the Point of Sale ticket screen easier to customize and extend in related implementations. It supports future or enterprise-specific adjustments with minimal impact on day-to-day POS users.
Original PR description
See odoo/enterprise#89749
Live chat handoff logic is being centralized so both chatbots and future AI assistants can transfer conversations to human operators consistently. This helps ensure conversations are assigned, renamed, pinned, and tracked correctly when a customer needs human support.
Original PR description
This commit prepares the ground for the introduction of the AI livechat bridge. The chat bot already forwards customer to human agents, but this logic is encapsulated in the `_process_step_forward_operator` method. AI bots also need to forward conversations to human operators. When doing so, several steps need to be repeated such as creating the new member with the correct live chat member type, renaming the channel, updating the live chat failure state, pinning the chat on the operator side... This commit introduces the `_foward_human_agent` on the discuss channel model so that it can be used by the AI livechat module. part of task-4825509 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 website editor’s text highlight effect choices were updated to remove a duplicate underline option already available elsewhere. Older unused code was also removed, helping keep the editor simpler and easier to maintain.
Original PR description
The goal of this PR is to add some updates to the text highlight effects list and remove some dead code used in older text highlight versions. task-3285817
Kitchen display screens now show stage names only when viewing all stages, reducing repeated information on individual stage views. Pending course cards now use a warning-style label, making it easier for staff to spot items that still need attention.
Original PR description
Before this commit: - Stage names were visible even when the selected stage matched the order’s stage. - Preparation cards for pending courses displayed `Pending` as a normal label. After this commit: - Stage names are now visible only when the `All` stage is selected. - Pending course preparation cards now display `Pending` as a warning label. Related: - Community: https://github.com/odoo/odoo/pull/223568 task-4985324