{% extends 'base.html' %} {% block content %}

Wilson Trade

and Rashan Mart

INVOICE

#{{ order.id }}

Billed To:
{{ order.party_name|title }}

{{ order.address }}

{{ order.contact }}

{% if order.vat_no %}

VAT/PAN: {{ order.vat_no }}

{% endif %}
Date:

{{ order.created_at|date:"F d, Y" }}

{% if order.is_cancelled %} CANCELLED {% elif order.is_return %} RETURNED {% endif %}
{% for item in order.items.all %} {% endfor %}
# Item Description Qty Price Total
{{ forloop.counter }} {{ item.product.name }} {{ item.quantity }} {{ item.product.price_per_packet }} {{ item.item_total }}
Grand Total Rs. {{ order.total_amount }}

Thank you for your business!

For inquiries, contact us at info@wilsontrade.com

New Order {% if request.user.is_authenticated %} {% endif %}
{% endblock %}