2017-07-11 160 views
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給我正確的查詢,我也可以得到使用該查詢所需的數據。但它不會在網格中顯示。

回答

相關問題