{% block main %} {% for inventory in records %}
{% block header_logo %} {% endblock %}
{% block header_title %}Inventory Report{% endblock %}
{% block header_content scoped %}
Inventory Date:
{{ inventory.date|dateformat }}
Location:
{{ inventory.location.rec_name }}
State:
{{ inventory.state }}
{% endblock %}

{% block table scoped %} {% for line in inventory.lines %} {% endfor %}
Product Expected Quantity Quantity
{{ line.product.code }} - {{ line.product.name }} {{ formatLang(line.expected_quantity, inventory.company.party.lang, digits=line.unit_digits) }} {% if line.uom.symbol != 'u' %} {{ line.uom.symbol }} {% endif %} {{ formatLang(line.quantity, inventory.company.party.lang, digits=line.unit_digits) }} {% if line.uom.symbol != 'u' %} {{ line.uom.symbol }} {% endif %}
{% endblock %}
{% if inventory.notes %}
Notes: {{ inventory.notes }}
{% endif %}
{% endfor %} {% endblock %}