{% 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 }} |
{{ field.0 }} | {{ field.1|safe }} |
Edit {% if order.is_open %} Add Shipment {% endif %} {% if order.assembly_line_items %} Check Stock {% endif %} Delete
Idx | Qty | Part # | Vendor Part # | Manufacturer Part # | Price | Amount | Qty remaining to ship |
{% for item in order_items %}
---|---|---|---|---|---|---|---|
{{ 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 }} |