我正在尝试扩展产品订单 报告并添加一个属性 产品品牌并投入使用 的 grid.phtml。
当我选择品牌并点击时 刷新按钮。
报告不会显示品牌明智 我该怎么办?
产品订单报告图片链接 访问 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>