{% extends 'base_admin.html.twig' %} {% block body %}
{% for message in app.flashes('notice') %} {% endfor %} {% for message in app.flashes('warning') %} {% endfor %} {% for message in app.flashes('error') %} {% endfor %}

Boxes of the order {{ order.orderId }} from the seller {{ order.seller.company }}

Trackings of the boxes

{% for box in order.shipmentBoxes %} {% endfor %} {% for box in order.shipmentBoxes %} {% endfor %}
Tracking box {{ box.boxNumber }}

Quantity by box

{% for box in order.shipmentBoxes %} {% endfor %} {% for line in lines %} {% for lineBox in line.shipmentLineBoxes %} {% endfor %} {% endfor %}
Sku Quantity Quantity in box {{ box.boxNumber }}
{{ line.product.sku }} {{ line.quantity }}
Cancel
{% endblock %} {% block javascripts %} {% endblock javascripts %}