{% extends 'layout.html.twig' %} {% block stylesheets %} {{encore_entry_link_tags('mobile_css')}} {% endblock %} {% block javascripts %} {{ parent() }} {% endblock %} {% block header %} {% endblock %} {% block content %}
{% if not disponible %}

Il n'y a plus assez de bouteilles disponibles pour satisfaire votre commande sur le point de vente sélectionné.
Merci de réessayer ultérieurement.

{% else %} {% for produit in entity.calcProduits() %}
{% if produit.image != "" %}{% endif %} {{ produit.nom }} {% if produit.consigne %} + consigne{% endif %}
Quantité : {{ produit.quantite }}
Prix unitaire (TTC){{ (produit.prix_total * produit.quantite) | round(2) | format_currency('EUR') }}
{% endfor %}
Total HT{{ entity.montantHt | format_currency('EUR') }}
Total TVA{{ entity.montantTva | format_currency('EUR') }}
Total TTC{{ entity.montantTtc | format_currency('EUR') }}
{{ entity.pointDeVente.nom | capitalize }}
{{ entity.pointDeVente.adresse | capitalize }}
{{ entity.pointDeVente.codePostal }} {{ entity.pointDeVente.ville | capitalize }}
J'accepte les Conditions Générales de Vente
(voir les CGV)
{# {% if entity.hasChargeSeule %}
{% else %} #} {% include 'admin/paiement/bnp.html.twig' %} {# {% endif %} #} {% endif %}
{% endblock %} {% block footer %} {% endblock %} {% block my_js %} {{ parent() }} {{ encore_entry_script_tags('app_base') }} {{ encore_entry_script_tags('admin_paiement') }} {% endblock %}