特定の商品を含む Magento のすべての注文のリストを取得するにはどうすればよいですか?
拡張機能を構築しましたが、特定の製品を含むすべての注文を知る必要があります。
これはそれ自体が重複した質問ではないため、ここであなたに役立つ解決策があります:
$productId = {PRODUCT_ID};
$orders = array();
$collection = Mage::getResourceModel('sales/order_item_collection')
->addAttributeToFilter('product_id', array('eq' => $productId))
->load();
foreach($collection as $orderItem) {
$orders[$orderItem->getOrder()->getIncrementId()] = $orderItem->getOrder();
}
指定された {PRODUCT_ID} の orderitem を含む注文の配列が得られます。