Magento:将自定义字段添加到网格并填充它

时间:2014-11-09 01:55:35

标签: magento

我已经按照本教程:http://raghunathgurjar.wordpress.com/2014/04/04/how-add-a-new-custom-field-to-customer-address/并在我的数据库中添加了自定义字段。

我想要的是在Sales-> Invoices网格中显示该字段的值。

我使用以下代码添加了该列:

$this->addColumn('govt_id',
        array(
            'header'=> $this->__('Govt Id'),
            'align' =>'right',
            'type=' => 'text',
            'index' => 'govt_id',
        ));

我的问题是如何使用自定义添加字段中的数据填充它?

    protected function _getCollectionClass()
    {
        return 'sales/order_invoice_grid_collection';
    }

    protected function _prepareCollection()
    {

        $collection = Mage::getResourceModel($this->_getCollectionClass());
        // $collection->getSelect()->joinLeft(???);
        $this->setCollection($collection);
        return parent::_prepareCollection();
    }

问候!

0 个答案:

没有答案