{% extends 'base.html.twig' %} {% block title %}Ma commande - Les Pépites D'Ophélie {% endblock %} {% block content %}
Retour

Ma commande {{ order.reference }}



Détails de la commande :


{% set subtotal = 0 %} {% for product in order.orderDetails %} {% set subtotal = subtotal + (product.quantity * product.price) %} {% endfor %}
Produit Taille Quantité Prix unitaire Prix total
{{ product.product }} {{ product.size }} {{ product.quantity }} {{ (product.price / 100) | number_format(2, ',', '.') }} € {{ ((product.quantity * product.price) / 100) | number_format(2, ',', '.') }} €
Sous-total : {{ (subtotal / 100) | number_format(2, ',', '.') }} €
Livraison : {{ (order.carrierPrice / 100) | number_format(2, ',', '.') }} €
Total : {{ ((subtotal + order.carrierPrice) / 100) | number_format(2, ',', '.') }} € {#
Icone Téléchargement
Télécharger ma facture
#} {% endblock %}