品牌智能搜索产品订货报告

时间:2011-06-27 06:10:46

标签: php mysql sql magento magento-1.4

  1. 我正在尝试扩展产品订单 报告并添加一个属性 产品品牌并投入使用 的 grid.phtml。

  2. 当我选择品牌并点击时 刷新按钮。

  3. 报告不会显示品牌明智 我该怎么办?

  4. 产品订单报告图片链接 访问 http://imageshack.us/photo/my-images/405/productorder.jpg/

    grid.phtm代码

    <?php 
    $attributeInfo = Mage::getResourceModel('eav/entity_attribute_collection')
    ->setCodeFilter('brand')
    ->getFirstItem();
    $attributeOptions = $attributeInfo->getSource()->getAllOptions(false);
                                ?>
                        </div>
    
                        --><div class="f-left">
                        <?php echo $this->__('Brand') ?>:
                        <select name="brand" id="brand" style="width:6em;">
                        <?php foreach ($attributeOptions as $_value=>$_label): ?>
                            <option value="<?php echo $_value ?>" <?php if($this->getFilter('brand')==$_value): ?> selected<?php endif; ?>><?php echo $_label['label'] ?></option>
                           <?php //error_log("Lable".print_r($_label,TRUE));?>
                        <?php endforeach;  ?>
                        </select>
    
                    </div>
    

0 个答案:

没有答案