{% extends '::base2.html.twig' %} {% block title %}Compte {{ compte.raisonSociale }}{% endblock %} {% block stylesheets %}{{ parent() }}{% endblock %} {% block body %}

Compte {{ compte.raisonSociale }} Info

{#
Info Compte
#}
{% if compte.logo is empty %} {% else %} {% endif %}
{{ compte.raisonSociale }}
{{ compte.matriculeFiscale }}
TEL: {{ compte.tel }}
FAX: {{ compte.fax }}
{{ compte.email }}
{{ compte.address }}
{% if compte.utilisateurs is not empty %}
Gestion des Utilisateurs Compte
{% for user in compte.utilisateurs %} {% endfor %}
# Nom & Prénom Mobile Tel Email Rôle Action
{{ user.id }} {{ user.firstname }} {{ user.lastname }} {{ user.phonenumber }} {{ user.telnumber }} {{ user.email }} {% if user.function == 'USER_D' %} Demandeur {% elseif user.function == 'USER_A' %} Acheteur {% else %} Représentant {% endif %} {% if user.function == 'USER_D' %} {% endif %} {% if user.function == 'USER_R' %} {% endif %} {% if user.enabled == true %} Enabled {% else %} Disabled {% endif %}
{% endif %} {% if compte.compteFacturation is not empty %}
Gestion des Comptes de facturations
{% for compteFact in compte.compteFacturation %} {% endfor %}
# Raison Sociale Matricule Fiscale Action
{{ compteFact.id }} {{ compteFact.raisonSociale }} {{ compteFact.matriculeFiscale }} Modifier {% if compteFact.enabled == false %} Disabled {% else %} Enabled {% endif %}
{% endif %} {% if compte.departement is not empty %}
Gestion des Département
{% for dep in compte.departement %} {% endfor %}
# Nom département Action
{{ dep.id }} {{ dep.nom }} Modifier {% if dep.enabled == true %} Enabled {% else %} Disabled {% endif %}
{% endif %}
{% block javascripts %} {{ parent() }} {% endblock %} {% endblock %}