{% set currency = display_currency() %}

Offer N°: {{ quotation.offerId }}

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 }}

{% set grand_total = 0 %} {% for item in quotation.quotationItems %} {% set row_total = item.unitPrice * item.quantity %} {% set grand_total = grand_total + row_total %} {% else %} {% endfor %} {% if quotation.total %} {% endif %}
# 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) }}