{# templates/admin/projet/tabs/_inventory.html.twig #} {# 1. Calcul des statistiques en temps réel #} {% set totalLots = projet.lots|length %} {% set vendus = projet.lots|filter(l => (l.statut.value|default(l.statut)) in ['VENDU', 'LIVRE'])|length %} {% set ratioVente = totalLots > 0 ? (vendus / totalLots * 100) : 0 %}
Gestion des lots pour le projet {{ projet.nom }}.
Ventes : {{ ratioVente|number_format(1) }}%| Désignation | Surface | Statut | Prix Standard | Actions |
|---|---|---|---|---|
|
{{ lot.nomBien }}
{{ lot.typeBien ? lot.typeBien.libelle : 'Type non défini' }}
|
{{ lot.surfaceTerrain|number_format(0, ',', ' ') }} m² | {% set badgeClass = { 'DISPONIBLE': 'bg-success-soft', 'VENDU': 'bg-danger-soft', 'RESERVE': 'bg-warning-soft' } %} {{ statutValue }} | {{ lot.prixStandard|number_format(0, '.', ' ') }} FCFA |
{# Nouveau Bouton Détails (Action de déroulement) #}
{# Bouton Modifier #}
{# Bouton Supprimer #}
|
|
{% include '_shared/lot/_lot_details.html.twig' with {'lot': lot} %}
|
||||
|
Aucun lot enregistré pour ce projet. |
||||