{% extends "base_view.html" %} {% load widget_tweaks %} {% block title %} meliza-lab : order : {{ order.name }} {% endblock %} {% block content %}
| Description | Vendor | Catalog | Unit | Price | Quantity | Cost | {% if order.placed_on %}Received | {% 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_cost }} | {% if order.placed_on %}{{ oit.arrived_on|default:"no" }} | {% endif %}{% if order.placed_on and not oit.arrived_on %} | {% elif not order.placed_on %} | {% else %} | {% endif %} |
To update information about an item after it has been received, click the icon. {% if not order.placed_on %} 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. {% else %} To mark an item as received, click the icon. {% endif %}
back to order list