Daily updates from Odoo
Monday, January 26, 2026
3 changes
Features or functions removed from Odoo
This pull request removes a no-longer-used function within the Odoo accounting module. This change improves code cleanliness and reduces potential maintenance overhead. It’s a routine update to ensure the system remains efficient.
Original PR description
This method is no longer used. reference PR: https://github.com/odoo/odoo/pull/244398 --- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr
This pull request removes an outdated and unused method within the Odoo accounting module. This change improves code cleanliness and reduces potential maintenance overhead. It doesn't impact any business processes.
Original PR description
This method is no longer used. reference PR: https://github.com/odoo/odoo/pull/244398 --- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr
This update removes an outdated field used to track live chat operators, streamlining the system. Previously, this information was often inaccurate and could be reliably obtained from channel history. This change improves data accuracy and simplifies the live chat process.
Original PR description
*: ai_crm_livechat,website_helpdesk_livechat The `livechat_operator_id` field was used while not being completely accurate. Indeed, this field was updated only once when changing from chatbot to a real agent. On top of that, all this information can be reliably derived from the `livechat_channel_member_history`. This commit tries to remove this field and make use of other ways to find the right information depending on what is needed. task-4854887 See odoo/odoo#240778