Pergunta

I have a requirement to attach the order ID and order date to the xml request (ShipmentRequest) located in /magento/dhl/model/Carrier.php

Is there a way to retrieve the order ID linked to this shipping request?

Foi útil?

Solução

I worked it out using:

$orderNumber = $rawRequest->getOrderShipment()->getOrder()->getIncrementId();
$orderDate = $rawRequest->getOrderShipment()->getOrder()->getCreatedAt();
Licenciado em: CC-BY-SA com atribuição
Não afiliado a magento.stackexchange
scroll top