これは私のオブザーバーです:
public function execute(\Magento\Framework\Event\Observer $observer)
{
$orderIds = $observer->getEvent()->getOrderIds();
$order = $this->_orderRepositoryInterface->get($orderIds[0]);
$items =$order->getAllVisibleItems();
$productQuantity = array();
$productPrice = array();
$productName = array();
$productIds = array();
foreach($items as $item) {
$productIds[]= $item->getProductId();
$productName[]= $item->getSku();
$productPrice[] = $item->getPrice();
$productQuantity[]= floor($item->getQtyOrdered());
}
}
アイテムから製品画像と製品URLを取得するにはどうすればよいですか?
どのイベントをキャッチしましたか?
—
コアトゥオンディン
checkout_onepage_controller_success_action
—
Ramkishan Suthar