{% include 'sort.html.twig' with { 'col' : 'q.id', 'name': 'form.id' } %} | {% include 'sort.html.twig' with { 'col' : 'q.code', 'name': 'form.code' } %} | {% include 'sort.html.twig' with { 'col' : 'q.countCode', 'name': 'nombre d\'utilisations' } %} | {% include 'sort.html.twig' with { 'col' : 'q2.nom', 'name': 'form.point_de_vente' } %} | {% include 'sort.html.twig' with { 'col' : 'q.date_debut_validite', 'name': 'Début de la validite' } %} | {% include 'sort.html.twig' with { 'col' : 'q.date_fin_validite', 'name': 'Fin de la validite' } %} | {% include 'sort.html.twig' with { 'col' : 'q.action', 'name': 'Action' } %} | {% include 'sort.html.twig' with { 'col' : 'q.used_at', 'name': 'Utilisé le:' } %} |
---|---|---|---|---|---|---|---|
{{ entity.id }} | {{ entity.code }} | {{ entity.countCode ? entity.countCode : 0 }} | {% if entity.pointDeVente %} {{entity.pointDeVente.getUniqueName}} {% endif %} | {{ entity.dateDebutValidite | date('d/m/Y Ã H:i:s') }} | {{ entity.dateFinValidite | date('d/m/Y Ã H:i:s') }} | {{ entity.actionToPrint }} | {% if null != entity.usedAt %}{{ entity.usedAt| date('d/m/Y Ã H:i:s') }}{% endif %} |