{% extends "build/build_base.html" %} {% load static %} {% load i18n %} {% block details %} {% load status_codes %} {% include "build/tabs.html" with tab='details' %}
{% trans "Description" %} | {{ build.title }} | |
{% trans "Part" %} | {{ build.part.full_name }} | |
{% trans "Quantity" %} | {{ build.quantity }} | |
{% trans "Stock Source" %} | {% if build.take_from %} {{ build.take_from }} {% else %} {% trans "Stock can be taken from any available location." %} {% endif %} | |
{% trans "Destination" %} | {% if build.destination %} {{ build.destination }} {% else %} {% trans "Destination location not specified" %} {% endif %} | |
{% trans "Status" %} | {% build_status_label build.status %} | |
{% trans "Progress" %} | {{ build.completed }} / {{ build.quantity }} | |
{% trans "Batch" %} | {{ build.batch }} | |
{% trans "Parent Build" %} | {{ build.parent }} | |
{% trans "Sales Order" %} | {{ build.sales_order }} | |
{% trans "External Link" %} | {{ build.link }} | |
{% trans "Created" %} | {{ build.creation_date }} |
{% trans "BOM Price" %} |
{% if bom_price %}
{{ bom_price }}
{% if build.part.has_complete_bom_pricing == False %}
{% trans "BOM pricing is incomplete" %} {% endif %} {% else %} {% trans "No pricing information" %} {% endif %} |
|
{% trans "Completed" %} | {{ build.completion_date }}{% if build.completed_by %}{{ build.completed_by }}{% endif %} |