{% block content %} Order
HBLogo

Bon de Livraison No {{ order.reference }}

Mme/Mr {{ order.user.prenom }} {{ order.user.nom }}

Merci beaucoup pour votre commande et la confiance que vous nous accordez!


{% for item in order.orderItems %} {% endfor %}
Image Produit Réf Qte Prix
{{ item.product ? item.product.title : item.pack.title }} {{ item.product ? item.product.reference : 'aucun' }} {{ item.quantity }} {{ priceFormatter.formatPrice(item.price * item.quantity) }}

Sous-total :

Expédition :

Moyen de paiement :

Total :

{{ priceFormatter.formatPrice(order.totalPrice) }} MAD

{{ order.totalPrice > 300 ? 'Gratuit' : '50 MAD' }}

{{ order.paymentMethod == 'carte' ? 'Par Carte bancaire' : 'À la livraison' }}

{{ order.totalPrice > 300 ? priceFormatter.formatPrice(order.totalPrice) : priceFormatter.formatPrice(order.totalPrice + 50) }} MAD

{% if order.orderNote %}

{{ order.orderNote }}

{% endif %}
{% endblock %}