{% extends "base.html" %} {% load static %} {% block page_title %} InvenTree | {{ order }} {% endblock %} {% block content %}
{{ order.description }}
{% if order.URL %} {{ order.URL }} {% endif %}
Supplier | {{ order.supplier }} |
Status | {% include "order/order_status.html" %} |
Created | {{ order.creation_date }}{{ order.created_by }} |
Issued | {{ order.issue_date }} |
Received | {{ order.complete_date }}{{ order.received_by }} |
Line | Part | Description | Order Code | Reference | Quantity | {% if not order.status == OrderStatus.PENDING %}Received | {% endif %}Note | ||||
---|---|---|---|---|---|---|---|---|---|---|---|
{{ forloop.counter }} | {% if line.part %}{% include "hover_image.html" with image=line.part.part.image hover=True %} {{ line.part.part.full_name }} | {{ line.part.part.description }} | {{ line.part.SKU }} | {% else %}Warning: Part has been deleted. | {% endif %}{{ line.reference }} | {{ line.quantity }} | {% if not order.status == OrderStatus.PENDING %}{{ line.received }} | {% endif %}{{ line.notes }} |
{% if order.status == OrderStatus.PENDING %}
{% endif %}
{% if order.status == OrderStatus.PLACED and line.received < line.quantity %}
{% endif %}
|