{% extends 'picking_list_report/reports/base.html' %} {% block title %} Shipment {{ records|join('# ', 'reference') }} {% endblock %} {% block main %} {% for shipment in records %}
{% block header_image %} {% endblock %}
{% set company = shipment.company %} {% for line in company.party.addresses[0].full_address.split('\n') %} {% if not loop.first %} {{ line }}
{% endif %} {% endfor %}
{% if company.party.phone %} Phone: {{ company.party.phone }}
{% endif %} {% if company.party.email %} E-Mail: {{ company.party.email }}
{% endif %} {% if company.party.vat_code %} VAT: {{ company.party.vat_code }}
{% endif %}
Ship To
{% for line in shipment.delivery_address.full_address.split('\n') %} {{ line }}
{% endfor %}
Picking List
Shipment #
{{ shipment.code }}
Planned Date:
{{ shipment.planned_date and shipment.planned_date|dateformat }}
{% block info_header scoped %} {% endblock %} {% block info_content scoped %} {% endblock %}
Reference Customer Warehouse
{{ shipment.origins or '' }}{{ ', ' if (shipment.origins and shipment.reference) else '' }}{{ shipment.reference or '' }} {{ shipment.customer.rec_name }} {{ shipment.warehouse.rec_name }}
{% for move in moves[shipment.id] %} {% endfor %}
# 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 %}
Picked By
Checked By
{% endfor %} {% endblock %}