{# templates/entreprise/location/index.html.twig #} {% extends 'entreprise/entreprise_base.html.twig' %} {% block title %}Contrats de Location | {{ entreprise.raisonSociale|default('Mon Bureau') }}{% endblock %} {% block body %} {# --- LOGIQUE DE TRI --- #} {% set currentSort = app.request.query.get('sort', 'dateDebut') %} {% set currentDir = app.request.query.get('direction', 'DESC') %} {% set nextDirection = (currentDir == 'ASC') ? 'DESC' : 'ASC' %} {# --- VARIABLES DE CONTRÔLE --- #} {% set plan = (abonnementActuel and abonnementActuel.abonnement) ? abonnementActuel.abonnement : null %} {% set totalLocations = locations|length %} {% set isExpired = (abonnementActuel is null or not abonnementActuel.isActive()) %} {% set quotaAtteint = (plan and plan.limiteLocation > 0 and totalLocations >= plan.limiteLocation) %} {% set canAddLocation = (not isExpired and not quotaAtteint) %} {% set canModify = (not isExpired) %}
Suivi des baux et des occupations de vos Appartements.
Aucun contrat de location trouvé.
| Locataire | Type | Appartement / Lot | Début | Statut | Actions |
|---|---|---|---|---|---|
|
{{ location.locataire.nom|upper }} {{ location.locataire.prenom }}
{{ location.locataire.telephone }}
|
{% if location.typeBail == constant('App\\Entity\\Entreprise\\Location::TYPE_PROFESSIONNEL') %} PRO {% else %} HAB {% endif %} |
{{ location.appartement.titre }}
{{ location.appartement.immeuble.titre }} (Lot)
|
{{ location.dateDebut|date('d/m/Y') }} | {% if location.dateFin is null %} Actif {% else %} Terminé {% endif %} |
|