{% extends 'report_html_stock/reports/base.html' %} {% block main %} {% for shipment in records %}
{% block header scoped %} {% endblock %}
{% 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 }} {{ format_number(move.quantity, user.lang, digits=move.unit_digits) }} {% if move.uom.symbol != 'u' %}{{ move.uom.symbol }}{% endif %}
{% endfor %} {% endblock %}