{% if is_granted("ROLE_LIST_PRODUCT_FOLLOW_ON_SITE") %}
{#
#}
| # |
Nom |
Reference |
Série Fab. |
Série Societe |
Commentaire |
|
{% set i = 1 %}
{% for product in productFollow.productsFollows %}
| {{i}} |
{{product.product.name}} |
{{product.product.reference}} |
{{product.manufacturerSerialNumber}} |
{{product.companySerialNumber}} |
|
{% if is_granted("ROLE_VIEW_PRODUCT_FOLLOW") %}
{% endif %}
|
{% set i = i + 1 %}
{% endfor %}
{% endif %}
{% if is_granted("ROLE_LIST_MAINTENANCE_ON_SITE") %}
{#
#}
| # |
Date |
Site |
ville |
type |
|
{% set i = 1 %}
{% for maintenance in maintenances %}
| {{ 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 %}
|
{% set i = i + 1 %}
{% endfor %}
{% endif %}