Tuesday, April 1, 2025
2 changes · saas-18.1
Resolved issues and error corrections
The inventory quantity list and kanban views no longer use an unnecessary unit-of-measure display widget. This simplifies the interface slightly without changing business workflows or data.
Original PR description
Remove the use of this widget in quant list and kanban views where it is useless. Enterprise PR: odoo/enterprise#82640
The Barcode app no longer crashes when users reopen a receipt line on mobile after adding a product with existing stock. The change removes an unnecessary unit-of-measure control from a read-only mobile stock display, improving reliability for warehouse operations.
Original PR description
Issue ===== When displaying the Barcode move line form view on mobile, a traceback can happen. How to reproduce ================ - Open the Barcode app on a mobile device (or use devtools to simulate a mobile device;) - Create a new receipt; - Click on "Add Product" and select a product with an existing quant; - Confirm then re-open the move line's form view -> Traceback. Cause of the issue ================== In mobile view, the product's quants displayed in the move line form view are displayed as kanban record. This kanban view template use the `many2one_uom` widget but doesn't include the `product_id` field which make this widget not usable. By the way, those records are not editable so it makes no sense to use this widget in this case. To fix the issue, remove the widget where it is not needed/not usable. Community PR: odoo/odoo#204252