From 2296feda8b921bf935d068a6c881c31c90105d65 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?V=C3=ADctor=20Mart=C3=ADnez?= Date: Tue, 16 Nov 2021 09:34:01 +0100 Subject: [PATCH] [FIX] stock_secondary_unit: Prevent move_line_ids_without_package field is not editable. --- stock_secondary_unit/tests/test_stock_secondary_unit.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stock_secondary_unit/tests/test_stock_secondary_unit.py b/stock_secondary_unit/tests/test_stock_secondary_unit.py index 404c2bbbc..e3a02e5c9 100644 --- a/stock_secondary_unit/tests/test_stock_secondary_unit.py +++ b/stock_secondary_unit/tests/test_stock_secondary_unit.py @@ -16,7 +16,7 @@ class TestProductSecondaryUnit(SavepointCase): cls.location_stock = cls.env.ref("stock.stock_location_stock") cls.picking_type_in = cls.env.ref("stock.picking_type_in") cls.picking_type_out = cls.env.ref("stock.picking_type_out") - + cls.picking_type_out.show_operations = True cls.product_uom_kg = cls.env.ref("uom.product_uom_kgm") cls.product_uom_ton = cls.env.ref("uom.product_uom_ton") cls.product_uom_unit = cls.env.ref("uom.product_uom_unit")