{% extends '@Core/base.html.twig' %} {% block sectionTitle %}Devoluciones{% endblock %} {% block sectionActions %} Generar devolución {% endblock %} {% block breadcrumbLinks %}
  • Devoluciones
  • {% endblock %} {% block content %}
    {% for flash_message in app.session.flashBag.get('success') %}
    {{ flash_message }}
    {% endfor %} {% include '@Core/Return/returns_searcher.html.twig' %}
    LISTADO DE DEVOLUCIONES
    {% for item in returns %} {% else %} --- {% endif %} {% else %} --- {% endif %} {% endfor %}
    COD-Devolución Fecha de creación Tienda Usuario creación Proveedor Stock en devolución Fecha de envío Fecha de reparación o abono Tipo Estado Origen
    {{ item.alias }}{##} {{ item.createdAt | date('d/m/Y H:i') }} {{ item.shop.name }} {{ item.user.name }} {{ item.dealer.name }} {{ item.returnItem | length + item.returnItemLite | length }} {% if item.sentAt is not null %} {{ item.sentAt | date('d/m/Y G:i') }} {% if item.returnedAt %} {{ item.returnedAt | date('d/m/Y G:i') }} {% if item.type is not null %} {{ item.type.description }} {% else %} Por definir {% endif %} {{ item.status.description }} {% if item.incidence is not null %}INCIDENCIA{% else %}PROVEEDOR{% endif %}
    {% endblock%}