{% 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 %}

{% if productFollow.company is not null %} image-product {% else %} {% endif %}

Informations produit

{% if is_granted("ROLE_EDIT_PRODUCT_FOLLOW") %} {% endif %} {% if is_granted("ROLE_DELETE_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}}
Est un Pack :
{% if productFollow.product.isPack %} Oui {% else %} Non {% endif %}
Est dans le Pack :
{% if productFollow.pack is null %} Aucun {% else %} #{{productFollow.pack.id}} ({{ productFollow.pack }}) {% endif %}
Création
{{productFollow.createdAt|date("d/m/Y à H:i:s")}}
Dernière MAJ :
{{productFollow.updatedAt|date("d/m/Y à H:i:s")}}
Numéro de série fabriquant :
{{productFollow.manufacturerSerialNumber}}
Numéro de série société :
{{productFollow.companySerialNumber}}
Etat :
{{productFollow.state}}
{% if not productFollow.product.isPack %}

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")}} {% if is_granted("ROLE_VIEW_MAINTENANCE") %} {{maintenance.maintenance.site.name}} {% endif %} {{maintenance.maintenance.site.city}} {{maintenance.type.name}} {% if is_granted("ROLE_VIEW_MAINTENANCE") %} {% endif %}
{% else %}
{% if is_granted("ROLE_LIST_PRODUCT_FOLLOW_ON_SITE") %}
{#

Fixed Header Table

#}
{% set i = 1 %} {% for product in productFollow.productsFollows %} {% set i = i + 1 %} {% endfor %}
# Nom Reference Série Fab. Série Societe Commentaire
{{i}} {{product.product.name}} {{product.product.reference}} {{product.manufacturerSerialNumber}} {{product.companySerialNumber}} {% if is_granted("ROLE_VIEW_PRODUCT_FOLLOW") %} {% endif %}
{% endif %} {% if is_granted("ROLE_LIST_MAINTENANCE_ON_SITE") %}
{#

Fixed Header Table

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