0
我需要ORDER ITEM ID才能使用Magento 2的服務RefundInvoice創建帶退款的貸項憑證(http://devdocs.magento.com/guides/v2.1/mrg/ce/Sales/services.html)。如何獲取Magento 2中的訂單商品ID(不是訂單ID)?
訂單商品ID是我絕對不是訂單ID,因爲我試過這個。
所以,任何人的想法如何我可以檢索訂單項ID?
我需要ORDER ITEM ID才能使用Magento 2的服務RefundInvoice創建帶退款的貸項憑證(http://devdocs.magento.com/guides/v2.1/mrg/ce/Sales/services.html)。如何獲取Magento 2中的訂單商品ID(不是訂單ID)?
訂單商品ID是我絕對不是訂單ID,因爲我試過這個。
所以,任何人的想法如何我可以檢索訂單項ID?
//試試下面的代碼。
$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(); //
}