0
我已經修改_prepareCollection
方法,並添加左加入這樣的 -無法自定義字段添加到銷售訂單電網在Magento CE 1.9.2
$this->addColumn('tax_order_type', array(
'header' => 'Tax Order Type',
'type' => 'text',
'index' => 'tax_order_type',
));
-
$collection->getSelect()->join(
'sales_flat_order',
'main_table.entity_id = sales_flat_order.entity_id',
array('tax_order_type')
);
在_prepareColumns
添加列$collection->printLogQuery(true);
在_prepareCollection
給我正確的查詢,我也可以得到使用該查詢所需的數據。但它不會在網格中顯示。