{% set active = 'client' %} {% extends 'base.html.twig' %} {% block body %}
| Date | Client | Type | Numéro de référence | Service | Quantité | |
|---|---|---|---|---|---|---|
| {{ item.getFormattedDate() }} | {{ item.client }} | {{ type | replace({'_' : ' '}) | capitalize }} | {% if devis.hasIntervention() %} {{ item }} {% elseif devis.hasReparation() %} {{ item }} {% endif %} | {{ heure.service }} | {{ heure.heure }} H |
|
| Il n'y a pas d'heure assignée à cette souscription | ||||||
| Id | Active | Date de souscription | Forfait | Nombre d'heure | Nombre d'heures restantes | Prix | actions |
|---|---|---|---|---|---|---|---|
| {{ souscription.id }} |
{% set class = 'rounded text-white p-1 my-2' %}
{% if souscription.isOverload() %}
Quota dépassé
{% endif %}
{% if souscription.isOver() %}
Terminée
{% else %}
En cours
{% endif %}
|
{{ souscription.date ? souscription.date|date('Y-m-d H:i:s') : '' }} | {{ souscription.forfait }} | {{ souscription.nbheure }} H | {{ souscription.getNbHeureRemaining() }} H | {{ souscription.prix }} € | Voir {% if app.user.is('dev') %} Modifier {% endif %} |
|
Aucune souscription existante
|
|||||||