{# @author: Benjamin AMOUZOU #} {% extends "commercial/template-commercial.html.twig" %} {% block titre_enfant %} Famille de matières {% endblock %} {% block contenu_principal_commercial %}
{{famille.denomination}}
{# Début tabs entrées #}
Matières premières  {{entreeTotal}}
  Nouveau
{% set nbre = 0 %} {% for matiere in entrees %} {% set nbre = nbre + 1 %} {% endfor %}
# Dénomination Prix informel Prix formel Action
{{nbre}} {{ matiere.denomination }} {% if matiere.prixKiloFormel is defined and matiere.prixKiloFormel is not empty %} {{ matiere.prixKiloFormel }} FCFA {% elseif not matiere.byToFournisseurFormel %} {{'Non acheté'}} {% else %} {{'Non renseigné'}} {% endif %} {% if matiere.prixKiloInformel is defined and matiere.prixKiloInformel is not empty %} {{ matiere.prixKiloInformel }} FCFA {% elseif not matiere.byToFournisseurInformel %} {{'Non acheté'}} {% else %} {{'Non renseigné'}} {% endif %}    {% if is_granted('ROLE_ADMIN') %}    {% endif %}
{{ knp_pagination_render(entrees, 'template-paginator.html.twig') }}
{# Fin tabs entrées #} {# Début tabs sorties #}
Produits finis  {{sortieTotal}}
{% if is_granted('ROLE_ATTACHE_COMMERCIAL') %}   Nouveau {% endif %}
{% set nbre = 0 %} {% for matiere in sorties %} {% set nbre = nbre + 1 %} {% endfor %}
# Dénomination Action
{{nbre}} {{ matiere.denomination }}       {% if is_granted('ROLE_ADMIN') %}    {% endif %}
{{ knp_pagination_render(sorties, 'template-paginator.html.twig') }}
{# Fin tabs sorties #}
{% endblock %}