Magento Join和Left Join功能

时间:2015-08-17 09:05:54

标签: magento magento-1.9

无论如何,我可以将groupdeals / coupon表加入我的网格集合吗? 这是我的准备收集功能

protected function _prepareCollection()
{   
    $orderIds = Mage::getModel('sales/order_item')->getCollection()->addFieldToFilter('product_id', $this->getRequest()->getParam('id'))->getColumnValues('order_id');  
    $collection = Mage::getResourceModel('sales/order_grid_collection')->addAttributeToFilter('entity_id', array('in' => $orderIds));

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

现在我想让它加入groupon_coupons表 groupon database table

我想加入表格,以便我可以从订单网格中过滤优惠券代码和安全码。

1 个答案:

答案 0 :(得分:0)

将此行添加到集合->join(array('tblalias' => 'tablename'),'main_table.fildname = tblalias.fildname',array('fildfromsecondtable' => 'tblalias.filedname'))