在庫品を入手するために、これまでに持っているものは次のとおりです。
$productCollection = Mage::getModel('cataloginventory/stock_item')
->getCollection()
->addQtyFilter('>', 0);
echo $productCollection->getSelect();
foreach ( $productCollection as $currentProduct ) {
$categoryIds = $currentProduct->getCategoryIds();
print_r( $categoryIds );
}
製品は問題なく取得されますが、各アイテムの現在のカテゴリ ID を取得する必要があるため、上記のコード$currentProduct->getCategoryIds()
では機能しません。
IN STOCK アイテムとそのカテゴリ ID を取得する方法を知っている人はいますか?
ありがとうございました。