通过可配置产品magento的选项获得简单的产品

时间:2014-07-15 16:11:02

标签: magento product options configurable

如果我知道简单的产品ID以及父产品ID,我怎样才能获得简单的产品(可配置的Parent子项)选项(例如:color = red)? 我是Magento的新手,我真的需要一些建议。

1 个答案:

答案 0 :(得分:3)

// load configurable product
$product = Mage::getModel('catalog/product')->load($productId);

// get simple produts' ids
$childIds = Mage::getModel('catalog/product_type_configurable')->getChildrenIds($product->getId());

// get simple products
$childProducts = Mage::getModel('catalog/product_type_configurable')
                        ->getUsedProducts(null,$product);

// get configurable options
$productAttributeOptions = $product->getTypeInstance(true)->getConfigurableAttributesAsArray($product);
$attributeOptions = array();
foreach ($productAttributeOptions as $productAttribute) {
    foreach ($productAttribute['values'] as $attribute) {
        $attributeOptions[$productAttribute['label']][$attribute['value_index']] = $attribute['store_label'];
    }
}