From 496f67cefb3068dc0273c53cb3f8893937007dae Mon Sep 17 00:00:00 2001 From: JordiMForgeFlow <jordi.masvidal@forgeflow.com> Date: Wed, 30 Nov 2022 14:48:29 +0000 Subject: [PATCH] [FIX] purchase_mrp: filter cancelled moves when evaluating kit The current behaviour does not filter the cancelled moves when evaluating if the product of the purchase order line is a kit. This causes that, in cases where you have a cancelled wrong receipt where the product was being received as a kit, if a new receipt is created without receiving as a kit Odoo will always expect it as a kit. After the fix, the cancelled moves will not be considered, as this is what should be expected from cancelled operations. closes odoo/odoo#106906 Signed-off-by: William Henrotin (whe) <whe@odoo.com> --- addons/purchase_mrp/models/purchase_mrp.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/addons/purchase_mrp/models/purchase_mrp.py b/addons/purchase_mrp/models/purchase_mrp.py index 173b57d7d076..7a899e5a5f95 100644 --- a/addons/purchase_mrp/models/purchase_mrp.py +++ b/addons/purchase_mrp/models/purchase_mrp.py @@ -17,7 +17,7 @@ class PurchaseOrderLine(models.Model): def _compute_qty_received(self): kit_lines = self.env['purchase.order.line'] for line in self: - if line.qty_received_method == 'stock_moves' and line.move_ids.filtered(lambda m: m.bom_line_id): + if line.qty_received_method == 'stock_moves' and line.move_ids.filtered(lambda m: m.state != 'cancel' and m.bom_line_id): kit_bom = self.env['mrp.bom']._bom_find(product=line.product_id, company_id=line.company_id.id, bom_type='phantom') if kit_bom: moves = line.move_ids.filtered(lambda m: m.state == 'done' and not m.scrapped) @@ -43,7 +43,7 @@ class PurchaseOrderLine(models.Model): if bom and bom.type == 'phantom' and 'previous_product_qty' in self.env.context: return self.env.context['previous_product_qty'].get(self.id, 0.0) return super()._get_qty_procurement() - + class StockMove(models.Model): _inherit = 'stock.move' -- GitLab