這裏是我的產品集合,任何人都可以幫助從產品集合中獲取我的庫存狀態。如何從magento中的產品集合中獲取庫存狀態
$collection = Mage::getModel('catalog/category')
->load($categoryId)
->getProductCollection()
->addAttributeToSelect('*')
->addAttributeToFilter('visibility', array(
Mage_Catalog_Model_Product_Visibility::VISIBILITY_BOTH,
Mage_Catalog_Model_Product_Visibility::VISIBILITY_IN_CATALOG));
return $collection;
讓我看一下這個 –
好的,謝謝你這麼多先生的幫助。它工作正常。 :) –