{% extends 'report_html_stock/reports/base.html' %} {% block title %} Shipment {{ records|join('# ', 'reference') }} {% endblock %} {% block report_header scoped %} {% set shipment = record %} Internal Shipment
Shipment # | {{ shipment.code }} |
Date | {{ shipment.effective_date or datetime.datetime.today()|dateformat }} |
Reference | From Location | To Location | Planned Date | State |
---|---|---|---|---|
{{ shipment.reference or '' }} | {{ shipment.from_location.rec_name }} | {{ shipment.to_location.rec_name }} | {{ shipment.planned_date or ''}} | {{ shipment.state }} |
From Location | To Location | Product | Quantity |
---|---|---|---|
{{ move.from_location.rec_name or '' }} | {{ move.to_location.rec_name or ''}} | {{ move.product.rec_name or ''}} | {{ formatLang(move.quantity, user.lang, digits=move.unit_digits) }} {% if move.uom.symbol != 'u' %}{{ move.uom.symbol }}{% endif %} |