我为可配置产品设置了属性 我想在我选择的尺寸下拉列表中显示L尺寸产品的缺货
我得到了一个代码,但这是magento 1.4,我正在使用magento 1.6
守则
在mage / catalog / block / product / view / type / configurable.php中,在〜85行,你有这样的东西:
foreach ($this->getAllowAttributes() as $attribute) {
$productAttribute = $attribute->getProductAttribute();
$attributeValue = $product->getData($productAttribute->getAttributeCode());
if (!isset($options[$productAttribute->getId()])) {
$options[$productAttribute->getId()] = array();
}
if (!isset($options[$productAttribute->getId()][$attributeValue])) {
$options[$productAttribute->getId()][$attributeValue] = array();
}
$options[$productAttribute->getId()][$attributeValue][] = $productId;
}
所以,在foreach循环中,最好是在foreach行之后,插入以下代码:
$options['qty'][$product -> getAttributeText($productAttribute->getName())] = floor($product->getStockItem()->getQty());
之后,在行~128中你有这样的东西:
$info['options'][] = array(
'id' => $value['value_index'],
'label' => $value['label'] ,
'price' => $this->_preparePrice($value['pricing_value'], $value['is_percent']),
'products' => isset($options[$attributeId][$value['value_index']]) ? $options[$attributeId][$value['value_index']] : array(),
);
replace it with this :
$info['options'][] = array(
'id' => $value['value_index'],
'label' => ($options['qty'][$value['label']] <= 0) ? $value['label'] . ' * out of stock' : $value['label'] . " * (".$options['qty'][$value['label']]." in stock)",
'price' => $this->_preparePrice($value['pricing_value'], $value['is_percent']),
'products' => isset($options[$attributeId][$value['value_index']]) ? $options[$attributeId][$value['value_index']] : array(),
);
任何人都可以告诉我根据magento1.6会有什么变化吗?
答案 0 :(得分:-1)
创建自己的模块,并在config.xml文件中添加标记内的这两个事件:
<events>
<controller_action_layout_render_before_catalog_product_view>
<observers>
<namespace_module>
<class>module/observer</class>
<method>showOutOfStock</method>
</namespace_module>
</observers>
</controller_action_layout_render_before_catalog_product_view>
<controller_action_layout_render_before_checkout_cart_configure>
<observers>
<namespace_module>
<class>module/observer</class>
<method>showOutOfStock</method>
</namespace_module>
</observers>
</controller_action_layout_render_before_checkout_cart_configure>
</events>
现在在app / code / local / Namespace / Module / Model / Observer.php中创建一个观察者
class Namespace_Module_Model_Observer {
public function showOutOfStock($observer){
Mage::helper('catalog/product')->setSkipSaleableCheck(true);
}
}