Un paiement a été confirmé pour une commande sur votre boutique.
Montant encaissé
{{ order.totalAmount|number_format(2, ',', ' ') }} €
Commande #{{ order.orderNumber }}
Détails
Date de paiement : {{ order.paidAt ? order.paidAt|date('d/m/Y à H:i') : 'N/A' }}
Mode de paiement : {{ order.paymentMethodName }}
{% if invoice %}Facture : {{ invoice.invoiceNumber }}
{% endif %}Client
Nom : {{ order.customerFullName }}
Email : {{ order.customerEmail }}
{% if order.customerPhone %}Téléphone : {{ order.customerPhone }}
{% endif %}Produits commandés
| Produit | Qté | Total |
|---|---|---|
| {{ item.productName }} | {{ item.quantity }} | {{ (item.quantity * item.unitPrice)|number_format(2, ',', ' ') }} € |
Adresse de livraison
{% if order.shippingAddress.address is defined %}{{ order.shippingAddress.address }}
{{ order.shippingAddress.postal_code }} {{ order.shippingAddress.city }}
{{ order.shippingAddress.country }}
{% endif %}