在magento中的销售订单网格集合中添加自定义客户地址属性


Add custom customer address attribute in sales order grid collection in magento

嗨,我想在销售订单网格中显示一些自定义客户地址属性。

如何做到这一点?

下面是我的收藏。我已经成功地从另一个表中添加了表字段,但无法从客户/地址中添加属性

protected function _prepareCollection()
{
            $collection = Mage::getResourceModel('sales/order_grid_collection');
            $collection->getSelect()->joinLeft(array('sfoa'=>'sales_flat_order_address'),
                    'main_table.entity_id = sfoa.parent_id AND sfoa.address_type="shipping"',array('sfoa.street', 'sfoa.city','sfoa.company','sfoa.customer_address_id'));

            $collection->addFieldToFilter('customer_id', Mage::registry('current_customer')->getId())
            ->setIsCustomerMode(true);

    Mage::log($collection);
    $this->setCollection($collection);
    return parent::_prepareCollection();
}

谢谢大家。

Anurag Patbandha

根据您的代码,您只能添加sales_flat_order_address的字段。如果要将customer address attribute to order grid then you need joinon default shipping or billing address 一起添加到customer/address集合