{% extends 'base.html.twig' %} {% block title %}Produit {{productFollow.manufacturerSerialNumber}}{% endblock %} {% block title_page %}Produit : {{productFollow.manufacturerSerialNumber}} {% if productFollow.companySerialNumber is not null %} - {{productFollow.companySerialNumber}}{% endif %} {% endblock %} {% block container_start %}

Informations produit

{% if is_granted("ROLE_EDIT_PRODUCT_FOLLOW") %} {% endif %}
{% if productFollow.product.filename %} image-product {% else %} Image-non-disponible {% endif %}
Identifiant
{{productFollow.id}}
Société
{{productFollow.company.name}}
Produit
{{productFollow.product.name}}
Catégorie(s)
    {% for category in productFollow.product.category %}
  • {{category.name}}
  • {% endfor %}
Descritpion
{{productFollow.product.description}}
Référence
{{productFollow.product.reference}}
Création
{{productFollow.createdAt|date("d/m/Y")}}
Dernière MAJ :
{{productFollow.updatedAt|date("d/m/Y")}}
Numéro de série fabriquant :
{{productFollow.manufacturerSerialNumber}}
Numéro de série société :
{{productFollow.companySerialNumber}}
Etat :
{{productFollow.state}}

Historique

{% set i = 1 %} {% for maintenance in maintenances %} {% set i = i + 1 %} {% endfor %}
# Date Site ville type
{{ i }} {{maintenance.maintenance.doAt|date("d/m/Y")}} {{maintenance.maintenance.site.name}} {{maintenance.maintenance.site.city}} {{maintenance.type.name}} {% if is_granted("ROLE_VIEW_MAINTENANCE") %} {% endif %}
{#
Print
#}
{% endblock %}