{% 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.purchase_order as po %} {% endwith %} {% empty %} {% endfor %}
{% trans "Part" %} {% trans "Service Order" %} {% trans "Confirmation" %} {% trans "Ordered By" %}
{{ i.code }}
{{ i.title }}
{% if i.sales_order %} {{ i.sales_order_ref }} {% endif %}
{{ i.purchase_order_ref }}
{{ po.confirmation }} {{ i.user_fullname }}
{{ i.created_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 %}