{% extends 'layouts/admin_layout.html.twig' %} {% block title %}Dossiers Clients {% endblock %} {% block content %}
Historique et suivi opérationnel des dossiers. Page {{ souscriptions.currentPageNumber }}
| Client | Bien / Lot | Recouvrement | Chantier | Statut | Date | |
|---|---|---|---|---|---|---|
|
{% if s.client.photo %}
{{ s.client.nom|slice(0, 1) }}{{ s.client.prenoms|slice(0, 1) }}
{% endif %}
{{ s.client.nom }}
{{ s.client.prenoms }}
{{ s.client.telephone }}
|
{{ lot.projet.nom }}
{{ lot.nomBien }}
|
{% set pctPaye = s.pourcentagePaiement|default(0) %}
Sur
{{ s.montantTotalDu|number_format(0, ',', ' ') }}
F
|
{% set pctChantier = s.evolutionChantier|default(0) %}
Avancement travaux
|
{% if isEnAttente %} {% endif %} {{ s.statutDossier.getLabel|default('Inconnu') }} | {{ s.dateSouscription|date('d/m/Y') }} | |
|
{# --- NAVIGATION DES 5 ONGLETS --- #}
{# 1. Fiche Technique #}
{{ include('_shared/lot/show.html.twig', {'lot': s.lot}) }}
{{ include('_shared/user/show_client.html.twig', {'user': s.client}) }}
Responsable commercial du dossier{# Modal d'affectation #}
{{ include('_shared/user/show.html.twig', {'user': s.agent}) }}
{% else %}
Aucun agent assigné.
{% endif %}
{% if s.modeFinancement and s.modeFinancement.value == 'ECHEANCIER' %}
{{ include('_shared/paiement/_list_echeancier.html.twig', {
'echeanciers': s.echeanciers,
'souscription': s
}) }}
{% else %}
{{ include('_shared/paiement/_list_simple.html.twig', {'souscription': s, 'paiements': s.paiements }) }}
{% endif %}
{{ render(controller('App\\Controller\\Shared\\LotSharedController::etapesFragment', {'id': s.lot.id})) }}
|
||||||