Suivi médical de {% if suivi.patient.sex == 'Homme' %} Mr {% elseif suivi.patient.sex == 'Femme' %} Mme {% else %} M./Mme {% endif %} {{ suivi.patient.family }} {{ suivi.patient.given }} ({{ suivi.patient.age }} ans)

Informations générales

Date d'entrée à l'hôpital: {{ suivi.hospitalAdmissionDate|date('d/m/Y') }}

Date de sortie de l'hôpital: {{ suivi.dischargeDate|date('d/m/Y') }}

Numéro de sécurité sociale: {{ suivi.patient.socialSecurityNumber }}

Type cardiovasculaire: {{ suivi.cardiovascularType }}

Tabagisme : {{ suivi.isSmoker ? 'Fumeur' : 'Non fumeur' }}
Traitement antiplaquettaire multiple : {{ suivi.multipleAntithrombotics ? 'Recommandé' : 'Absent' }}
{% if suivi.note %}

Note : {{ suivi.note }}

{% endif %}

Risques génétiques

{% set lpaValue = null %} {% set anyRisk = false %} {% for risk in suivi.geneticRisks %} {% if risk.name == 'hfhe' or risk.name == 'lpa' %} {% set anyRisk = risk.value or anyRisk %}
{% if risk.name == 'hfhe' %} HFHe: {% elseif risk.name == 'lpa' %} LPA: {% endif %} {% if risk.value %} Présent {% else %} Absent {% endif %}
{% endif %} {% if risk.name == 'lpa' and risk.value == true %} {% set lpaValue = (suivi.geneticRisks | filter((r) => r.name == 'lpaValue')) | first %}
Valeur LPA: {{ lpaValue.value }}
{% endif %} {% endfor %} {% if not anyRisk %}

Aucun risque génétique à signaler

{% endif %}

Surveillances nécessaires

{% for item in suivi.necessaryMonitoring %}

Spécialité : {{ item.type }}/ {{ item.name }}

Mesure référentielle : {{ item.value }} {{ item.unit !='' ? item.unit : '' }}

{% if item.type == "LDL-c non calculable" %} {% set correspondingObjective = suivi.personalizedTreatment | filter((i) => i.type == item.type) | first %} {% else %} {% set correspondingObjective = suivi.personalizedTreatment | filter((i) => i.name == item.name) | first %} {% endif %}

Objectif : {% if correspondingObjective %} {{ correspondingObjective.value }} {{ correspondingObjective.unit }} {% endif %}

{% endfor %}

Médecins

Médecin responsable

Nom et Prénom : {{ suivi.doctor.family }} {{ suivi.doctor.given }}

Adresse: {{ suivi.doctor.streetAddressLine }}, {{ suivi.doctor.postalCode }} , {{ suivi.doctor.country }}

Spécialité: {{ suivi.doctor.displayName }}

Téléphone: {{ suivi.doctor.telecom }}

Organisation: {{ suivi.doctor.organizationName }}

{% for med in suivi.doctorMonitoring %}

Suivi par un autre médecin

Nom et Prénom: {{ med.family }} {{ med.given }}

Adresse : {{ med.streetAddressLine }}, {{ med.postalCode }}

Spécialité : {{ med.speciality }}

Type : {{ med.type }}

Téléphone : {{ med.telecom }}

{% endfor %}