{% extends "base_view.html" %} {% load widget_tweaks %} {% block title %} meliza-lab : order : {{ order.name }} {% endblock %} {% block content %}
Description | Vendor | Catalog | Unit | Price | Quantity | Total Price | {% if order.ordered %}Received | {% endif %}{% if not order.ordered %} | {% endif %} {% for oit in orderitem_list %} |
---|---|---|---|---|---|---|---|---|---|
{{ oit.item.name }} | {% if oit.item.vendor.url %}{{ oit.item.vendor }} {% else %}{{ oit.item.vendor }}{% endif %} | {% if oit.item.vendor_url %}{{ oit.item.catalog }} {% else %}{{ oit.item.catalog }}{% endif %} | {{ oit.item.unit_size }} | {{ oit.cost }} | {{ oit.units_purchased }} | {{ oit.total_price }} | {% if order.ordered %}{{ oit.date_arrived|default:"no" }} | {% endif %}{% if not order.ordered %} | {% endif %} |
To update information about an item after it has been received, click the icon. {% if not order.ordered %} To add items to this order, search the items list or add a new item. To remove an item from the order, click the icon. {% endif %}
back to order list