{# templates/entreprise/appartement/show.html.twig #} {% extends 'entreprise/entreprise_base.html.twig' %} {% block title %}Détails de {{ appartement.titre }} | {{ immeuble.titre }}{% endblock %} {% block body %} {# --- LOGIQUE DE CONTRÔLE --- #} {% set plan = (abonnementActuel and abonnementActuel.abonnement) ? abonnementActuel.abonnement : null %} {% set isExpired = (abonnementActuel is null or not abonnementActuel.isActive()) %} {% set canModify = (not isExpired) %} {% set activeLocation = appartement.locations|filter(l => l.dateFin is null)|first %}
{# --- EN-TÊTE HARMONISÉ --- #}

Lot : {{ immeuble.titre }}

Retour a la liste {% if is_granted('ROLE_ENTREPRISE_ROOT') %}
Modifier
{% endif %}
{% include 'flash_messages.html.twig' %}
{# --- COLONNE GAUCHE : FICHE TECHNIQUE & TARIFS --- #}
{# 1. Fiche Technique #}
Fiche Technique
Configuration
{{ appartement.nbrePieces|default('0') }} Pièces {{ appartement.nbreSalleBain|default('0') }} SDB
Ordre d'affichage
N° {{ appartement.ordre|default('-') }}
{% if appartement.description %}
{{ appartement.description|nl2br }}
{% endif %}
{# 2. Grille Tarifaire #}
Historique des Loyers
{% if is_granted('ROLE_ENTREPRISE_ROOT') %} Nouveau tarif {% endif %}
{% if historiquesLoyer is empty %}

Aucun tarif défini.

{% else %}
{% for loyer in historiquesLoyer %} {% endfor %}
Période Loyer HC Charges Total TTC
{% if loyer.dateFin is null %} Actuel Depuis le {{ loyer.dateDebut|date('d/m/Y') }} {% else %} Du {{ loyer.dateDebut|date('d/m/Y') }} au {{ loyer.dateFin|date('d/m/Y') }} {% endif %} {{ loyer.montantLoyer|format_money }} {{ loyer.totalCharges|format_money }} {{ loyer.totalLoyer|format_money }}
{% endif %}
{# --- COLONNE DROITE : STATUT & CONTRATS --- #}
{# 3. Statut d'Occupation #}
Statut d'Occupation
{% if activeLocation is empty %} Louer {% endif %}
{% if activeLocation is not empty %}
Occupé

Locataire :
{{ activeLocation.locataire.nomComplet }}

{% else %}
Disponible / Vacant

Prêt pour une nouvelle mise en location.

{% endif %}
{# Historique des contrats #}
{# 4. Zone de Danger #} {% if is_granted('ROLE_ENTREPRISE_ROOT') %}
ZONE DE DANGER

La suppression de cet appartement entraînera la perte définitive de tous les loyers et contrats associés.

{{ include('entreprise/appartement/_delete_form.html.twig', {'appartement': appartement, 'id_immeuble': immeuble.id}) }}
{% endif %}
{% endblock %}