{# @author: Benjamin AMOUZOU #} {% extends "commercial/template-commercial.html.twig" %} {% block titre_enfant %} Prix et tarifs {% endblock %} {% block style %} {% endblock %} {% block contenu_principal_commercial %}
Prix et tarifs
{# Début tabs service #}
Tarifs services  
{# Fin tabs service #} {# Début tabs materiel #}
Prix materiels  
{% if materiels is not empty %}
{% for materiel in materiels %}
{{materiel.denomination}}
{% if materiel.tarifs is not empty %} {% for tarif in materiel.tarifs %} {% endfor %} {% else %} Aucun tarif renseigné ! {% endif %}
{% endfor %}
{% else %}
{% endif %}
{# Fin tabs materiel #} {# Début tabs formel #}
Prix fournisseurs formels  
{% if matiereFormels is not empty %}
{% for matiere in matiereFormels %} {% endfor %}
Matière première Prix par tonne Prix par kg Edition
{{matiere.denomination}} {% set montant = matiere.prixKiloFormel * 1000 %} {{ montant|number_format(0, ',', '.') }} FCFA {{ matiere.prixKiloFormel|number_format(0, ',', '.') }} FCFA   
{{ knp_pagination_render(matiereFormels, 'template-paginator.html.twig') }}
{% else %}
{% endif %}
{# Fin tabs formel #} {# Début tabs informel #}
Prix fournisseurs informels  
{% if matiereInformels is not empty %}
{% for matiere in matiereInformels %} {% endfor %}
Matière première Prix maximale par tonne Prix maximale par kg Edition
{{matiere.denomination}} {% set montant = matiere.prixKiloInformel * 1000 %} {{ montant|number_format(0, ',', '.') }} FCFA {{ matiere.prixKiloInformel|number_format(0, ',', '.') }} FCFA   
{{ knp_pagination_render(matiereFormels, 'template-paginator.html.twig') }}
{% else %}
{% endif %}
{# Fin tabs informel #}
{% endblock %} {% block script %} {% endblock %}