{% extends 'layout.html.twig' %} {% block stylesheets %} {{ encore_entry_link_tags('app') }} {% endblock %} {% block javascripts_header %} {{ encore_entry_script_tags('app') }} {{ encore_entry_script_tags('resultat') }} {% endblock %} {% block body %} {% include "module/_title.html.twig" %}
{% include "module/_menu.html.twig" %} {% include "module/_resume_prerequis.html.twig" %}
{# MODULE FINANCIER #}
Module Financier
{% set classResult = getClassGo(resultatFinancier.goResult) %} {% set classGo = classResult.classGo %} {% if resultatFinancier.goResult is not empty %}
{{ resultatFinancier.goResult }}
{% if resultatFinancier.tauxRemplissage.eval_en_cours != resultatFinancier.tauxRemplissage.nbre_total %}
Evaluation en cours {{ resultatFinancier.tauxRemplissage.eval_en_cours }} /{{ resultatFinancier.tauxRemplissage.nbre_total }}
{% endif %} {% else %}
Aucune évaluation n'a été enregistrée
{% endif %}

{% if resultatFinancier is not empty %}

Points Forts :
{% for cotation in resultatFinancier.resultat %} {% if cotation.coeff >= 3 %}
{{ cotation.nbr }} évaluation(s) avec {{ cotation.cotation }}
{% endif %} {% endfor %}
Points Faibles :
{% for cotation in resultatFinancier.resultat %} {% if cotation.coeff < 3 %}
{{ cotation.nbr }} évaluation(s) avec {{ cotation.cotation }}
{% endif %} {% endfor %}
{% for evaluationF in resultatFinancier.mission_indic %} {% if evaluationF.indicateur.coeff < 3 %}
{{ evaluationF.indicateur.critere.evaluation.libelle }}
: {{ evaluationF.indicateur.critere.libelle }}
{{ evaluationF.indicateur.libelle }}
{{ evaluationF.indicateur.cotation }}
{% endif %} {% endfor %} {% endif %}

{# MEDICO TECHNIQUE #}
Module Médico Technique
{% set classResult = getClassGo(resultatTechnique.goResult) %} {% set classGo = classResult.classGo %} {% if resultatTechnique.goResult is not empty %}
{{ resultatTechnique.goResult }}
{% if resultatTechnique.tauxRemplissage.eval_en_cours != resultatTechnique.tauxRemplissage.nbre_total %}
Evaluation en cours {{ resultatTechnique.tauxRemplissage.eval_en_cours }} /{{ resultatTechnique.tauxRemplissage.nbre_total }}
{% endif %} {% else %}
Aucune évaluation n'a été enregistrée
{% endif %}

{% if resultatTechnique is not empty %}

Points Forts :
{% for cotation in resultatTechnique.resultat %} {% if cotation.coeff >= 3 %}
{{ cotation.nbr }} évaluation(s) avec {{ cotation.cotation }}
{% endif %} {% endfor %}
{% endif %} {% if resultatTechnique is not empty %}
Points Faibles :
{% for cotation in resultatTechnique.resultat %} {% if cotation.coeff < 3 %}
{{ cotation.nbr }} évaluation(s) avec {{ cotation.cotation }}
{% endif %} {% endfor %}
{% for evaluationT in resultatTechnique.mission_indic %} {% if evaluationT.indicateur.coeff < 3 %}
{{ evaluationT.indicateur.critere.evaluation.libelle }}
: {{ evaluationT.indicateur.critere.libelle }}
{{ evaluationT.indicateur.libelle }}
{{ evaluationT.indicateur.cotation }}
{% endif %} {% endfor %} {% endif %}

{# Medico ECONOMIQUE #}
Module Médico Economique
{% set classResult = getClassGo(resultatEconomique.goResult) %} {% set classGo = classResult.classGo %} {% if resultatEconomique.goResult is not empty %}
{{ resultatEconomique.goResult }}
{% if resultatEconomique.tauxRemplissage.eval_en_cours != resultatEconomique.tauxRemplissage.nbre_total %}
Evaluation en cours {{ resultatEconomique.tauxRemplissage.eval_en_cours }} /{{ resultatEconomique.tauxRemplissage.nbre_total }}
{% endif %} {% else %}
Aucune évaluation n'a été enregistrée
{% endif %}

Points Forts :
{% if resultatEconomique is not empty %}
{% for cotation in resultatEconomique.resultat %} {% if cotation.coeff >= 3 %}
{{ cotation.nbr }} évaluation(s) avec {{ cotation.cotation }}
{% endif %} {% endfor %}
{% endif %} {% if resultatEconomique is not empty %}
Points Faibles :
{% for cotation in resultatEconomique.resultat %} {% if cotation.coeff < 3 %}
{{ cotation.nbr }} évaluation(s) avec {{ cotation.cotation }}
{% endif %} {% endfor %}
{% for evaluationE in resultatEconomique.mission_indic %} {% if evaluationE.indicateur.coeff < 3 %}
{{ evaluationE.indicateur.critere.evaluation.libelle }}
: {{ evaluationE.indicateur.critere.libelle }}
{{ evaluationE.indicateur.libelle }}
{{ evaluationE.indicateur.cotation }}
{% endif %} {% endfor %} {% endif %}

{% endblock %}