{% extends "order/order_base.html" %} {% load inventree_extras %} {% load i18n %} {% load static %} {% block details %} {% include 'order/tabs.html' with tab='details' %}
{% trans "Line" %} | {% trans "Part" %} | {% trans "Description" %} | {% trans "Order Code" %} | {% trans "Reference" %} | {% trans "Quantity" %} | {% if not order.status == OrderStatus.PENDING %}{% trans "Received" %} | {% endif %}{% trans "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 }} | {% decimal line.quantity %} | {% if not order.status == OrderStatus.PENDING %}{% decimal line.received %} | {% endif %}{{ line.notes }} |
{% if order.status == OrderStatus.PENDING %}
{% endif %}
{% if order.status == OrderStatus.PLACED and line.received < line.quantity %}
{% endif %}
|