{% for commande in commandes %}
logo

FACTURE

N°: {{ commande.reference }}

Adresse de livraison: Adresse de facturation:
Nom & prénoms: {{ commande.adresses['livraison'].nomprenoms }} Nom & prénoms: {{ commande.adresses['facturation'].nomprenoms }}
Contacts: {{ commande.adresses['livraison'].contacts }} Contacts: {{ commande.adresses['facturation'].contacts }}
Adresse: {{ commande.adresses['livraison'].adresse|nl2br }} Adresse: {{ commande.adresses['facturation'].adresse|nl2br }}
Client: {{ commande.user.prenoms }} {{ commande.user.nom }} Contacts: {{ commande.user.contacts }} Email: {{ commande.user.email }} Date commande: {{ commande.createdAt|date('d/m/Y à H:i:s') }}
{% if commande.note %} {% endif %} {% for index, item in commande.products %} {% endfor %}

Note:

{{ commande.note|nl2br }}
Image Designation Quantité Prix U. Total
{{ loop.index }} {% if imageColor[item.product.id].filename is defined %} {% else %} {% if item.product.filename %} {{ item.product.name }} {% else %} {{ item.product.name }} {% endif %} {% endif %} {{ item.product.name|lower }} (Réf.: {{ item.product.referenceproduct ?? '--------' }})
Catégorie: {{ item.product.souscategories.name|lower }} | Couleur: {{ item.color.name }} | Matériau: {% for matiere in item.product.matieres %} {{ matiere.name }} {% endfor %} {% endif %}
{{ item.quantity }} {{ item.product.price|devise }} {{ (item.product.price * item.quantity)|devise }}
TOTAL HT: {{ commande.totalht|devise }}
TVA ({{ parametres.structure.tva }}%): {{ commande.totaltva|devise }}
(Total toute Taxe comprise.) TOTAL TTC: {{ commande.totalttc|devise }}
Arrêter la présente facture à la somme de {{ commande.chiffreenlettre|lower }} Fcfa

Signature du client

Signature du livreur

{% endfor %}