{% extends "@EasyAdmin/page/content.html.twig" %} {% block content %}

{{ title|trans({}, 'admin') }}


{% if orders is not empty %} {% for group in orders %}

{{ group.date }} - {{ 'dispatchOrder.shippingType'|trans({}, 'admin') }}: {{ group.shippingType }}


{% for order in group.orders %}

{{ 'dispatchOrder.order'|trans({}, 'admin') }}: {{ order.id }}

{% for item in order.orderItems %} {% endfor %}
{{ 'dispatchOrder.product'|trans({}, 'admin') }} {{ 'dispatchOrder.quantity'|trans({}, 'admin') }}
{{ item.productSku }} {{ item.quantity }}

{% endfor %}

{% endfor %} {% else %}

{{ 'dispatchOrder.noExist'|trans({}, 'admin') }}

{% endif %}
{% endblock %}