{# @author: Benjamin AMOUZOU #} {% extends "commercial/template-commercial.html.twig" %} {% block titre_enfant %} Fournisseur {% endblock %} {% block contenu_principal_commercial %}
Fiche fournisseur

{#Les différentes informations du fournisseurs#}












{#Les différents personnes contacts du fournisseurs#}

{% if fournisseur.personneContacts is not empty %}
{% for personneContact in fournisseur.personneContacts %} {% endfor %}
Nom et prénoms Poste Contacts Email Type contact
{% if personneContact.sexe == 'F'%} {{'Mme'}} {% else %} {{'M. '}} {% endif %} {{personneContact.nom}} {{personneContact.prenoms}} {{personneContact.poste}} {% if personneContact.contacts is defined and personneContact.contacts is not empty %} {% set contacts = personneContact.contacts|split('/') %} {% for personneContact in contacts %} {{personneContact}}
{% endfor %} {% endif %}
{% if personneContact.email is defined %} {% if personneContact.email is not empty %} {{personneContact.email}} {% else %} Néant {% endif %} {% endif %} {% if personneContact.type.denomination is defined and personneContact.type.denomination is not empty %} {{personneContact.type.denomination}} {% else %} {{'Néant'}} {% endif %}
{% else %}
{% endif %} {#Le prix de rachat des matières chez le fournisseur#}

{% if fournisseur.rachatMatieres is not empty %}
{% for rachat in fournisseur.rachatMatieres %} {% endfor %}
Matière première Prix de rachat du kilo
{{rachat.matierePremiere.denomination}} {{rachat.prixAuKilo}} FCFA
{% else %}
{% endif %} {# Les différents services fournis au fournisseur par AGR #}

{% if fournisseur.serviceFournis is not empty %}
{% for serviceFourni in fournisseur.serviceFournis %} {% endfor %}
Prestation de service Facturation
{{serviceFourni.service.denomination}} {% if serviceFourni.serviceALaDemande %}{{'(à la demande)'}}{% endif %}
    {% for facturation in serviceFourni.facturationServices %}
  • {{facturation.prixService|number_format(0, ',', '.')}} FCFA {{facturation.typeFacturation.denominationCourte}}
  • {% endfor %}
{% else %}
{% endif %} {# Les différents conditions d'enlèvements #}

{% if fournisseur.conditionEnlevements is not empty %}
    {% for condition in fournisseur.conditionEnlevements %}
    {% endfor %}
{% else %}
{% endif %}
{# Les différents matériels vendus par AGR au fournisseur #}

{% if fournisseur.materielAchetes is not empty %}
{% for materielAchete in fournisseur.materielAchetes %} {% endfor %}
Matériel Prix de vente Quantité vendue
{{materielAchete.materiel.denomination}} {{materielAchete.prixAchat|number_format(0, ',', '.')}} FCFA {{materielAchete.quantite}}
{% else %}
{% endif %}
{# Fin matériels vendus matériels vendus#}
{% endblock %}