Magento后台的Order表格中默认并不显示订单的支付方式,如果需要添加支付方式,修改/app/code/core/Mage/Adminhtml/Block/Sales/Order/Grid.php
1 在_prepareCollection()函数的
- $collection = Mage::getResourceModel($this->_getCollectionClass());
下面添加
- $collection->join('sales/order_payment', 'main_table.entity_id=parent_id', array('method' => 'method'), null, 'left');
2 在_prepareColumns()函数的
- $this->addColumn('status', array(
-
'header' => Mage::helper('sales')->__('Status'),
-
'index' => 'status',
-
'type' => 'options',
-
'width' => '70px',
-
'options' => Mage::getSingleton('sales/order_config')->getStatuses(),
-
));
下面添加
- $this->addColumn('method', array(
-
'header' => Mage::helper('sales')->__('Payment Method'),
-
'index' => 'method',
-
'width' => '100px',
-
));
刷新后台,就可以看到支付方法出现在订单的表格中了,同样可以对支付方法进行过滤和排序。
阅读(595) | 评论(0) | 转发(0) |