Facture

Nom de l'entreprise :

Les Pépites d'Ophélie

16 Rue de l'Ecusserie,

62500 Saint-Omer

Ophélie.billain@gmail.com


{{ order.billingAddress | raw}}


{% set subtotal_ht = 0 %} {% set total_tva = 0 %} {% for product in order.orderDetails %} {% set price_ht = (product.price / 1.20) %} {% set tva = (product.price - price_ht) %} {% set total_price = product.quantity * product.price %} {% set subtotal_ht = subtotal_ht + (product.quantity * price_ht) %} {% set total_tva = total_tva + (product.quantity * tva) %} {% endfor %}
Produit Taille Quantité Prix unitaire HT TVA (20%) Prix total
{{ product.product }} {{ product.size }} {{ product.quantity }} {{ (price_ht / 100) | number_format(2, ',', '.') }} € {{ (tva / 100) | number_format(2, ',', '.') }} € {{ (total_price / 100) | number_format(2, ',', '.') }} €
Sous-total HT : {{ (subtotal_ht / 100) | number_format(2, ',', '.') }} €
TVA (20%) : {{ (total_tva / 100) | number_format(2, ',', '.') }} €
Livraison : {{ (order.carrierPrice / 100) | number_format(2, ',', '.') }} €
Total TTC : {{ ((subtotal_ht + total_tva + order.carrierPrice) / 100) | number_format(2, ',', '.') }} €