{% extends "layout_report.html" %} {% load tz %} {% load humanize %} {% block content %} {{ block.super }}
ItemCode
Ingredient
Qty Scheduled
Qty Staged
Qty Required
Qty On Hand
Qty Excess
Qty Shortfall
{% for item in final_report %}
{{ item.item__cust_item_code }}
{{ item.item__name }}
{{ item.qty_scheduled | floatformat:'0' | intcomma }}
{{ item.qty_staged | floatformat:'0' | intcomma }}
{{ item.qty_required | floatformat:'0' | intcomma }}
{{ item.qty_available | floatformat:'0' | intcomma }}
{{ item.qty_excess | floatformat:'0' | intcomma }}
{{ item.qty_shortfall | floatformat:'0' | intcomma }}
{% endfor %} {% endblock content %}