Monday, April 3, 2023
2 changes · master
Resolved issues and error corrections
This fix makes Odoo's internal test mock server behave more like the real system when creating records and applying default field values. It improves test reliability and helps prepare future changes to relational data handling, with no direct user-facing impact expected.
Original PR description
The mock server implementation does not exactly match the actual orm implementation. It is not really a big deal, but it makes the test suite less useful. In particular, the onchange call should return a value for all fields when we are creating a new record. Also, the default get implementation was not exactly correct. The motivation for this change is to prepare the future relational model refactoring. 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 Discuss sidebar once again shows the call icon after it was accidentally left out during a previous redesign. This restores an expected shortcut for users who start calls from Discuss, reducing confusion and keeping the communication flow smooth.
Original PR description
Following the discuss refactoring* the call icon in the discuss sidebar has not been reimplemented. This commit fixes this issue. \* https://github.com/odoo/odoo/pull/110188