Friday, March 1, 2024
2 changes · master
Resolved issues and error corrections
The Sendcloud product selection screen has been fixed after a recent change caused it to stop working correctly. This helps users choose the right delivery product again when preparing Sendcloud shipments, reducing disruption in shipping workflows.
Original PR description
The product selection widget view has been broken by recent changes. This update aims to rectify that and bring it back to goodness.
This fix restores correct budget-related totals when users group budget data in the interface. It ensures fields such as theoretical amounts remain available for grouped reporting, preventing missing or incorrect business figures in budget analysis.
Original PR description
Since https://github.com/odoo/odoo/pull/127353, we do a dryrun to see if a field is aggregable (_descrition_aggregator()). We use `_read_group_select` to do so, and it doesn't work the field doesn't have an aggregator for the webclient, and then it is not ask when we groupby. Because of this every direct override of _read_group for these fields won't be use by the webclient anymore. Fix them by overriding `_read_group_select` (and `_read_group_postprocess_aggregate` for some cases). https://github.com/odoo/odoo/pull/155585