[FIX] mrp_lot_number_propagation: tests

import test_mrp_production
stock.move.line : product_uom_qty -> reserved_uom_qty
This commit is contained in:
bosd
2025-01-04 01:47:58 +01:00
parent a8811cec44
commit 0762c0a9ea
2 changed files with 2 additions and 1 deletions

View File

@@ -1 +1,2 @@
from . import test_mrp_bom
from . import test_mrp_production

View File

@@ -34,7 +34,7 @@ class TestMrpProduction(Common):
def _set_qty_done(self, order):
for line in order.move_raw_ids.move_line_ids:
line.qty_done = line.product_uom_qty
line.qty_done = line.reserved_uom_qty
order.qty_producing = order.product_qty
def test_order_propagated_lot_producing(self):