{# # This file is part of MedShakeEHR. # # Copyright (c) 2018-2021 # Bertrand Boutillier # http://www.medshake.net # # MedShakeEHR is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # any later version. # # MedShakeEHR is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with MedShakeEHR. If not, see . #/ /## # Template > patient : dossier patient, structure de base étendue # par fichiers patient.html.twig des dossiers modules # # @author Bertrand Boutillier # @contrib fr33z00 # @contrib DEMAREST Maxime #} {% extends "page.html.twig" %} {% block title %}{{ page.patient.administrativeDatas.firstname.value|e }} {{ (page.patient.administrativeDatas.lastname.value|default(page.patient.administrativeDatas.birthname.value))|e }} - {{ config.designAppName }} {% endblock %} {% block cssEmbed %} {{ parent() }} tr.collapsing { transition:none; -webkit-transition: none; display:table-row; } #newDoc { display: none; } .imageDc img { max-width: 330px; max-height: 330px; } .voirframes { cursor: pointer; } #historique span.histoElementHeure { display : none !important; } #historiqueToday span.histoElementDate { display : none !important; } {% endblock %} {% block jsEmbed %} {{ parent() }} var dicomAutoSendPatient = {{ config.dicomAutoSendPatient }}; var signPeriphName = '{{ config.signPeriphName }}'; {% if config.optionGeActiverLapInterne == 'true' %} lapAlertPatientTermeGrossesseSup46 = {{ config.lapAlertPatientTermeGrossesseSup46 }}; lapAlertPatientAllaitementSup3Ans = {{ config.lapAlertPatientAllaitementSup3Ans }}; lapModeFonctionnement = '{{ config.theriaqueMode }}'; {% endif %} {% endblock %} {% block jsFiles %} {{ parent() }} {# JS fonctions pour Vitale #} {% if config.optionGeActiverVitaleLecture =='true' %} {% endif %} {# JS général du dossier patient #} {# JS Transmissions #} {% if config.optionGeActiverTransmissions == 'true' and config.transmissionsPeutCreer == 'true' %} {% endif %} {# JS LAP #} {% if config.optionGeActiverLapInterne == 'true' %} {% endif %} {# JS LAP Externe #} {% if config.optionGeActiverLapExterne == 'true' and config.utiliserLapExterneName is not empty %} {% endif %} {# JS spécifiques des formulaires présents à l'affichage initial de la page #} {% for i in page.listeForms %} {% endfor %} {% endblock %} {% block cssFiles %} {{ parent() }} {% endblock %} {% block head %} {{ parent() }} {% endblock %} {% block body %} {# alerte dossier supprimé #} {% if page.patient.dossierType == "deleted" %} {% endif %} {# identité patient #}
{% include('inc-ajax-patientAdminData.html.twig') %}
{# univtag patient #} {% if page.univTagsListHtml is not empty %} {% if page.univTags.typeDroitAjoRet %}
{% endif %}
{{ page.univTagsListHtml }}
{% endif %} {% endblock %} {% block modals %} {# modal changer nom consultation ou doc #} {% include 'inc-patientModal-changerTitre.html.twig' %} {# modal rapatrier mesures examen particulier #} {% include 'inc-patientModal-getSpecificDicomData.html.twig' %} {# modal éditer infos adminsitratives du patient #} {% include 'inc-patientModal-editAdminData.html.twig' %} {# modal changer la date d'une ligne d'historique #} {% include 'inc-patientModal-changerDateEffet.html.twig' %} {# modal d'ajout de mot suivi #} {% if config.optionsDossierPatientActiverMotSuivi == 'true' %} {% include 'inc-patientModal-motSuivi.html.twig' %} {% endif %} {# modal phonecapture #} {% if config.optionGeActiverPhonecapture == 'true' %} {% include 'inc-patientModal-phonecapture.html.twig' %} {% endif %} {# modals spécifiques LAP ON #} {% if config.optionGeActiverLapInterne == 'true' %} {# recherche CIM10 #} {% include 'inc-patientModal-searchCIM10.html.twig' %} {# recherche Allergie #} {% include 'inc-patientModal-searchAllergie.html.twig' %} {# modal recherche de médicament #} {% include 'inc-lapModalRechercher.html.twig' %} {# modal voir ordonnance #} {% include 'inc-lapModalVoirOrdonnance.html.twig' %} {# modal spécifier date d'arrêt effective #} {% include 'inc-lapModalMedicDateArretEffective.html.twig' %} {# modal générique pour les alertes LAP #} {% include 'inc-lapModalAlertes.html.twig' %} {# modal générique pour les alertes SAM #} {% include 'inc-lapModalAlerteSam.html.twig' %} {# modal générique pour les infos médicament #} {% include 'inc-lapInfosMedic.html.twig' %} {# modal enregistrer comme prescription type #} {% include 'inc-lapModalPresPre.html.twig' %} {# modal créer nouvelle catégorie de prescription type #} {% include 'inc-lapModalPresTypesCatNew.html.twig' %} {% endif %} {# modals spécifiques Transmissions #} {% if config.optionGeActiverTransmissions == 'true' and config.transmissionsPeutCreer == 'true' %} {# modal nouvelle transmission #} {% include 'inc-transmissionsNouvelleModal.html.twig' %} {% endif %} {# modal CPS Vitale #} {% if config.optionGeActiverVitaleLecture =='true' %} {% include 'inc-modalFaireFse.html.twig' %} {% endif %} {% endblock %}