diff --git a/app/code/Magento/Dhl/Model/Carrier.php b/app/code/Magento/Dhl/Model/Carrier.php index d89ca4685960b..28382da46ef50 100644 --- a/app/code/Magento/Dhl/Model/Carrier.php +++ b/app/code/Magento/Dhl/Model/Carrier.php @@ -2478,8 +2478,8 @@ protected function _parseXmlTrackingResponse($trackings, $response) } $shipmentInfo = $awbinfo->ShipmentInfo; - if ($shipmentInfo->ShipmentDesc) { - $awbinfoData['service'] = (string)$shipmentInfo->ShipmentDesc; + if ($shipmentInfo->GlobalProductCode) { + $awbinfoData['service'] = $this->getDhlProductTitle((string)$shipmentInfo->GlobalProductCode); } $awbinfoData['weight'] = (string)$shipmentInfo->Weight . ' ' . (string)$shipmentInfo->WeightUnit;