{% for commande in commandes %}
| Référence : |
{{ commande.reference }} |
| Pack : |
{{ commande.packLabel }} |
| Date : |
{{ commandes[0].createdAt|date('d/m/Y à H:i') }} |
| Statut : |
Payée ✓
|
|
{% endfor %}
👤 Client
{% if beneficiaires is not empty %}
🃏 Cartes à créer ({{ beneficiaires|length }})
|
|
{% for beneficiaire in beneficiaires %}
| {{ loop.index }} |
{{ beneficiaire.prenom }} {{ beneficiaire.nom }}
{{ beneficiaire.fonction ?? '' }}
{{ beneficiaire.entreprise ?? '' }}
|
{% if beneficiaire.email %}{{ beneficiaire.email }} {% endif %}
{% if beneficiaire.mobile %}{{ beneficiaire.mobile }} {% endif %}
{% if beneficiaire.fixe %}{{ beneficiaire.fixe }}{% endif %}
|
|
{% endfor %}
{% endif %}
| Total HT : |
{{ totalHT|number_format(2, ',', ' ') }} € |
| TVA (20%) : |
{{ (totalHT * 0.20)|number_format(2, ',', ' ') }} € |
| Total TTC : |
{{ totalTTC|number_format(2, ',', ' ') }} € |
| ⚠️ |
Action requise : Créer les cartes et envoyer les accès au client à
{{ clientEmail }}.
|
|
|