{# templates/shared/lot/_lot_details.html.twig #} {# 1. Navigation par onglets (Pills) #} {# 2. Contenu des onglets #}
{# --- ONGLET : FICHE TECHNIQUE --- #}
{{ lot.surfaceTerrain|number_format(0, ',', ' ') }} m²
{{ lot.surfaceBatie|default('0') }} m²
{{ lot.typeBien ? lot.typeBien.libelle : 'Non défini' }}
#{{ lot.id }}
{# --- ONGLET : CLIENT / ACQUÉREUR --- #}
{% if lot.souscription and lot.souscription.client %}
{{ lot.souscription.client.prenoms|slice(0,1)|upper }}{{ lot.souscription.client.nom|slice(0,1)|upper }}
{{ lot.souscription.client.nom }} {{ lot.souscription.client.prenoms }}
{{ lot.souscription.client.telephone }} | {{ lot.souscription.client.email|default('Pas d\'email') }}
{% else %}

Aucun acquéreur n'est actuellement lié à ce lot.

{% endif %}
{# --- ONGLET : FINANCE --- #}
{% if lot.souscription %}
Prix de Vente
{{ lot.souscription.prixFinal|number_format(0, '.', ' ') }} FCFA
Montant Encaissé
{{ lot.souscription.getMontantTotalPaye()|number_format(0, '.', ' ') }} FCFA
Reste à Recouvrer
{{ lot.souscription.getResteAPayer()|number_format(0, '.', ' ') }} FCFA
{% else %} {% endif %}
{# --- ONGLET : DOCUMENTS --- #}
{{ render(path('doc_inline_display', {'targetType': 'LOT_DOC', 'targetId': lot.id })) }}
{# --- ONGLET : PHOTOS --- #}
{{ render(path('doc_inline_display', {'targetType': 'LOT_IMG', 'targetId': lot.id })) }}