{% if not opportunites|length %} {% else %}
{% for opportunity in opportunites %} {% endfor %}
{% trans %}Titre d'opportunité{% endtrans %} {% trans %}Client{% endtrans %} {% trans %}Projet{% endtrans %} {% trans %}Type{% endtrans %} {% trans %}Date de soumission{% endtrans %} {% trans %}Statut{% endtrans %} {% trans %}Actions{% endtrans %}
{{ opportunity.title }} {{ opportunity.client.abreviation }} - {{ opportunity.client.paysName }} {% if opportunity.projet|length %} {% for projet in opportunity.projet %} {{ projet.intitule }} {% endfor %} {% else %} Non défini {% endif %} {{ opportunity.typeValue }} {% if opportunity.type == 'T02' and opportunity.typeSoumission %}- {{ opportunity.typeSoumissionAbreviation }}{% endif %} {% if opportunity.type == 'T02' and opportunity.dateSoumission %} {{ opportunity.dateSoumission|date('Y-m-d') }} {% else %} *** {% endif %} {{ opportunity.statutValue }} {% if app.user and is_granted('ROLE_TRAITER_OPPORTUNITY_CRM') and opportunity.id in is_next_level and app.request.get('nature') == 'mine' %} {% elseif app.user and is_granted('ROLE_TRAITER_OPPORTUNITY_CRM') and opportunity.id in is_finish and app.request.get('nature') == 'mine' %} {% endif %} {% include('CRM/OpportunityCRM/tabs/tab_action.html.twig') %}
{% endif %}