{# @author: Benjamin AMOUZOU #} {% extends "commercial/template-commercial.html.twig" %} {% block titre_enfant %} Matériel {% endblock %} {% block contenu_principal_commercial %}
Matériel




{% if materiel.tarifs is not empty %} {% for tarif in materiel.tarifs %} {% endfor %}
Nombre de matériel Prix de base Prix après réduction
{{tarif.nbreMateriel}} {{tarif.montant|number_format(0, ',', '.')}} FCFA {% if tarif.reductions is not empty %} {% for reduction in tarif.reductions %} {% set prixReduction = (tarif.montant - (tarif.montant * reduction.pourcentage) / 100) %} {{prixReduction|round(0, 'ceil')|number_format(0, ',', '.')}} FCFA  ({{reduction.pourcentage}}%)
{% endfor %} {% else %} {{'Néant'}} {% endif %}
{% else %} Aucun tarif renseigné ! {% endif %}
{% endblock %}