[IMP] mrp_multi_level: black, isort, prettier

This commit is contained in:
davidborromeo
2021-03-03 13:04:50 +01:00
committed by JasminSForgeFlow
parent 7ab5e0f128
commit 957b50af16

View File

@@ -318,7 +318,7 @@ class MultiLevelMrp(models.TransientModel):
@api.model @api.model
def _adjust_mrp_applicable(self, mrp_areas): def _adjust_mrp_applicable(self, mrp_areas):
"""This method is meant to modify the products that are applicable """This method is meant to modify the products that are applicable
to MRP Multi level calculation to MRP Multi level calculation
""" """
return True return True
@@ -500,9 +500,10 @@ class MultiLevelMrp(models.TransientModel):
last_qty = 0.00 last_qty = 0.00
nbr_create += 1 nbr_create += 1
if ( if (
(onhand + last_qty + move.mrp_qty) < product_mrp_area.mrp_minimum_stock onhand + last_qty + move.mrp_qty
or (onhand + last_qty) < product_mrp_area.mrp_minimum_stock ) < product_mrp_area.mrp_minimum_stock or (
): onhand + last_qty
) < product_mrp_area.mrp_minimum_stock:
if not last_date or last_qty == 0.0: if not last_date or last_qty == 0.0:
last_date = fields.Date.from_string(move.mrp_date) last_date = fields.Date.from_string(move.mrp_date)
last_qty = move.mrp_qty last_qty = move.mrp_qty