{% extends "epic/base_layout.html" %} {% load crispy_forms_tags %} {% load humanize %} {% block buttons %} Up {{ page_nav|safe }} {% endblock buttons %} {% block content %} {{ block.super }}
PO #{{ order.id }}
Vendor {{ order.vendor.html_link|safe }}
Ship-To {{ order.warehouse.html_link|safe }}
{% for field in fields %} {% endfor %}
{{ field.0 }}{{ field.1|safe }}

Edit {% if order.is_open %} Add Shipment {% endif %} {% if order.assembly_line_items %} Check Stock {% endif %} Delete

Notes

{{ order.notes|linebreaksbr }}

Associated Shipments

{{ shipments|safe }}.

Order Items

{% for item in order_items %} {% endfor %}
IdxQtyPart # Vendor Part #Manufacturer Part # PriceAmountQty remaining
to ship
{{ item.index }} {{ item.qty|intcomma }} {{ item.part.html_link|safe }} {{ item.vendor_part.html_link|safe }} {{ item.part.mfg }} {{ item.part.mfg_pn }} $ {{ item.part_cost|floatformat:6|intcomma }} $ {{ item.line_cost|floatformat:2|intcomma }} {{ item.qty_remaining_to_ship|intcomma }}
Order Total $ {{ order.total_cost|floatformat:2|intcomma }}

{% endblock content %}