{% extends 'dossiers/patientrecord_tab.html' %} {% block content %}
{% if object.service.slug == "cmpp" %}

Information sur la prise en charge

{% if acts_losts %}

{{ acts_losts|length }} actes facturables qui ne peuvent pas être facturés : {% for act in acts_losts %} {% endfor %}
Date Heure Type d'acte Intervenants Commentaire Refacturation
{{ act.date|date:"SHORT_DATE_FORMAT" }} {{ act.time }} {{ act.act_type }} {% for participant in act.doctors.all %} {{ participant.first_name }} {{ participant.last_name }} {% endfor %} {{ act.comment|default_if_none:"" }} {% for i in act.invoice_set.all %}{{ i.number }}{% if not forloop.last %} - {% endif %}{% endfor %}

{% endif %} {% if acts_pause %}

{{ acts_pause|length }} actes qui sont en pause : {% for act in acts_pause %} {% endfor %}
Date Heure Type d'acte Intervenants Commentaire Refacturation
{{ act.date|date:"SHORT_DATE_FORMAT" }} {{ act.time }} {{ act.act_type }} {% for participant in act.doctors.all %} {{ participant.first_name }} {{ participant.last_name }} {% endfor %} {{ act.comment|default_if_none:"" }} {% for i in act.invoice_set.all %}{{ i.number }}{% if not forloop.last %} - {% endif %}{% endfor %}

{% endif %} {% if hcs %} {% for hc, acts, acts_cared in hcs %} {% if hc.cmpphealthcarediagnostic %}

Prise en charge de diagnostic, débutée le {{ hc.start_date|date:"d/m/Y" }}{% if hc.cmpphealthcarediagnostic.end_date %}, se terminant le {{ hc.cmpphealthcarediagnostic.end_date|date:"d/m/Y" }}{% endif %}

    {% if hc.cmpphealthcarediagnostic.end_date %}
  • : {{ hc.cmpphealthcarediagnostic.end_date|date:"d/m/Y" }}
  • {% endif %} {% if hc.request_date %}
  • : {{ hc.request_date|date:"d/m/Y" }}
  • {% endif %} {% if hc.comment %}
  • : {{ hc.comment }}
  • {% endif %}
  • : {{ hc.cmpphealthcarediagnostic.get_act_number }}
  • {% if acts %}
  • {{ acts|length }} actes pouvant être pris en charge lors de la prochaine facturation :
  • {% for act in acts %} {% endfor %}
    Date Heure Type d'acte Intervenants Commentaire Refacturation
    {{ act.date|date:"SHORT_DATE_FORMAT" }} {{ act.time }} {{ act.act_type }} {% for participant in act.doctors.all %} {{ participant.first_name }} {{ participant.last_name }} {% endfor %} {{ act.comment|default_if_none:"" }} {% for i in act.invoice_set.all %}{{ i.number }}{% if not forloop.last %} - {% endif %}{% endfor %}
    {% endif %} {% if hc.get_nb_acts_cared %}
  • {{ hc.get_nb_acts_cared }} actes déja facturés :
  • {% for act in acts_cared %} {% endfor %}
    Date Heure N° facture Type d'acte Intervenants Commentaire
    {{ act.date|date:"SHORT_DATE_FORMAT" }} {{ act.time }} {{ act.get_invoice_number|default_if_none:"Ancienne facturation" }} {{ act.act_type }} {% for participant in act.doctors.all %} {{ participant.first_name }} {{ participant.last_name }} {% endfor %} {{ act.comment|default_if_none:"" }}
    {% else %}
  • Aucun acte facturé.
  • {% endif %}
{% else %}

Prise en charge de traitement, débutée le {{ hc.start_date|date:"d/m/Y" }}{% if hc.cmpphealthcaretreatment.end_date %}, se terminant le {{ hc.cmpphealthcaretreatment.end_date|date:"d/m/Y" }}{% endif %}

    {% if hc.cmpphealthcaretreatment.end_date %}
  • : {{ hc.cmpphealthcaretreatment.end_date|date:"d/m/Y" }}
  • {% endif %} {% if hc.request_date %}
  • : {{ hc.request_date|date:"d/m/Y" }}
  • {% endif %} {% if hc.comment %}
  • : {{ hc.comment }}
  • {% endif %}
  • : {{ hc.cmpphealthcaretreatment.get_act_number }}
  • {% if acts %}
  • {{ acts|length }} actes pouvant être pris en charge lors de la prochaine facturation :
  • {% for act in acts %} {% endfor %}
    Date Heure Type d'acte Intervenants Commentaire Refacturation
    {{ act.date|date:"SHORT_DATE_FORMAT" }} {{ act.time }} {{ act.act_type }} {% for participant in act.doctors.all %} {{ participant.first_name }} {{ participant.last_name }} {% endfor %} {{ act.comment|default_if_none:"" }} {% for i in act.invoice_set.all %}{{ i.number }}{% if not forloop.last %} - {% endif %}{% endfor %}
    {% endif %} {% if hc.get_nb_acts_cared %}
  • {{ hc.get_nb_acts_cared }} actes déja facturés :
  • {% for act in acts_cared %} {% endfor %}
    Date Heure N° facture Type d'acte Intervenants Commentaire
    {{ act.date|date:"SHORT_DATE_FORMAT" }} {{ act.time }} {{ act.get_invoice_number|default_if_none:"Ancienne facturation" }} {{ act.act_type }} {% for participant in act.doctors.all %} {{ participant.first_name }} {{ participant.last_name }} {% endfor %} {{ act.comment|default_if_none:"" }}
    {% else %}
  • Aucun acte facturé.
  • {% endif %}
{% endif %} {% endfor %} {% endif %} {% endif %} {% if object.service.slug == "sessad-ted" or object.service.slug == "sessad-dys" %}

{% if hcs %} {% for hc in hcs %} {% if hc.sessadhealthcarenotification %}

Notification

    {% if hc.start_date %}
  • : {{ hc.start_date|date:"d/m/Y" }}
  • {% endif %} {% if hc.sessadhealthcarenotification.end_date %}
  • : {{ hc.sessadhealthcarenotification.end_date|date:"d/m/Y" }}
  • {% endif %} {% if hc.request_date %}
  • : {{ hc.request_date|date:"d/m/Y" }}
  • {% endif %} {% if hc.agree_date %}
  • : {{ hc.agree_date|date:"d/m/Y" }}
  • {% endif %} {% if hc.insist_date %}
  • : {{ hc.insist_date|date:"d/m/Y" }}
  • {% endif %} {% if hc.comment %}
  • : {{ hc.comment }}
  • {% endif %}
{% endif %} {% endfor %} {% endif %} {% endif %}
{% endblock %}