Daily updates from Odoo
Thursday, August 18, 2022
4 changes
Resolved issues and error corrections
This fix ensures that when a serialized product is repaired and extra parts are added, the related stock reservations and repair records are created at the right step. This helps avoid missing or incorrect part tracking during repairs, improving inventory accuracy and repair reliability.
Original PR description
The original issue is described in details in this PR https://github.com/odoo/enterprise/commit/5c83cef2de0dc22f4efc0d9d6fc903988ea111ba Due to the extension of the Repair module in this PR https://github.com/odoo/odoo/pull/97651 The creation of stock_move/stock_move_line of the parts is done in action_repair_confirm now So the fix mentioned in the first PR needs to be extended to this PR as well
This fix ensures parts are properly created and reserved when confirming repairs for products tracked by serial number. It helps repair orders flow correctly after recent repair process changes, reducing failed or incomplete repair operations.
Original PR description
The original issue is described in detail in this PR https://github.com/odoo/enterprise/commit/5c83cef2de0dc22f4efc0d9d6fc903988ea111ba Due to the extension of the Repair module in this PR https://github.com/odoo/odoo/pull/97651 The creation of stock_move/stock_move_line of the parts is done in action_repair_confirm now So the fix mentioned in the first PR needs to be extended to this PR as well
This fix ensures that when a serial-numbered product is repaired through the reserve-and-repair flow, the required replacement parts are properly created and included. This prevents missing parts during repair processing, helping service teams complete repairs accurately.
Original PR description
The original issue is described in detail in this commit https://github.com/odoo/enterprise/commit/5c83cef2de0dc22f4efc0d9d6fc903988ea111ba Due to the extension of the Repair module in this PR (Reserve and Repair) https://github.com/odoo/odoo/pull/97651 The creation of stock_move/stock_move_line of the parts is done in action_repair_confirm now So the fix mentioned in [this commit](https://github.com/odoo/enterprise/commit/5c83cef2de0dc22f4efc0d9d6fc903988ea111ba) needs to be extended to this PR as well
Code cleanup and technical improvements
Spreadsheet data loading was reorganized so internal data sources are simpler and better isolated. This should make spreadsheet lists, pivots, charts, filters, and side panels more reliable, with fewer loading glitches or temporary errors visible to users.