{% extends 'base.html.twig' %} {% block title %}Ma commande -Yggdrasil {% endblock %} {% block content %}

Ma commande {{ command.reference }}

Retour
commande passée le : {{ command.createdAt|date('d/m/y') }}
Référence de ma commande : {{ command.reference }}
Transporteur choisi : {{ command.carriername }}
Détail : {% for product in command.commandDetails %} {% 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 : {{ (command.getTotal / 100)|number_format(2, ',','.') }} €
livraison : {{ (command.priceSending / 100)|number_format(2, ',','.') }} €
Total : {{ ((command.priceSending + command.getTotal)/100)|number_format(2, ',', '.') }} €
{% endblock %}