{% for commande in commandes %}
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 %}
Note:
{{ commande.note|nl2br }}
|
{% endif %}
N° |
Image |
Designation |
Quantité |
Prix U. |
Total |
{% for index, item in commande.products %}
{{ loop.index }} |
{% if imageColor[item.product.id].filename is defined %}
{% else %}
{% if item.product.filename %}
{% else %}
{% 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 }} |
{% endfor %}
|
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 %}