我修改了_prepareCollection
方法并添加了左连接 -
$collection->getSelect()->join(
'sales_flat_order',
'main_table.entity_id = sales_flat_order.entity_id',
array('tax_order_type')
);
在_prepareColumns
-
$this->addColumn('tax_order_type', array(
'header' => 'Tax Order Type',
'type' => 'text',
'index' => 'tax_order_type',
));
$collection->printLogQuery(true);
中的 _prepareCollection
为我提供了正确的查询,我也可以使用该查询获取所需的数据。但它不会在网格中显示出来。
答案 0 :(得分:0)