{% extends "layout_report.html" %} {% load tz %} {% load humanize %} {% load app_filters %} {% block content %} {{ block.super }}
Job
Product
Product Lot
Line
Job Complete
Qty Prod
Receiver
Item
Item Lot
Qty Cons
{% for txn in trx_list %}
{% ifchanged txn.job %}{{ txn.job }}{% else %} {% endifchanged %}
{% ifchanged txn.job %}{{ txn.product }}{% else %} {% endifchanged %}
{% ifchanged txn.job %}{{ txn.product_lot }}{% else %} {% endifchanged %}
{% ifchanged txn.job %}{{ txn.line }}{% else %} {% endifchanged %}
{% ifchanged txn.job %}{{ txn.job_complete | date:'n/j/y' }}{% else %} {% endifchanged %}
{% ifchanged txn.job %}{{ txn.qty_produced | floatformat:'0' | intcomma }}{% else %} {% endifchanged %}
{{ txn.receiver }}
{{ txn.receiver.item.name }}
{{ txn.receiver.lot }}
{{ txn.qty_consumed | floatformat:'0' | intcomma }}
{% endfor %} {% endblock content %}