{% extends 'picking_list_report/reports/base.html' %} {% block title %} Shipment {{ records|join('# ', 'reference') }} {% endblock %} {% block main %} {% for shipment in records %}
Reference | Customer | Warehouse | {% endblock %}
---|---|---|
{{ shipment.origins or '' }}{{ ', ' if (shipment.origins and shipment.reference) else '' }}{{ shipment.reference or '' }} | {{ shipment.customer.rec_name }} | {{ shipment.warehouse.rec_name }} | {% endblock %}
# | From Location | To Location | Product | Quantity |
---|---|---|---|---|
{{ loop.index }} | {{ move.from_location.rec_name }} | {{ move.to_location.rec_name }} | {{ move.product.code }} - {{ move.product.name }} | {{ formatLang(move.quantity, shipment.customer.lang, digits=move.unit_digits) }} {% if move.uom.symbol != 'u' %}{{ move.uom.symbol }}{% endif %} |