{% set quote = data.quote %} {% set company = data.company %} {% set customer = data.customer %} {% set totals = data.totals %} {% set format = data.format %}
{% if company.logo %} {% endif %}
{% if company.name %}
{{ company.name }}
{% endif %} {% if company.address %}
{{ company.address }}
{% endif %} {% if company.city or company.state or company.zip %}
{{ company.city }}{% if company.state %}, {{ company.state }}{% endif %}{% if company.zip %} {{ company.zip }}{% endif %}
{% endif %} {% if company.phone %}
{{ 'quote_report.labels.phone_prefix'|trans }} {{ company.phone }}
{% endif %} {% if company.email %}
{{ 'quote_report.labels.info_prefix'|trans }} {{ company.email }}
{% endif %}
{{ 'quote_report.labels.invoice_no'|trans }} {{ quote.number }}
{{ 'quote_report.labels.date'|trans }} {{ quote.date }}
{{ 'quote_report.labels.due_date'|trans }} {{ quote.expirationDate }}
{{ 'quote_report.labels.term'|trans }} {{ quote.days }}
{{ 'quote_report.labels.customer'|trans }}
{% if customer.name %}
{{ customer.name }}
{% endif %} {% if customer.email %}
{{ customer.email }}
{% endif %} {% if customer.address %}
{{ customer.address }}
{% endif %} {% if customer.phones %}
{{ customer.phones }}
{% endif %}
{% for item in data.items %} {% else %} {% endfor %}
{{ 'quote_report.labels.description'|trans }} {{ 'quote_report.labels.unit'|trans }} {{ 'quote_report.labels.quantity'|trans }} {{ 'quote_report.labels.rate_price'|trans }} {{ 'quote_report.labels.total'|trans }}
{{ item.description }} {{ item.unit }} {{ item.quantity|number_format(format.decimals, '.', ',') }} {{ item.rate|number_format(format.decimals, '.', ',') }} {{ item.amount|number_format(format.decimals, '.', ',') }}
{{ 'quote_report.labels.no_items'|trans }}
{{ 'quote_report.labels.subtotal'|trans }} {{ totals.subtotal|number_format(format.decimals, '.', ',') }}
{{ 'quote_report.labels.taxes'|trans({'%tax%': totals.taxPercent|number_format(2, '.', ',')}) }} {{ totals.taxAmount|number_format(format.decimals, '.', ',') }}
{{ 'quote_report.labels.total'|trans }} {{ totals.total|number_format(format.decimals, '.', ',') }}
{{ 'quote_report.labels.paid'|trans }} 0.00
{{ 'quote_report.labels.due'|trans }} {{ totals.total|number_format(format.decimals, '.', ',') }}
{{ 'quote_report.labels.terms_and_conditions'|trans }}
{% if data.terms %} {{ data.terms|raw }} {% else %} - {% endif %}