我是否可以将团购/优惠券表格加入到我的网格集合中?这是我的准备集合函数
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表连接起来

我想加入表格,这样我就可以从我的订单网格中过滤优惠券代码和安全代码。
发布于 2015-08-24 14:41:50
将此行添加到集合->join(array('tblalias' => 'tablename'),'main_table.fildname = tblalias.fildname',array('fildfromsecondtable' => 'tblalias.filedname'))
https://stackoverflow.com/questions/32046476
复制相似问题