{# 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) %}
{# --- EN-TÊTE --- #}

Suivi des baux et des occupations de vos Appartements.

{% if is_granted('ROLE_ENTREPRISE_COLLAB') %}
Nouveau Contrat
{% endif %}
{% include 'flash_messages.html.twig' %} {# --- BARRE DE RECHERCHE --- #}
{# --- TABLEAU --- #}
{% if locations is empty %}

Aucun contrat de location trouvé.

{% else %}
{% for location in locations %} {% endfor %}
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 %}
{% endif %}
{% endblock %}