我有300多个购物车价格规则。我需要解决与继续遵循规则有关的问题。我想在后端的概述中添加列"停止规则进一步处理"。我应该在哪里/怎么做?
答案 0 :(得分:1)
您需要重写方法
Mage_Adminhtml_Block_Promo_Quote_Grid::_prepareColumns()
在新方法中,您需要添加以下内容:
$this->addColumn('stop_rules_processing', array(
'header' => Mage::helper('salesrule')->__('Stop Rule'),
'align' => 'left',
'width' => '150px',
'index' => 'stop_rules_processing',
));
别忘了,magento强烈建议不要编辑核心文件。