西部数码主机 | 阿里云主机| 虚拟主机 | 服务器 | 返回乐道官网
当前位置: 主页 > php教程 > magento教程 >

magento grid collection多表查询字段冲突的解决

时间:2016-11-01 10:06来源:未知 作者:好模板 点击:
magento grid collection多表查询字段冲突的解决,错误提示大概是这样的 Integrity constraint violation: 1052 Column increment_id in where clause is ambiguous 使用 代码 filter_index=main_table.increment_id, 可以解决这个
magento grid collection多表查询字段冲突的解决,错误提示大概是这样的
Integrity constraint violation: 1052 Column 'increment_id' in where clause is ambiguous
使用 代码  'filter_index'=>'main_table.increment_id', 可以解决这个问题
解决方法例子代码如下:
 
$this->addColumn('real_order_id', array(  
           'header'=> Mage::helper('sales')->__('Order #'),  
           'width' => '80px',  
           'type'  => 'text',  
           'index' => 'increment_id',  
           'filter_index'=>'main_table.increment_id',  
  
       ));  
 
(责任编辑:好模板)
顶一下
(0)
0%
踩一下
(0)
0%
------分隔线----------------------------
栏目列表
热点内容