QTE |
PRODUIT |
PRIX |
|
{% for i,el in elements %}
{% if el.quantity>=1 %}
{{ el.quantity }}
{% endif %}
|
{{ el.name }}
{% if el.level>0 %}
({{ el.size }})
{% endif %}
|
{% if el.quantity==0 %}
{{ el.price | number_format(2, '.', ',') }}
{{order.currency}}
{% endif %}
{% if el.quantity>0 %}
{{ el.price * el.quantity | number_format(2, '.', ',') }}
{{order.currency}}
{% endif %}
|
{% if el.optionIngredients|length > 0 %}
|
Avec :
{% for opt in el.optionIngredients %}
{{ opt.name }},
{% endfor %}
|
|
{% endif %}
{% if el.removedCompositions|length > 0 %}
|
Sans :
{% for comp in el.removedCompositions %}
{{ comp.name }},
{% endfor %}
|
|
{% endif %}
{% for supp in el.supplements %}
{% if el.quantity>1 %}
{{ el.quantity }}
{% endif %}
|
Supp :
{{ supp.name }}
|
{{ supp.cout*el.quantity }}
{{order.currency}}
|
{% endfor %}
{% if el.comment!="" %}
|
{{ el.comment }}
|
|
{% endif %}
|
{% endfor %}
{% for i,menu in menus %}
{{ menu.quantity }}
|
{{ menu.title }}
|
{{ menu.price*menu.quantity | number_format(2, '.', ',') }}
{{order.currency}}
|
{% for el in menu.elements %}
|
{% if 'Moitié' not in el.name and el.quantity>1 %}
{{ el.quantity }}x
{% endif %}
{{ el.name }}
{% if el.level>0 %}
({{ el.size }})
{% endif %}
|
{% if el.price>0 %}
{{ el.price * el.quantity | number_format(2, '.', ',') }}
{{order.currency}}
{% endif %}
{% if el.priceSuppMenu is defined and el.priceSuppMenu>0 %}
+{{ el.priceSuppMenu * el.quantity | number_format(2, '.', ',') }}
{{order.currency}}
{% endif %}
|
{% if el.optionIngredients|length > 0 %}
|
Avec :
{% for opt in el.optionIngredients %}
{{ opt.name }},
{% endfor %}
|
|
{% endif %}
{% if el.removedCompositions|length > 0 %}
|
Sans :
{% for comp in el.removedCompositions %}
{{ comp.name }},
{% endfor %}
|
|
{% endif %}
{% for supp in el.supplements %}
|
Supp :
{{ supp.name }}
|
{{ supp.cout }}
{{order.currency}} |
{% endfor %}
{% endfor %}
{% if menu.comment!="" %}
|
{{ menu.comment }}
|
|
{% endif %}
|
{% endfor %}
{% if order.discount>0 or order.couponValue>0 or order.fees>0 %}
Sous-total :
|
{{ order.amount }}
{{order.currency}}
|
{% endif %}
{% if order.discount>0 %}
Remise
{{ order.discount }}
% :
|
-
{{ (order.amount*order.discount)/100 }}
{{order.currency}} |
{% endif %}
{% if order.couponValue is defined and order.couponValue>0 %}
Coupon
{{order.couponValue}}
{% if order.couponType==1 %}
{{order.currency}}
{% else %}
%
{% endif %}
:
|
-
{{order.couponAmount}}
{{order.currency}}
|
{% endif %}
{% if order.fees is defined and order.fees>0 %}
{{ order.feesLabel }} : |
{{ order.fees }}
{{order.currency}} |
{% endif %}
{% if order.discount>0 or order.couponValue>0 or order.fees>0 %}
|
{% endif %}
{% set totalHT = order.total/1.1 | number_format(2) %}
{% set totalTVA = order.total/11 | number_format(2) %}
Total TTC :
|
{{ order.total | number_format(2, '.', ',') }}
€
|
|
Total HT :
|
{{ totalHT | number_format(2, '.', ',') }}
€
|
TVA 10% :
|
{{ totalTVA | number_format(2, '.', ',') }}
€
|
Paiement :
{% if order.paid!=1 %}
{% for paymentMode in paymentModes %}
{{ paymentMode }},
{% endfor %}
{% endif %}
{% if order.paid is defined and order.paid %}
Commande payée en ligne
{% endif %}
|