{% extends 'base_rma.html.twig' %} {% import 'macros/macro.html.twig' as macro %} {% block title %} {{ parent() }} Gestion des RMA {% endblock %} {% block stylesheets %} {{ parent() }} {% endblock %} {% block body %} {{ parent() }}

{{ rmas | length }} RMA

{% if not user.hasServiceDemo %} {% endif %}
Filtrer par Statut
{% for rma in rmas %} {% endfor %}
Réf Statut Suivi Client Contact Matériel Actions
{{ rma.code}} {% if rma.isStatusNull and rma.getArticleCode == '' %} Formulaire à remplir {% elseif rma.isStatusNull %} {{ rma.displayStatus }} {% else %} {{ rma.displayStatus }} {% endif %} {% if rma.receptionIntervenant %}
Récep : {{ rma.receptionIntervenant.name }}
{% endif %} {% if rma.diagnosticIntervenant %}
Diag : {{ rma.diagnosticIntervenant.name }}
{% endif %} {% if rma.getBusinessManager and rma.businessManager.name != '' %}
Suivi : {{ rma.businessManager.name }}
{% else %} Inconnu {% endif %}
{{ rma.clientName }}
Code : {{ rma.clientCode }}
{% if rma.clientAgence != '' %}
Agence : {{ rma.clientAgence }}
{% endif %}
{{ rma.contactName }}
{{ rma.contactEmail }}
{% if rma.getArticleCode != '' %}
{{ rma.articleDesignation }}
N° Série : {{ rma.articleCode }}
{% else %} Inconnu {% endif %} {% if rma.getArticleRef %}
Ref Int : {{ rma.articleRef }}
{% endif %} {% if rma.createdAt >= dateMin and rma.createdAt <= dateMax %}
{% else %} {% if rma.getFilenameExt %} {% endif %} {% if rma.getFilenameInt %} {% endif %} {% if rma.getFilenameAcc %} {% endif %} {% endif %}
{% if rma.getArticleCode == '' and rma.isStatusNull %} {% else %} {% endif %}
{% endblock %} {% block modal %} {% endblock %} {% block javascripts %} {{ parent() }} {% endblock %}