{% extends '@EasyAdmin/page/content.html.twig' %} {% block content_title %} Ajouter un lot à la commande {{ commande.numeroCommande }} {% endblock %} {% block main %}
Informations de la commande

Client : {{ commande.user.email }}

Statut : {{ commande.statut|title }}

Total actuel : {{ commande.prixTotal|number_format(2, ',', ' ') }} €

Date : {{ commande.createdAt|date('d/m/Y H:i') }}

Ajouter un nouveau lot
0,00 €
{{ commande.prixTotal|number_format(2, ',', ' ') }} €
Lots déjà dans la commande
{% if commande.lignes | length > 0 %} {% for ligne in commande.lignes %}
{{ ligne.lot.name }}
{{ ligne.quantite }} × {{ ligne.prixUnitaire|number_format(2, ',', ' ') }}€
{{ ligne.prixTotal|number_format(2, ',', ' ') }}€
{% endfor %} {% else %}

Aucun lot dans cette commande.

{% endif %}
{% endblock %}