{% set currency = display_currency() %}
|
{% if quotation.company.logo is not empty %}
|
Offer Quotation |
FO-COM-01 |
Issue date: {{ quotation.createdAt|date("m/d/Y") }}
Validity: {{ quotation.validity }}
Company:
{{ quotation.company.name |title }}
Address: {{ quotation.company.address }}
Email: {{ quotation.company.email }}
Phone: {{ quotation.company.phone }}
Fax: {{ quotation.company.fax }}
Website: {{ quotation.company.website }}
Customer:
{{ quotation.customer.name |capitalize}}
Address: {{ quotation.customer.address }}
Contact Name: {{ quotation.customer.contactName }}
Email: {{ quotation.customer.email }}
Phone: {{ quotation.customer.phone }}
| # | Designation | Unit price ({{ display_currency(currency) }}) | Quantity | Total |
|---|---|---|---|---|
| {{ loop.index }} | {{ item.productDesc }} | {{ item.unitPrice|format_currency(currency) }} | {{ item.quantity }} | {{ row_total }} |
| No available data ! | ||||
| Total | {{ grand_total|format_currency(currency) }} | |||