{% extends 'base.html' %} {% load manufacture_extras %} {% block title %}BOM - {{ bom.manufactured_product.name }}{% endblock %} {% block content %}
Manufactured Product: {{ bom.manufactured_product.name }}
Product Code: {{ bom.manufactured_product.code }}
Component: {{ bom.component.name }}
Quantity: {{ bom.quantity|format_quantity }}
Unit: {{ bom.unit|default:bom.component.unit }}
Component Cost Price: Rp {{ bom.component.cost_price|format_currency }}
Total Component Cost: Rp {{ bom.get_total_component_cost|format_currency }}
Component Code: {{ bom.component.code }}
Component Category: {{ bom.component.category.name|default:"N/A" }}
Component Current Stock: {{ bom.component.current_stock }}
Component Unit: {{ bom.component.unit }}
Created: {{ bom.created_at|date:"d/m/Y H:i" }}
Updated: {{ bom.updated_at|date:"d/m/Y H:i" }}