Titre :
{{ opportunity.title }}
Type :
{{ opportunity.typeValue }}
Statut d'opportunité :
{{ opportunity.statutValue }}
Date de création :
{% if opportunity.dateCreation is not null %}
{{ opportunity.dateCreation|date('Y-m-d H:i') }}
{% else %}
Non définie
{% endif %}
Client :
{{ opportunity.client.abreviation }} - {{ opportunity.client.paysName }}
Créateur d'opportunité :
{{ opportunity.createur.fullName }}
Responsable commercial :
{{ opportunity.responsableCommerciale.fullName }}
Responsable technique :
{% if opportunity.responsableTechnique is not null %}
{{ opportunity.responsableTechnique.fullName }}
{% else %}
Non défini
{% endif %}
Source d'opportunité :
{% if opportunity.source is not null %}
{{ opportunity.sourceValue }}
{% else %}
Non défini
{% endif %}
{% if opportunity.source == 'R01' or opportunity.source == 'R03' %}
Apporteur d'affaire d'opportunité :
{% if opportunity.apporteurOpportunity is not null %}
{{ opportunity.apporteurOpportunity.fullName }}
{% else %}
Non définie
{% endif %}
{% endif %}
{% if opportunity.source == 'R02' or opportunity.source == 'R03' %}
Partenaire :
{% if opportunity.contact is not null %}
{{ opportunity.contact.name }}
{% else %}
Non définie
{% endif %}
{% endif %}
Financement :
{% if opportunity.financement is not null %}
{{ opportunity.financementValue }}
{% else %}
Non définie
{% endif %}
Probabilité de concrétisation :
{% if opportunity.probabiliteConcretisation is not null %}
{{ opportunity.probabiliteConcretisation }} %
{% else %}
Non définie
{% endif %}
Budget :
{% if opportunity.budget is not null %}
{{ opportunity.budget|number_format(0,'',' ') }} {{ opportunity.unityAbreviation }}
{% else %}
Non définie
{% endif %}
{% if opportunity.type == 'T02' %}
Date de soumission :
{{ opportunity.dateSoumission|date('Y-m-d') }}
{% endif %}
{% if opportunity.type == 'T02' and opportunity.typeSoumission %}
Type de soumission :
{{ opportunity.typeSoumissionValue }}
{% endif %}
{% if opportunity.type == 'T02' %}
Montant de caution :
{% if opportunity.montantCaution is not null %}
{{ opportunity.montantCaution|number_format(0,'',' ') }} {{ opportunity.unityAbreviation }}
{% else %}
Non définie
{% endif %}
{% endif %}
Montant d'offre :
{% if opportunity.montantOffre is not null %}
{{ opportunity.montantOffre|number_format(0,'',' ') }} {{ opportunity.unityAbreviation }}
{% else %}
Non définie
{% endif %}
Montant part SFM :
{% if opportunity.montantPartSFM is not null %}
{{ opportunity.montantPartSFM|number_format(0,'',' ') }} {{ opportunity.unityAbreviation }}
{% else %}
Non définie
{% endif %}
Montant contractualisé :
{% if opportunity.montantContractualise is not null %}
{{ opportunity.montantContractualise|number_format(0,'',' ') }} {{ opportunity.unityAbreviation }}
{% else %}
Non définie
{% endif %}
{% if opportunity.statut == 'S09' %}
Date de suspension :
{% else %}
Date de clôture :
{% endif %}
{% if opportunity.dateCloture is not null %}
{{ opportunity.dateCloture|date('Y-m-d H:i') }}
{% else %}
Pas encore
{% endif %}
Projet(s) :
{% if opportunity.projet|length %}
{% for projet in opportunity.projet %}
{{ projet.intitule }}
{% endfor %}
{% else %}
Aucun projet
{% endif %}
{% if opportunity.newProjets|length %}
Projet(s) concrétisé :
{% for projet in opportunity.newProjets %}
{{ projet.intitule }}
{% endfor %}
{% endif %}
Intervenants :
{% if opportunity.intervenants|length %}
{% for intervenant in opportunity.intervenants %}
{{ intervenant.fullName }}
{% endfor %}
{% else %}
Aucun intervenant
{% endif %}
{% if opportunity.opportunityFiles|length %}
{% trans %}Pièces jointe{% endtrans %} |
{% trans %}Date Insertion{% endtrans %} |
{% trans %}Actions{% endtrans %} |
{% for fichier in opportunity.opportunityFiles %}
{{ fichier.file|truncate(75, true, '...') }} |
{{ fichier.dateInsertion|date('Y-m-d H:i') }} |
{% set extension = fichier.file | split(".") | last | lower %}
{% if extension in ["doc", "ppt", "xls", "docx", "pptx", "xlsx",'pdf','txt','sql'] %}
{% elseif extension in ['png','jpg','jpeg','gif'] %}
{% endif %}
|
{% endfor %}
{% endif %}
Description :
{% if opportunity.description is not null and opportunity.description != '' %}
{{ opportunity.description|raw }}
{% else %}
Aucun description
{% endif %}