Show Bundle&产品列表页面上的分组产品选项

时间:2012-02-12 22:30:38

标签: magento

我正在尝试在产品列表页面中显示Bundle产品和Grouped产品的选项。

我在互联网上找到了一个显示可配置产品的脚本,但我很难在Bundle和Grouped上找到一个。

基本上我希望它显示与我查看实际产品页面时完全相同的选项。

由于

1 个答案:

答案 0 :(得分:1)

尝试使用以下代码

1)如果你有覆盖它们,请将这三个以下函数放在list.php文件中,否则首先覆盖该文件Mage / Catalog / Block?Product / List.php

protected function _getProduct($sku)
    {
         $_productId = Mage::getModel('catalog/product')->getIdBySku($sku);
         if($_productId)
         {
            return Mage::getModel('catalog/product')->load($_productId);    
         }
         return null;
    } 

    public function getAssociatedProducts($sku)
    {
        $_product = $this->_getProduct($sku);
        $simpleProducts = $_product->getTypeInstance(true)->getAssociatedProducts($_product);
        return $simpleProducts;
    }

    /**
     * Set preconfigured values to grouped associated products
     *
     * @return Mage_Catalog_Block_Product_View_Type_Grouped
     */
    public function setPreconfiguredValue($sku) {
        $_product = $this->_getProduct($sku);
        $configValues = $_product->getPreconfiguredValues()->getSuperGroup();
        if (is_array($configValues)) {
            $associatedProducts = $this->getAssociatedProducts($sku);
            foreach ($associatedProducts as $item) {
                if (isset($configValues[$item->getId()])) {
                    $item->setQty($configValues[$item->getId()]);
                }
            }
        }
        return $this;
    }

2)将以下代码放在list.phtml文件设计/ frontend / default / default / template / catelog / product / list.phtml之后

<?php echo $this->getPriceHtml($_product, true) ?>

<?php if($_product->getTypeId() == 'grouped'){ ?>
                 <?php $this->setPreconfiguredValue($_product->getSku()); ?> 
                 <?php $_associatedProducts = $this->getAssociatedProducts($_product->getSku()); ?>
                 <?php $_hasAssociatedProducts = count($_associatedProducts) > 0; ?>
                 <table class="data-table grouped-items-table" id="super-product-table">
                    <col />
                    <col />
                    <col width="1" />
                    <thead>
                        <tr>
                            <th><?php echo $this->__('Name') ?></th>
                            <?php if ($this->getCanShowProductPrice($_product)): ?>
                            <th class="a-right"><?php echo $this->__('Price') ?></th>
                            <?php endif; ?>
                        </tr>
                    </thead>
                    <tbody>
                    <?php if ($_hasAssociatedProducts): ?>
                    <?php foreach ($_associatedProducts as $_item): ?>
                        <?php $_finalPriceInclTax = $this->helper('tax')->getPrice($_item, $_item->getFinalPrice(), true) ?>
                        <tr>
                            <td><?php echo $this->htmlEscape($_item->getName()) ?></td>
                            <?php if ($this->getCanShowProductPrice($_product)): ?>
                            <td class="a-right">
                                <?php if ($this->getCanShowProductPrice($_item)): ?>
                                <?php echo $this->getPriceHtml($_item, true) ?>
                                <?php endif; ?>
                            </td>
                            <?php endif; ?>
                        </tr>
                    <?php endforeach; ?>
                    <?php else: ?>
                       <tr>
                           <td colspan="<?php if ($_product->isSaleable()): ?>4<?php else : ?>3<?php endif; ?>"><?php echo $this->__('No options of this product are available.') ?></td>
                       </tr>
                    <?php endif; ?>
                    </tbody>
                </table>
                <script type="text/javascript">decorateTable('super-product-table')</script>
               <?php  }  ?>

3)enter image description here

可能对你有帮助! 注意:此代码仅适用于分组产品