{# 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 %}
Unités et Inventaire

Gestion des lots pour le projet {{ projet.nom }}.

Ventes : {{ ratioVente|number_format(1) }}%
{% for lot in projet.lots %} {% set statutValue = lot.statut.value|default(lot.statut) %} {# LIGNE PRINCIPALE (Désactivée du clic automatique) #} {# LIGNE DE DÉTAIL (Collapse) #} {% else %} {% endfor %}
Désignation Surface Statut Prix Standard Actions
{{ lot.nomBien }}
{{ lot.typeBien ? lot.typeBien.libelle : 'Type non défini' }}
{{ lot.surfaceTerrain|number_format(0, ',', ' ') }} {% 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.