{% extends 'basehangar.html.twig' %} {% block title %}Ma commande - La Boot'Ique'{% endblock %} {% block body %}
Commande passée le : {{horder.createdAt|date('d/m/Y')}}
Statut: {{
horder.state == 1 ? 'Paiment accepté' :
horder.state == 2 ? 'En préparation' : 'Expédiée'
}}
Référence : {{horder.reference}}
Transporteur: {{horder.carrierName}}
Article | Quantité | Prix unitaire | Total | |
---|---|---|---|---|
{{product.hangar}} | x{{product.quantity}} | {{(product.price / 100)|number_format(2,',','.') }} € | {{(product.total / 100)|number_format(2,',','.') }} € | |
Sous-total | {{(horder.total / 100)|number_format(2,',','.') }} € |