{# # This file is part of MedShakeEHR. # # Copyright (c) 2017 # 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 > Config : actes # # @author Bertrand Boutillier # @contrib fr33z00 #} {% extends "page.html.twig" %} {% import "macroForm.html.twig" as f %} {% block title %}{{ config.designAppName }} : mémo des tarifs de consultation{% endblock %} {% block head %} {{ parent() }} {% endblock %} {% block body %}

Mémo des tarifs de consultation

{# Nav tabs #} {% if page.users | length > 1 %} {% endif %} {# Tab panes #}
{# categories tab #}

{% for k, v in page.tabTypes %}

{{ v.0.catLabel }}

{% if page.secteurs[k] != '' %} {% else %} {% endif %} {% for w in v %} {% if page.secteurs[k] != '' %} {% endif %} {% for key, det in w.details %} {% if page.secteurs[k] != '' %} {% endif %} {% endfor %} {% endfor %}
Code LabelTarif SS Dépassement TotalTarif
{{ w.syntheseActes }} {{ w.label }} {{ w.tarif|number_format(2, '.', ' ') }} {{ w.depassement|number_format(2, '.', ' ') }} {{ w.total|number_format(2, '.', ' ') }}
{% if det.quantite > 1 %} {{ det.quantite }}{{ key }} {% elseif page.secteurs[k] != '' %} {{ key }} {% if det.pourcents != '100' %}({{ det.pourcents }}%){% endif %} {% endif %} {% if det.modifsCCAM %} + {{ det.modifsCCAM }} {% endif %} {{ det.tarif|number_format(2, '.', '') }} {{ det.depassement|number_format(2, '.', '') }} {{ (det.tarif + det.depassement)|number_format(2, '.', '') }}
{% endfor %}
{% endblock %}