{% extends "modal_form.html" %} {% load i18n %} {% load inventree_extras %} {% load status_codes %} {% block form %} {% blocktrans with desc=order.description %}Receive outstanding parts for {{order}} - {{desc}}{% endblocktrans %}
{% csrf_token %} {% load crispy_forms_tags %}

{% trans "Select parts to receive against this order" %}

{% for line in lines %} {% if line.part %} {% else %} {% endif %} {% endfor %}
{% trans "Part" %} {% trans "Order Code" %} {% trans "On Order" %} {% trans "Received" %} {% trans "Receive" %} {% trans "Status" %} {% trans "Destination" %}
{% include "hover_image.html" with image=line.part.part.image hover=False %} {{ line.part.part.full_name }} {{ line.part.SKU }}{% trans "Error: Referenced part has been removed" %}{% decimal line.quantity %} {% decimal line.received %}
{{ line.get_destination }}
{% crispy form %}
{% endblock %}