{% extends "report/inventree_order_report_base.html" %} {% load i18n %} {% load report %} {% load barcode %} {% load inventree_extras %} {% load markdownify %} {% block header_content %}

{% trans "Shipment" %} {{ prefix }}{{ reference }}

{% trans "Sales Order" %} {{ order.reference }}
{{ order.customer.name }}
{% endblock header_content %} {% block page_content %}

{% trans "Allocations" %}

{% for allocation in allocations.all %} {% if allocation.item and allocation.item.serial and allocation.quantity == 1 %} {% elif allocation.item and allocation.item.batch %} {% else %} {% endif %} {% endfor %}
{% trans "Part" %} {% trans "Stock Item" %}
{% trans "Part image" %}
{{ allocation.line.part.full_name }}
{% trans "Serial Number" %}: {{ allocation.item.serial }}{% trans "Quantity" %}: {% decimal allocation.quantity %} - {% trans "Batch" %}: {{ allocation.item.batch }}{% trans "Quantity" %}: {% decimal allocation.quantity %}
{% endblock page_content %}