{% extends "marchant_base.html" %} {% load static %} {% load crispy_forms_tags %} {% block title %}Washing Cost{% endblock title %} {% block Style %} {% endblock Style %} {% block MainContent %}
{% if messages %} {% for message in messages %} {% endfor %} {% endif %} {% if not washing_cost %}

Style Number : {{style.style_number}}

Washing Cost
{% if not washing_cost %} {% if request.user.is_superuser == True or request.user.marchant_user_type == 'mother_admin' or request.user.marchant_user_type == 'sister_admin' or request.user.marchant_user_type == 'admin' or request.user.marchant_user_type == 'regular_user' %} {% include 'marchant_app/costing/washing_cost/create/super_admin_forms.html' %} {% endif %} {% endif %}
{%else%} {% if washing_cost %}
{{washing_cost.washing.style}}: Washing Cost Details
{% if washing_cost.style.is_cost_submit_status == "Not Submit" %} {% endif %}
Plant name {{washing_cost.washing.name}}
Plant type {{washing_cost.washing.plant_type}}
Plant origin {{washing_cost.washing.plant_origin}}
Process details {{washing_cost.washing.process_details}}
Process cost {{washing_cost.process_cost|floatformat:4}}
3D crinkle {{washing_cost.d_crinkle|floatformat:4}}
Whisker {{washing_cost.whisker|floatformat:4}}
Destroy {{washing_cost.destroy|floatformat:4}}
Sand blasting {{washing_cost.sand_blasting|floatformat:4}}
PP Spray {{washing_cost.pp_spray|floatformat:4}}
Tagging {{washing_cost.tagging|floatformat:4}}
Other {{washing_cost.other|floatformat:4}}
Over dye {{washing_cost.over_dye|floatformat:4}}
Cost per gmt ${{washing_cost.total_cost|floatformat:4}}
{% endif %} {% endif %}
{% endblock MainContent %} {% block meassage %} {% include 'notifications/notifications.html' %} {% endblock meassage %} {% block JS %} {% endblock JS %}