{% extends "layout_report.html" %} {% load app_filters %} {% load humanize %} {% load tz %} {% block content %} {{ block.super }} {% if show_filters %}

Filters:

{% if qstr %}
Job: {{ qstr.job }}
{% endif %} {% if job %}
Job: {{ job }}
{% endif %} {% if trmc %}
TRMC: {{ trmc }}
{% endif %} {% if tncmc %}
TNCMC: {{ tncmc }}
{% endif %} {% if tmc %}
TMC: {{ tmc }}
{% endif %}
{% endif %} {% if tmc <= 0 or trmc <= 0 %}
REPORT NOTE: TMC or TRMC = 0. Some percent yield values are not available for job {{ job.job }}
{% endif %}
Customer:
Product:
Description:
Job:
{{ job.customer }}
{{ job.product }}
{{ job.description }}
{{ job.job }}
Order #:
Started:
Complete:
CS Cert:
Production Line:
{{ job.order_number }}
{{ job.job_start }}
{{ job.job_complete }}
{{ job.cs_cert }}
{{ job.line }}
FINISHED GOODS PRODUCTION
I.D.#
Item
Cust Item Code
Description/Car
Lot
Units
Pounds
%Yield
-------------
---------------------------
---------------------------
-------------------------------------------
-------------
-------------
-------------
-------------
{% for fg in fg_list %}
{{ fg.receiver| truncatechars:11 }}
{{ fg.receiver.item | truncatechars:19 }}
{{ fg.receiver.cust_item_code }}
{% if fg.receiver.package_id == 'BULK' %}{{ fg.car }}{% else %}{{ fg.receiver.description }}{% endif %}
{{ fg.receiver.lot | truncatechars:8 }}
{{ fg.units | floatformat:'1' | intcomma }}
{{ fg.received | floatformat:'0' | intcomma }}
{% if fg.pct_yield == "n/a" %}
{{ fg.pct_yield }}
{% else %}
{{ fg.pct_yield | floatformat:'2' | intcomma }}
{% endif %}
{% endfor %}
{{ total_fg | floatformat:'0' | intcomma }}
{% if total_fg_yield == "n/a" %}
{{ total_fg_yield }}
{% else %}
{{ total_fg_yield | floatformat:'2' | intcomma }}
{% endif %}
NON-CONFORMING MATERIAL PRODUCTION
I.D.#
Item
CIC
Description/Car
Lot
Group
Pounds
%Yield
-------------
---------------------------
-------------
-------------------------------------------
---------------------------
-------------
-------------
-------------
{% for ncm in ncm_list %}
{{ ncm.receiver | truncatechars:11 }}
{{ ncm.receiver.item | truncatechars:19 }}
{{ ncm.receiver.cust_item_code }}
{% if ncm.receiver.package_id == 'BULK' %}{{ ncm.car }}{% else %}{{ ncm.receiver.description }}{% endif %}
{{ ncm.receiver.lot | truncatechars:16 }}
{{ ncm.receiver.group }}
{{ ncm.received | floatformat:'0' | intcomma }}
{% if ncm.pct_yield == "n/a" %}
{{ ncm.pct_yield }}
{% else %}
{{ ncm.pct_yield | floatformat:'2' | intcomma }}
{% endif %}
{% endfor %}
TOTAL IDENTIFIED LOSSES
{{ total_ncm | floatformat:'0' | intcomma }}
{% if total_ncm_yield == "n/a" %}
{{ total_ncm_yield }}
{% else %}
{{ total_ncm_yield | floatformat:'2' | intcomma }}
{% endif %}
UN-IDENTIFIED LOSSES
{{ unidentified_ncm_loss | floatformat:'0' | intcomma }}
{% if unidentified_ncm_yield == "n/a" %}
{{ unidentified_ncm_yield }}
{% else %}
{{ unidentified_ncm_yield | floatformat:'2' | intcomma }}
{% endif %}
RAW MATERIAL CONSUMPTION
Receiver
Item
Cust Item Code
Description/Car
Lot
Consumed
%Cons
-------------
---------------------------
---------------------------
-------------------------------------------
-------------
-----------------
-------------
{% if report_type == 'detail' %} {% for rm in rm_list_detail %}
{{ rm.receiver }}
{{ rm.receiver.item | truncatechars:19}}
{{ rm.receiver.cust_item_code }}
{{ rm.receiver.description }}
{{ rm.receiver.lot }}
{{ rm.consumed | floatformat:'0' | intcomma }}
{% if rm.pct_yield == "n/a" %}
{{ rm.pct_yield }}
{% else %}
{{ rm.pct_yield_detail | floatformat:'2' | intcomma }}
{% endif %}
{% endfor %} {% else %} {% for rm in rm_list %}
{{ rm.receiver }}
{{ rm.receiver.item | truncatechars:19}}
{{ rm.receiver.cust_item_code }}
{{ rm.receiver.description }}
{{ rm.receiver.lot }}
{{ rm.total_consumed | floatformat:'0' | intcomma }}
{% if rm.pct_yield == "n/a" %}
{{ rm.pct_yield }}
{% else %}
{{ rm.pct_yield | floatformat:'2' | intcomma }}
{% endif %}
{% endfor %} {% endif %}
{{ total_rm | floatformat:'0' | intcomma }}
{% if total_rm_yield == "n/a" %}
{{ total_rm_yield }}
{% else %}
{{ total_rm_yield | floatformat:'2' | intcomma }}
{% endif %}
INVENTORY SUMMARY INFORMATION
Item
Class
Group
Cust Item Code
Consumed
%TMC
%TRMC
Frm WT%
---------------------------
-------------
-------------
---------------------------
------------------
-------------
-------------
-------------
{% if report_type == 'detail' %} {% for frm in frm_list_detail %}
{{ frm.item__name | truncatechars:19 }}
{{ frm.item__inv_class__name }}
{{ frm.item__inv_group__name }}
{{ frm.item__cust_item_code }}
{{ frm.consumed | floatformat:'0' | intcomma }}
{% if frm.pct_yield == "n/a" %}
{{ frm.pct_yield_detail }}
{% else %}
{{ frm.pct_yield_detail | floatformat:'2' | intcomma }}
{% endif %} {% if frm.pct_trmc == "n/a" %}
{{ frm.pct_trmc_detail }}
{% else %}
{{ frm.pct_trmc_detail | floatformat:'2' | intcomma }}
{% endif %}
{{ frm.tgt | floatformat:'2' | intcomma }}
{% endfor %} {% else %} {% for frm in frm_list %}
{{ frm.item__name | truncatechars:19 }}
{{ frm.item__inv_class__name }}
{{ frm.item__inv_group__name }}
{{ frm.item__cust_item_code }}
{{ frm.total_consumed_item | floatformat:'0' | intcomma }}
{% if frm.pct_yield == "n/a" %}
{{ frm.pct_yield }}
{% else %}
{{ frm.pct_yield | floatformat:'2' | intcomma }}
{% endif %} {% if frm.pct_trmc == "n/a" %}
{{ frm.pct_trmc }}
{% else %}
{{ frm.pct_trmc | floatformat:'2' | intcomma }}
{% endif %}
{{ frm.tgt | floatformat:'2' | intcomma }}
{% endfor %} {% endif %}
{{ total_rm | floatformat:'0' | intcomma }}
Avg Rate: (lbs/hr)
Act Rate: (lbs/hr)
 
 
Uptime:
Changeover:
Maintenance:
NoManPower:
Color:
Other:
{{ job.avg_rate | intcomma}}
{{ job.act_rate | intcomma }}
Hrs.
--------
{{ job.hrs_run | floatformat:'2' }}
{{ job.hrs_cln | floatformat:'2' }}
{{ job.hrs_mnt | floatformat:'2' }}
{{ job.hrs_nmp | floatformat:'2' }}
{{ job.hrs_clr | floatformat:'2' }}
{{ job.hrs_oth | floatformat:'2' }}
 
 
%
--------
{{ job.run_pct | floatformat:'2' }}
{{ job.cln_pct | floatformat:'2' }}
{{ job.mnt_pct | floatformat:'2' }}
{{ job.nmp_pct | floatformat:'2' }}
{{ job.clr_pct | floatformat:'2' }}
{{ job.oth_pct | floatformat:'2' }}
 
 
 
 
 
{{ cln_code_desc }}
 
 
 
 
{% endblock content %}