{% extends 'report_html_stock/reports/base.html' %} {% block main %} {% for shipment in records %}
# | From Location | To Location | Product | Quantity | {% for move in moves[shipment.id] %}
---|---|---|---|---|
{{ loop.index }} | {{ move.from_location.rec_name }} | {{ move.to_location.rec_name }} | {{ move.product.code }} - {{ move.product.name }} | {{ formatLang(move.quantity, user.lang, digits=move.unit_digits) }} {% if move.uom.symbol != 'u' %}{{ move.uom.symbol }}{% endif %} |