{% extends "module_base.html" %} {% load static %} {% load indonesian_filters %} {% block title %}Bill of Material Details{% endblock %} {% block content %}
| BOM Code: | {{ bom.bom_code }} |
|---|---|
| Product: | {{ bom.product.name }} |
| Version: | {{ bom.version }} |
| Status: | {% if bom.is_active %} Active {% else %} Inactive {% endif %} |
|---|---|
| Created: | {{ bom.created_at|date:"d M Y H:i" }} |
| Updated: | {{ bom.updated_at|date:"d M Y H:i" }} |
| Component | Quantity | Unit of Measure | Unit Cost | Total Cost |
|---|---|---|---|---|
| {{ item.component.name }} | {{ item.quantity|floatformat:2 }} | {{ item.unit_of_measure.name }} | {{ item.component.cost|format_rupiah }} | {{ item.total_cost|format_rupiah }} |
| Total Cost: | {{ bom.total_cost|format_rupiah }} | |||
No components defined for this BOM.
{% endif %}No manufacturing orders using this BOM.
{% endif %}