{% if style.is_cost_submit_status != 'Approved' %}
{% endif %}
SL No |
Fabric Type |
Name |
Mill Name |
Construction |
Unit |
Consumption |
Wastage % |
Usage |
Action |
{% if fabric_list %}
{% for fabric in fabric_list %}
{{forloop.counter}} |
{{ fabric.fabric.fabric_type }} |
{{ fabric.fabric.fabric_name }} |
{% if fabric.mill_name %}
{{ fabric.mill_name }}
{% else %}
N/A
{% endif %}
|
{{ fabric.fabric.construction }} |
{{ fabric.unit }} |
{{ fabric.consumption|floatformat:3 }} |
{{ fabric.wastage|floatformat:3 }} |
{{ fabric.total_uses|floatformat:3 }} |
{% if style.is_material_submit == False %}
|
{% endif %}
{% endfor %}
{% else %}
No Data Found |
{% endif %}
{% if style.is_cost_submit_status != 'Approved' %}
{% endif %}
SL No |
Item |
Description |
Supplier |
Unit |
Consumption |
Wastage % |
Usage |
Action |
{% if trim_list %}
{% for trim in trim_list %}
{{forloop.counter}} |
{{ trim.trim.name }} |
{{ trim.description }} |
{% if trim.supplier %}
{{ trim.supplier }}
{% else %}
N/A
{% endif %}
|
{{ trim.unit }} |
{{ trim.consumption|floatformat:3 }} |
{{ trim.wastage|floatformat:3 }} |
{{ trim.total_uses|floatformat:3 }} |
{% if style.is_material_submit == False %}
|
{% endif %}
{% endfor %}
{% else %}
No Data Found |
{% endif %}
{% if style.is_cost_submit_status != 'Approved' %}
{% endif %}
SL No |
Count |
Description |
Supplier |
Unit |
Consumption |
Wastage % |
Total Uses |
Action |
{% if thread_list %}
{% for thread in thread_list %}
{{forloop.counter}} |
{{ thread.thread.count }} |
{{ thread.thread.description }} |
{% if thread.supplier %}
{{ thread.supplier }}
{% else %}
N/A
{% endif %}
|
{{ thread.unit }} |
{{ thread.consumption|floatformat:3 }} |
{{ thread.wastage|floatformat:3 }} |
{{ thread.total_uses|floatformat:3 }} |
{% if style.is_material_submit == False %}
|
{% endif %}
{% endfor %}
{% else %}
No Data Found |
{% endif %}
{% if style.is_cost_submit_status != 'Approved' %}
{% endif %}
SL No |
Item |
Plant Type |
Plant Origin |
Process Details |
Action |
{% if washing_list %}
{% for washing in washing_list %}
{{forloop.counter}} |
{{ washing.name }} |
{% if washing.plant_type %}
{{ washing.plant_type }}
{% else %}
N/A
{% endif %}
|
{% if washing.plant_origin %}
{{ washing.plant_origin }}
{% else %}
N/A
{% endif %}
|
{{ washing.process_details }} |
{% if style.is_material_submit == False %}
|
{% endif %}
{% endfor %}
{% else %}
No Data Found |
{% endif %}
{% if style.is_cost_submit_status != 'Approved' %}
{% endif %}
SL No |
Embroidery Item |
Process Details |
Action |
{% if embroidery_list %}
{% for embroidery in embroidery_list %}
{{forloop.counter}} |
{{ embroidery.name }} |
{{ embroidery.process_details }} |
{% if style.is_material_submit == False %}
|
{% endif %}
{% endfor %}
{% else %}
No data is Found |
{% endif %}
{% if style.is_cost_submit_status != 'Approved' %}
{% endif %}
SL No |
Print Item |
Print Details |
Action |
{% if print_list %}
{% for print in print_list %}
{{forloop.counter}} |
{{ print.name }} |
{{ print.process_details }} |
{% if style.is_material_submit == False %}
|
{% endif %}
{% endfor %}
{% else %}
No data is Found |
{% endif %}
{% endblock MainContent %}
{% block meassage %}
{% include 'notifications/notifications.html' %}
{% endblock meassage %}
{% block JS %}
{% endblock JS %}