diff --git a/InvenTree/part/views.py b/InvenTree/part/views.py index c237d6b249..24fc73fd3e 100644 --- a/InvenTree/part/views.py +++ b/InvenTree/part/views.py @@ -847,15 +847,15 @@ class PartPricingView(PartDetail): # BOM Information for Pie-Chart bom_items = [{'name': str(a.sub_part), 'price': a.sub_part.get_price_range(quantity), 'q': a.quantity} for a in part.bom_items.all()] - if [True for a in bom_items if len(set(a['price']))==2]: + if [True for a in bom_items if len(set(a['price'])) == 2]: ctx['bom_parts'] = [{ 'name': a['name'], - 'min_price': str((a['price'][0] * a['q'])/ quantity), + 'min_price': str((a['price'][0] * a['q']) / quantity), 'max_price': str((a['price'][1] * a['q']) / quantity)} for a in bom_items] ctx['bom_pie_min'] = True else: ctx['bom_parts'] = [{ - 'name':a['name'], + 'name': a['name'], 'price': str((a['price'][0] * a['q']) / quantity)} for a in bom_items] return ctx