{% extends 'layouts/admin_layout.html.twig' %} {% block title %}Inventaire Global des Lots {% endblock %} {% block content %}
Vue d'ensemble du parc immobilier et suivi opérationnel des unités.
| Désignation | Projet | Statut | Avancement Chantier | Recouvrement | Prix Standard | |
|---|---|---|---|---|---|---|
|
{{ lot.nomBien }}
{{ lot.typeBien ? lot.typeBien.libelle : 'Type non défini' }}
|
{{ lot.projet.nom }} | {{ statutValue }} |
{% set avancementChantier = lot.avancement|default(0) %}
|
{% set percentPaiement = 0 %}
{% if lot.souscription is defined and lot.souscription is not null %}
{% set percentPaiement = lot.souscription.pourcentagePaiement|default(0) %}
{% endif %}
|
{{ lot.prixStandard|number_format(0, '.', ' ') }} FCFA | |
|
{# --- NAVIGATION DES 5 ONGLETS --- #}
{# 1. Fiche Technique #}
{{ include('_shared/lot/show.html.twig', {'lot': lot}) }}
{% if lot.souscription and lot.souscription.client %}
{# 3. Commercial #}
{{ include('_shared/user/show.html.twig', {'user': lot.souscription.client}) }}
{% else %}
{% if lot.souscription and lot.souscription.agent %}
{# 4. Paiement #}
{{ include('_shared/user/show.html.twig', {'user': lot.souscription.agent}) }}
{% else %}
{% if lot.souscription and lot.souscription.id %}
{# 5. Travaux #}
{% if lot.souscription.modeFinancement and lot.souscription.modeFinancement.value == 'ECHEANCIER' %}
{{ include('_shared/paiement/_list_echeancier.html.twig', {
'echeanciers': lot.souscription.echeanciers,
'souscription': lot.souscription
}) }}
{% else %}
{{ include('_shared/paiement/_list_simple.html.twig', {'souscription': lot.souscription, 'paiements': lot.souscription.paiements }) }}
{% endif %}
{% else %}
{{ render(controller('App\\Controller\\Shared\\LotSharedController::etapesFragment', {'id': lot.id})) }}
|
||||||
|
Aucun lot trouvé. |
||||||