2
我試圖讓訂單網格顯示客戶的郵政編碼/郵政編碼。Magento - 將郵政編碼/郵政編碼添加到Magento 1.6.2中的訂單網格中
我想加入sales_flat_order_aldress別名與集合,但沒有成功。
protected function _prepareCollection() {
$collection = Mage::getResourceModel($this->_getCollectionClass());
$collection->getSelect()->join('sales_flat_order_address', 'main_table.entity_id = sales_flat_order_address.parent_id',array('postcode'));
//var_dump($collection);
$this->setCollection($collection);
return parent::_prepareCollection();
}
任何人都可以幫我找出解決方案。
非常感謝這對我完美的工作。 – user1997432