早上好,
我们目前正在使用 Magento 并尝试将“处理”订单列为默认订单。
我们找到了状态下拉列,但无法确定如何将“处理”设置为默认值。
我们希望得到一些帮助, 谢谢。
$this->addColumn('status', array(
'header' => Mage::helper('sales')->__('Status'),
'index' => 'status',
'type' => 'options',
'width' => '70px',
'options' => Mage::getSingleton('sales/order_config')->getStatuses(),
));
答案 0 :(得分:0)
Amit Bera的一点帮助我们设法解决了这个问题。
打开 - app / code / core / Mage / Adminhtml / Block / Sales / Order / Grid.php
Find - parent :: __ construct();
并添加$ this-> setDefaultFilter(数组(' status' =>'处理'));
像魅力一样工作。