{% extends "shipments/index.html" %} {% load i18n %} {% block toolbar %} {% endblock toolbar %} {% block second_column %} {% include "snippets/filtering_form.html" %}
{% csrf_token %} {% if can_receive %} {% endif %} {% for i in inventory %} {% if can_receive %} {% endif %} {% with i.product as p %} {% endwith %} {% with i.purchase_order as po %} {% endwith %} {% empty %} {% endfor %}
{% trans "Part" %} {% trans "Service Order" %} {% trans "Confirmation" %} {% trans "Ordered By" %}
{{ p.code }}
{{ p.title }}
{% if po.sales_order %} {{ po.sales_order.code }} {% endif %}
{{ po.reference }}
{{ po.confirmation }} {{ po.created_by }}
{{ po.submitted_at|date:"SHORT_DATE_FORMAT" }}
{% trans "No incoming products" %}
{% if can_receive %}
{% endif %}
{% include "pagination.html" with items=inventory %} {% endblock second_column %} {% block breadcrumb %}
  • /{% trans "Incoming" %}
  • {% endblock breadcrumb %}