{% extends 'base.html.twig' %} {% block title %}Ma commande - La boutique française{% endblock %} {% block content %}

Ma commande {{ order.reference }}

Retour
Statut de la commande : {% if order.state == 1 %} Paiement accepté {% elseif order.state == 2 %} Préparation en cours {% elseif order.state == 3 %} Livraison en cours {% endif %}
Commande passé le : {{ order.createdAt|date('d/m/Y') }}
Référence de ma commande : {{ order.reference }}
Transporteur choisi : {{ order.carriername }}
Détails : {% for product in order.orderDetails %} {% endfor %}
Produit Quantité Prix unitaire Total
{{ product.product }} x{{ product.quantity}} {{ (product.price / 100)|number_format(2, ',', '.') }} € {{ (product.total / 100)|number_format(2, ',', '.') }} €
Sous-total : {{ (order.getTotal / 100)|number_format(2, ',', '.') }} €
Livraison : {{ (order.carrierprice / 100)|number_format(2, ',', '.') }} €
Total : {{ ((order.carrierprice + order.getTotal) / 100)|number_format(2, ',', '.') }} €
{% endblock %}