{% extends "layout_report.html" %} {% load tz %} {% load humanize %} {% load app_filters %} {% block content %} {{ block.super }}
Customer
Item
CustItemCode
Package
Min /
Bldg-1
Reorder /
Qty On Hand
Min /
Bldg-2
Reorder /
Qty On Hand
{% for inv in inv_list %}
{{ inv.customer }}
{{ inv.item }}
{{ inv.cust_item_code }}
{{ inv.p_category }}
{{ inv.min_qty | default_if_none:"" | floatformat:'0' | intcomma }}
{{ inv.reorder_qty | default_if_none:"" | floatformat:'0' | intcomma }}
{{ inv.qty_on_hand1 | default_if_none:"" | floatformat:'0' | intcomma }}
{{ inv.min_qty2 | default_if_none:"" | floatformat:'0' | intcomma }}
{{ inv.reorder_qty2 | default_if_none:"" | floatformat:'0' | intcomma }}
{{ inv.qty_on_hand2 | default_if_none:"" | floatformat:'0' | intcomma }}
{% endfor %} {% endblock content %}