{% set quote = data.quote %} {% set company = data.company %} {% set customer = data.customer %} {% set totals = data.totals %} {% set format = data.format %}
|
{% if company.logo %}
{% 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.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, '.', ',') }} |