{% extends 'base.html.twig' %}
{% set titleName = "Lot : " ~ lot.numberOfLot %}
{% block title %} POWER DATA | {{titleName}} {% endblock %}
{% block page %}{{titleName}}{% endblock %}
{% block breadcrumb %} {% if titleName != "Home" %} {{titleName}} {% endif %} {% endblock %}
{% block content %}
{% set index = 1 %}
{%for order in lot.dataDolibarJumiaLink %}
Id
Jumia Id
Jumia Number
Dolibarr Id
Items
{% if lot.valid != true and lot.type == constant('App\\Entity\\Dolibarr\\DolibarrJumiaOrder::TYPE_DROPSHIPPING') %}
Action
{% endif %}
{% set index = index + 1 %}
{% endfor %}
{{ index }}
{{ order.jumiaId }}
{{ order.jumiaNumber }}
{{ order.dolibarrId }}
{% if lot.valid != true and lot.type == constant('App\\Entity\\Dolibarr\\DolibarrJumiaOrder::TYPE_DROPSHIPPING') %}
{%for sku,qty in order.listOfSku %}
{{ sku}} {{ arrayOfDolibarrProductBySellerSku[sku] is defined ? '[' ~ arrayOfDolibarrProductBySellerSku[sku]['Barcode'] ~ ']' :'' }}
{{ qty}}
Delete
{% endif %}