Pergunta

How to get tracking information from order shipment in magento 2?

Foi útil?

Solução

You can get all tracking details using this code :

$tracksCollection = $order->getTracksCollection();

foreach ($tracksCollection->getItems() as $track) {

     echo $track->getTrackNumber(); // Tracking number
     // You can get other details here.

}
Licenciado em: CC-BY-SA com atribuição
Não afiliado a magento.stackexchange
scroll top