Invoice #{{ order.id }}

{{ order.date }}

Customer:
{{ order.customer }}
Pickup Address:
{{ order.pickup_address }}
Washerman:
{{ order.washerman }}
Pickup Date:
{{ order.pickup_date }}
{% set subTotal = 0 %} {% for item in order.items %} {% set subTotal = subTotal + item.total %} {% endfor %}
# Service Type Item Name Quantity Price (Rs) Total (Rs)
{{ loop.index }} {{ item.service_type|capitalize }} {{ item.item_name }} {{ item.quantity }} Rs {{ item.price|number_format(2, '.', ',') }} Rs {{ item.total|number_format(2, '.', ',') }}
Subtotal: Rs {{ order.sub_total|number_format(2, '.', ',') }}
Grand Total: Rs {{ order.amount|number_format(2, '.', ',') }}
Payment Type: cod
Status: {{ order.status|capitalize }}