{% if logo_base64 %} {% else %}
3Tek-Europe
{% endif %}

COMMANDE N° {{ commande.numeroCommande }}

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

Statut : {{ commande.statut|replace({'_': ' '})|title }}

Informations Client

Nom complet : {% if commande.user %} {{ commande.user.name }} {{ commande.user.lastname }} {% else %} Non défini {% endif %}
Email : {% if commande.user %} {{ commande.user.email }} {% else %} Non défini {% endif %}
Téléphone : {% if commande.user and commande.user.phone %} {{ commande.user.phone }} {% else %} Non défini {% endif %}
Entreprise : {% if commande.user and commande.user.office %} {{ commande.user.office }} {% else %} Non défini {% endif %}
{% if commande.validatedAt %}
Date de validation : {{ commande.validatedAt|date('d/m/Y à H:i') }}
{% endif %}

Détail de la Commande

{% if commande.lignes | length > 0 %} {% for ligne in commande.lignes %} {% endfor %}
Lot Description Quantité Prix unitaire Total
{{ ligne.lot.name }} {{ ligne.lot.description|safe_description|slice(0, 100) }} {% if ligne.lot.description | length > 100 %}...{% endif %} {{ ligne.quantite }} {{ ligne.prixUnitaire|number_format(2, ',', ' ') }} € {{ ligne.prixTotal|number_format(2, ',', ' ') }} €
{% else %}

Aucun lot dans cette commande.

{% endif %}
Total HT : {{ commande.prixTotal|number_format(2, ',', ' ') }} €
TVA (20%) : {{ (commande.prixTotal * 0.2)|number_format(2, ',', ' ') }} €
TOTAL TTC : {{ (commande.prixTotal * 1.2)|number_format(2, ',', ' ') }} €
{% if commande.statut == 'en_attente' %}

⚠️ Important

Cette commande est en attente de validation. Veuillez procéder au paiement pour confirmer votre commande.

{% endif %} {% if commande.statut == 'validee' %}

Informations de Livraison

Votre commande a été validée et sera préparée dans les plus brefs délais.

Vous recevrez un email de confirmation avec les détails de livraison.

{% endif %}