{% extends 'base.html.twig' %} {% block title %}Détails Chantier {% endblock %} {% block stylesheets %} {% endblock %} {% block body %}

Informations chantier pour {{ chantier.libelle }} à {{ chantier.adresse1 }} {{ chantier.ville }}

Informations générales
{% if chantier.libelle is defined %} {% endif %}
Entreprise {{ chantier.entreprise.nom }}
Clients
{% for chantierClient in chantier.chantierClients %} {{ chantierClient.client.nom }} {% endfor %}
Dénomination du chantier {{ chantier.libelle }}
Adresse du chantier {{ chantier.adresse1 }}
{{ chantier.adresse2 }}
Code Postal {{ chantier.codePostal }}
Ville {{ chantier.ville }}
Conducteur de travaux {% if chantier.conducteurTravaux %} {{ chantier.conducteurTravaux.titre }} {{ chantier.conducteurTravaux.nom }} {{ chantier.conducteurTravaux.prenom }} {% endif %}
Date d'ouverture du chantier {{ chantier.dateOuverture ? chantier.dateOuverture|date('d/m/Y') : 'Non renseignée' }}
Date de réception PV levée des réserves {{ chantier.dateReceptionPVLeveReserve ? chantier.dateReceptionPVLeveReserve|date('d/m/Y') : 'Non renseignée' }}
Date de clôture prévisionnelle {{ chantier.dateCloturePrevisionnelle ? chantier.dateCloturePrevisionnelle|date('d/m/Y') : 'Non renseignée' }}
Date de clôture réelle {{ chantier.dateClotureReelle ? chantier.dateClotureReelle|date('d/m/Y') : 'Non renseignée' }}
Montant marché initial {{ chantier.montantMarcheInitial }} €
Montant caution {{ chantier.montantCaution }} €
Pourcentage de retenue définitive {{ chantier.pourcentageRetenueDefinitive }} %
Pièces jointes
Avenants Contrat/Travaux supplémentaires
    {% for avenant in avenants %}
  • Avenant n° {{ loop.index }}

    {{ avenant.date | date('d/m/Y') }}

    {{ avenant.designation }}

    {# Remplacez par le champ de description si applicable #}

    {{ avenant.montant }} €

  • {% else %}
  • Aucun avenant n'a été trouvé.
  • {% endfor %} Ajouter AVENANT

Retenues Provisoires

{% for retenue in retenuesProvisoires %} {% else %} {% endfor %}
Intitulé Pourcentage Montant Date Action
{{ retenue.libelle }} {{ retenue.pourcentage }} {{ retenue.montant }} {{ retenue.date|date('d/m/Y') }}
Aucune retenue provisoire trouvée.
Ajouter une retenue

Retenues Définitives

{% for retenue in retenuesDefinitives %} {% else %} {% endfor %}
Intitulé Pourcentage Montant Date Action
{{ retenue.libelle }} {{ retenue.pourcentage }} {{ retenue.montant }} {{ retenue.date|date('d/m/Y') }}
Aucune retenue définitive trouvée.
Ajouter une retenue
{% endblock %}{% block javascripts %} {{ parent() }}{% endblock %}