{% extends "base_view.html" %} {% load widget_tweaks %} {% block title %} meliza-lab : order : {{ order.name }} {% endblock %} {% block content %}

order: {{ order.name }}


created on
{{ order.created_at.date }}
account(s)
{{ order.account_descriptions }}
placed on
{{ order.placed_on|default_if_none:"(in progress)" }}
requested by
{{ order.requested_by.get_full_name}}
total cost
{{ order.total_cost }}

items

{% if order.placed_on %} {% endif %} {% for oit in orderitem_list %} {% if order.placed_on %} {% endif %} {% if order.placed_on and not oit.arrived_on %} {% elif not order.placed_on %} {% else %} {% endif %} {% endfor %}
Description Vendor Catalog Unit Price Quantity CostReceived
{{ 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 }}{{ oit.arrived_on|default:"no" }}

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
{% if not order.placed_on %}mark this order as placed
{% endif %} edit order (advanced users only)
{% endblock %}