{% extends 'base.html.twig' %}
{% block title %}Paiement | {{ app.session.get("setting").websiteName }}
{% endblock %}
{% block body %}
Adresse : 49 Boulevard d'aunou Ville : Boulogne-sur-mer Code Postal : 62200
x{{ item.quantity }}{{ item.product.name }}
{% if item.product.soldePrice and item.product.soldePrice > 0 %}
{{ (item.product.soldePrice / 100) | format_currency('EUR') }}
{{ item.product.component }}
Total:
{{ (item.quantity * item.product.soldePrice / 100) | format_currency('EUR') }}
{% else %}
{{ (item.product.price / 100) | format_currency('EUR') }}
{{ item.product.component }}
Total:
{{ (item.quantity * item.product.price / 100) | format_currency('EUR') }}
{% endif %}
Sous-Total
{{ (cart.sub_total / 100) | format_currency('EUR') }}
Livraison
{{ (cart.carrier.price / 100) | format_currency('EUR') }}
Total
{{ (cart.sub_total_with_carrier / 100) | format_currency('EUR') }}
Détails de l'adresse
Adresse de Facturation
Type de Livraison
Information du magasin
Détails supplémentaires
Récapitulatif de la commande
{% for item in cart.items %}