Daily updates from Odoo
Sunday, June 15, 2025
3 changes · 18.0
Code cleanup and technical improvements
The sales order code has been reorganized to make future changes easier and safer. This internal restructuring also adds test coverage for sales order email behavior, helping reduce the risk of regressions without changing the customer-facing sales workflow.
Miscellaneous changes
To reproduce ============ - Go to Documents app - schedule some activities on different documents for Mitchel Admin and Marc Demo - Go to the activity view, and set filter to Activities assigned to Mitchel Admin - only documents with activities assigned to Mitchel Admin should be shown - select one of them and move it to the trash -> the filter won't be applied anymore, and all documents with activities will be shown Problem ======= after archiving a document, the `load` method is c
Original PR description
To reproduce ============ - Go to Documents app - schedule some activities on different documents for Mitchel Admin and Marc Demo - Go to the activity view, and set filter to Activities assigned to Mitchel Admin - only documents with activities assigned to Mitchel Admin should be shown - select one of them and move it to the trash -> the filter won't be applied anymore, and all documents with activities will be shown Problem ======= after archiving a document, the `load` method is called without `searchParams` where `domain` should be defined, so an empty domain is used. Solution ======== in case domain is not defined, we should use the domain from `originalDomain` instead of an empty domain. opw-4354175 --- I confirm I have signed the CLA and read the PR guidelines at www.odoo.com/submit-pr Forward-Port-Of: odoo/odoo#191991
added test opw-4354175 Forward-Port-Of: odoo/enterprise#85978
Original PR description
added test opw-4354175 Forward-Port-Of: odoo/enterprise#85978