[FIX] mrp_multi_level: check for variant bom

fixes #1366

Using the _bom_find() method, we get the BOM with lowest sequence, whether it's a variant
BOM or a template BOM (no product_id).
This commit is contained in:
Matt Taylor
2024-10-17 15:11:30 -06:00
parent 560104a973
commit 71920c35f9
4 changed files with 72 additions and 20 deletions

View File

@@ -85,6 +85,11 @@ class ProductMRPArea(models.Model):
],
compute="_compute_supply_method",
)
supply_bom_id = fields.Many2one(
comodel_name="mrp.bom",
string="Supply BoM",
compute="_compute_supply_method",
)
qty_available = fields.Float(
string="Quantity Available", compute="_compute_qty_available"
)
@@ -205,20 +210,21 @@ class ProductMRPArea(models.Model):
return rule
def _compute_supply_method(self):
boms_by_product = self.env["mrp.bom"]._bom_find(self.mapped("product_id"))
for rec in self:
rule = rec._get_rule()
if not rule:
rec.supply_method = "none"
rec.supply_bom_id = False
continue
# Determine the supply method based on the final rule.
boms = rec.product_id.product_tmpl_id.bom_ids.filtered(
lambda x: x.type in ["normal", "phantom"]
)
bom = boms_by_product.get(rec.product_id, self.env["mrp.bom"])
rec.supply_method = (
"phantom"
if rule.action == "manufacture" and boms and boms[0].type == "phantom"
if rule.action == "manufacture" and bom.type == "phantom"
else rule.action
)
rec.supply_bom_id = bom
@api.depends(
"mrp_area_id", "supply_method", "product_id.route_ids", "product_id.seller_ids"