When using latest version 1.0.51 of DHL module the order overview (Sales > Orders) shows a blank, with the error message
The entity that was requested doesn't exist. Verify the entity and try again.
I xdebugged the code, the issue error message specifically is coming from Magento order repository model \Magento\Sales\Model\OrderRepository::get.
To report the issue here is that the data. The sales_order_grid can contain a row which is not yet present in the sales_order tabel, this causes the DHL module to retrieve a order for check shipment and triggers the above error in \DHLParcel\Shipping\Ui\Column\Labels::getShipmentsByOrderId.
An improved error handling around getShipmentsByOrderId function could help reduce the sensitiveness of this function blocking the order grid in the Magento backend.
When using latest version
1.0.51of DHL module the order overview (Sales > Orders) shows a blank, with the error messageI xdebugged the code, the issue error message specifically is coming from Magento order repository model
\Magento\Sales\Model\OrderRepository::get.To report the issue here is that the data. The
sales_order_gridcan contain a row which is not yet present in thesales_ordertabel, this causes the DHL module to retrieve a order for check shipment and triggers the above error in\DHLParcel\Shipping\Ui\Column\Labels::getShipmentsByOrderId.An improved error handling around
getShipmentsByOrderIdfunction could help reduce the sensitiveness of this function blocking the order grid in the Magento backend.