Commande #{{ command.id }}
HOCIATEC
2 Allée Anatoli Vaisser
93270 Sevran
SIRET: 123 456 789 00010
Nom: {{ command.user.firstName }} {{ command.user.lastName }}
Adresse: {{ command.user.address }}
Téléphone: {{ command.user.phone }}
Email: {{ command.user.email }}
Date de commande: {{ command.commandedAt ? command.commandedAt|date('Y-m-d H:i:s') : 'N/A' }}
Commentaire: {{ command.comment }}
Produit | Description | Prix Unitaire | Quantité | Total |
---|---|---|---|---|
{{ product.product.name }} | {{ product.product.description }} | {{ product.product.price|number_format(2, ',', ' ') }} € | {{ product.quantity }} | {{ (product.product.price * product.quantity)|number_format(2, ',', ' ') }} € |
Total: {{ command.total|default('0,00')|number_format(2, ',', ' ') }} €