基本的には、含めるフィールドを組み込むようにリソース・モデルを編集する必要があります。あなたは
$collection = Mage::getResourceModel('sales/order_invoice_collection')
->addAttributeToSelect('order_id')
->addAttributeToSelect('increment_id')
->addAttributeToSelect('created_at')
->addAttributeToSelect('state')
->addAttributeToSelect('grand_total') ...and so on!
行を追加し、私はあなたの使ってますがGrid.phpにあなたは_prepareCollectionのようなコードを見つけることがわかりますファイルどのバージョンわからないんだけど、コード内でリソースを編集することができます
そのリストに
->addAttributeToSelect('tax_amount')
、あなたはこれは私が離れて私のdevのマシンからだと手に魔道士を持っていけないほど未テストですが、これは仕事や最低限の時点でなければならない
$this->addColumn('tax_amount', array(
'header' => Mage::helper('sales')->__('Tax'),
'index' => 'tax_amount',
'type' => 'number',
));
を使用することができるはずですあなたはあなたの視線方向。
編集:
失敗あなたはあなたの全体の_prepareCollection交換してみことができることを
protected function _prepareCollection()
{
$collection = Mage::getResourceModel('sales/order_invoice_collection')
->addAttributeToSelect('order_id')
->addAttributeToSelect('increment_id')
->addAttributeToSelect('created_at')
->addAttributeToSelect('state')
->addAttributeToSelect('grand_total')
->addAttributeToSelect('tax_amount')
->addAttributeToSelect('order_currency_code')
->joinAttribute('billing_firstname', 'order_address/firstname', 'billing_address_id', null, 'left')
->joinAttribute('billing_lastname', 'order_address/lastname', 'billing_address_id', null, 'left')
->joinAttribute('order_increment_id', 'order/increment_id', 'order_id', null, 'left')
->joinAttribute('order_created_at', 'order/created_at', 'order_id', null, 'left');
$this->setCollection($collection);
return parent::_prepareCollection();
}
ここでも、これは、メモリから、これはとてもその少し古いのMagentoの1.3範囲から_prepareCollectionは、テストされていないですが、それがうまくいくはずです。
私はaddAttributeToSelectを試しました。私の開発サイトがクラッシュするので、エラーが発生します。私の$コレクション変数はあなたとは少し異なります。私のものは '$ collection = Mage :: getResourceModel($ this - > _ getCollectionClass());'のようになります。アイデア? –
あなたはどのMagentoのバージョンを使用していますか? _prepareCollection全体を別のものに置き換えることもできます。上記の答えを参照してください。 –
Magento 1.9を使用しています。うん、それを置き換えて、そのトリックをした。私は以前からコレクションを入手していた場所を理解したいと思いますが、今のところこれが機能します。ありがとう! –