2017-08-01 16 views
0

払い戻し(http://devdocs.magento.com/guides/v2.1/mrg/ce/Sales/services.html)のクレジットメモを作成するには、Magento 2のRefundInvoiceサービスを使用するために、注文商品IDが必要です。Magento 2でオーダーアイテムIDを取得する方法(オーダーIDではない)

私はそれを試したので、注文アイテムIDは間違いなくオーダーID以外のものです。

だから私はどのように注文アイテムのIDを取得できるアイデア?

答えて

0

//以下のコードで試してください。

$orderId = 1234; //put your order id. 
$order = $this->_objectManager->create('Magento\Sales\Model\Order')->load($orderId); 
$orderItems = $order->getAllItems(); 
foreach($orderItems as $item) 
{ 
    echo "Order Item ID :".$item->getItemId(); // 
} 
関連する問題