{% 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 %}
Product |
Expected Quantity |
Quantity |
{% for line in inventory.lines %}
{{ line.product.code }} - {{ line.product.name }} |
{{ format_number(line.expected_quantity, inventory.company.party.lang, digits=line.unit_digits) }}
{% if line.uom.symbol != 'u' %}
{{ line.uom.symbol }}
{% endif %}
|
{{ format_number(line.quantity, inventory.company.party.lang, digits=line.unit_digits) }}
{% if line.uom.symbol != 'u' %}
{{ line.uom.symbol }}
{% endif %}
|
{% endfor %}
{% endblock %}
{% if inventory.notes %}
Notes: {{ inventory.notes }}
{% endif %}
{% endfor %}
{% endblock %}