Daily updates from Odoo
Tuesday, February 27, 2024
2 changes
Resolved issues and error corrections
This fix resolves an issue where users became stuck in a "busy" state after a missed incoming call, preventing them from receiving subsequent calls. The problem occurred because the system wasn't properly clearing the previous call session when a caller cancelled their call. Now the system correctly clears these sessions, allowing users to receive new calls normally.
Original PR description
When an incoming call is cancelled by the remote party, the current session is not properly cleared, causing Odoo to reject all subsequent calls, assuming the user is busy, since the previous session is still present. This commit fixes the problem by properly clearing the current session when a CANCEL message is received.
This update fixes critical issues when creating tables in the web editor. Previously, selecting text and inserting a table would cause the application to crash and display unwanted toolbars. Now users can seamlessly insert tables with the table picker appearing cleanly without errors or extra interface elements.
Original PR description
**Current behaviour before commit:** When text is selected, 1. applying table command through powerbox throws error. 2. applying table command through powerbox makes toolbar appear along with tablepicker. **Desired behaviour after commit:** Now when text is selected, 1. applying table command through powerbox creates new table without any traceback. 2. applying table command through powerbox opens tablepicker only. task-3482230 --- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr Forward-Port-Of: odoo/odoo#155360 Forward-Port-Of: odoo/odoo#133414