Magento - 销售>订单'处理'状态

时间:2014-09-09 08:18:38

标签: magento select

早上好,

我们目前正在使用 Magento 并尝试将“处理”订单列为默认订单。
我们找到了状态下拉列,但无法确定如何将“处理”设置为默认值。

我们希望得到一些帮助, 谢谢。

$this->addColumn('status', array(
            'header' => Mage::helper('sales')->__('Status'),
            'index' => 'status',
            'type'  => 'options',
            'width' => '70px',
            'options' => Mage::getSingleton('sales/order_config')->getStatuses(),
        ));

enter image description here

1 个答案:

答案 0 :(得分:0)

Amit Bera的一点帮助我们设法解决了这个问题。

打开 - app / code / core / Mage / Adminhtml / Block / Sales / Order / Grid.php Find - parent :: __ construct();
并添加$ this-> setDefaultFilter(数组(' status' =>'处理'));

像魅力一样工作。