{{ doc.company }}

{% if doc.company_address %}

{{ doc.company_address }}

{% endif %}

QUOTATION

Quote #: {{ doc.name }}

Date: {{ doc.transaction_date }}

{% if doc.valid_till %}

Valid Till: {{ doc.valid_till }}

{% endif %}
Quote To:
{{ doc.customer_name }}
{% if doc.customer_address %} {{ doc.customer_address }} {% endif %}
{% for row in doc.items %} {% endfor %}
Item Description Qty Rate Amount
{{ row.item_code }} {{ row.item_name }} {{ row.qty }} {{ row.rate }} {{ row.amount }}

Subtotal: {{ doc.total }}

{% for tax in doc.taxes %}

{{ tax.account_head }} ({{ tax.rate }}%): {{ tax.tax_amount }}

{% endfor %}

Total: {{ doc.grand_total }}

{% if doc.terms %}

Terms & Conditions

{{ doc.terms }}

{% endif %}