Mon adresse de livraision
{{delivery|raw}}
Mon transporteur
{{carrier.name}}
{{carrier.description}}
{{(carrier.price /100)|number_format(2,',','.')}} €
Ma commande
{% set total=null%}
{% for key,product in cart %}
{{ product.product.name}}
{{product.product.subtitle}}
x {{product.quantity}}
{{(product.product.price * product.quantity /100)|number_format(2,',','.') }}€
{% set total= total + (product.product.price * product.quantity) %}
{% endfor %}
Sous-Total: {{(total /100)|number_format(2,',','.') }} €
Livraison: {{(carrier.price/100)|number_format(2,',','.') }} €
Total: {{((total /100)+(carrier.price/100))|number_format(2,',','.') }} €
Payer | {{((total /100)+(carrier.price/100))|number_format(2,',','.') }} €