{{ label }}


{% set tt = 0 %}
{% trans %}date{% endtrans %}: {{ created }}
{% trans %}reference{% endtrans %}: {{ reference }}

{{ customer['label'] }}:
{{ customer['name'] }}
{{ customer['address'] }}
{{ customer['zipcode'] ~ ' ' ~ customer['city'] }}
{% for item in listItem %} {% if loop.index0 == 0 %} {% else %} {% endif %} {% set tt = tt + (item['quantity']*item['unit_price'])%} {% endfor %}
{% trans %}designation{% endtrans %} {% trans %}completion_time{% endtrans %} {% trans %}unit_price{% endtrans %} {% trans %}amount{% endtrans %}
{{ item['designation'] }} {{ item['quantity'] }} {{ item['unit_price']|price }} {{ (item['quantity']*item['unit_price'])|price }}
{{ item['designation'] }} {{ item['quantity'] }} {{ item['unit_price']|price }} {{ (item['quantity']*item['unit_price'])|price }}
{% trans %}sub_total{% endtrans %}: {{ tt|price }}
{% trans %}tax{% endtrans %}: {{ tax|price }}
{% trans %}total{% endtrans %}: {{ (tt + tax)|price }}