我创建了一个模块,列出了可在adminhtml网格中审核的订单。
我需要将orderId从网格视图传递到详细视图,我不知道该怎么做。
这是我的Grid.php
{
public function __construct() {
parent::__construct();
$this->setId('moderationGrid');
// This is the primary key of the database
$this->setDefaultSort('increment_id');
$this->setDefaultDir('ASC');
$this->setSaveParametersInSession(true);
}
protected function _prepareCollection() {
$collection = Mage::getModel('sales/order')->getCollection();
$this->setCollection($collection);
return parent::_prepareCollection();
}
protected function _prepareColumns() {
$this->addColumn('increment_id', array(
'header' => Mage::helper('sales')->__('Order Number'),
'align' =>'center',
'index' => 'increment_id',
));
$this->addColumn('created_at', array(
'header' => Mage::helper('sales')->__('Purchase Date'),
'align' => 'center',
'index' => 'created_at',
'type' => 'datetime',
));
$this->addColumn('action', array(
'header' => Mage::helper('moderation')->__('Action'),
'align' => 'center',
'type' => 'action',
'getter' => 'getId',
'actions' => array(
array(
'caption' => Mage::helper('sales')->__('Review'),
'url' => array('base'=>'*/adminhtml_moderation/view'),
'field' => 'increment_id'
)
),
'filter' => false,
'sortable' => false,
'index' => 'stores',
'is_system' => true,
));
return parent::_prepareColumns();
}
这是我的观点Form.php
class Moderation_Block_Adminhtml_Moderation_View_Form extends Mage_Adminhtml_Block_Widget_Form
{
protected function _construct()
{
parent::_construct();
$this->setTemplate('moderation/form.phtml');
}
public function getOrder()
{
$moderationId = $this->getRequest()->getParam('increment_id');
$order = Mage::getModel('sales/order')->load();
}
}
答案 0 :(得分:2)
您需要在grid.php中再实现一个自定义函数(提示:此文件不是由约定命名,必须是大写“G” - Grid.php):
public function getRowUrl($row)
{
return $this->getUrl('*/*/edit', array(
'id'=>$row->getId())
);
}
这将为你的每一行提供一些其他类的URL。
参考Mage_Adminhtml_Block_Catalog_Product_Grid
第320行。
答案 1 :(得分:0)
我只想创建一个会话变量来保存它。
Mage::getModel('core/session')->setSomeVariable($id);
然后拉它。
Mage::getModel('sales/order')->load(Mage::getModel('core/session')->getSomeVariable();