关于让ecshop后台管理显示扩展分类

2016-09-11 20:39 来源:www.chinab4c.com 作者:ecshop专家

ecshop 后台商品列表默认只显示分类下的商品,而不显示扩展分类中的商品,以下是给出的解决方法: 
打开admin/includes/lib_goods.php 第839行左右的位置 可以看到如下代码: 
$where = $filter['cat_id'] > 0 ? " AND " . get_children($filter['cat_id']) : ''; 
把以上这行代码的内容换成如下内容即可: 
     if($filter['cat_id']>0){ 
            $where = " AND (".get_children($filter['cat_id']); 
            $where .= " or goods_id in (SELECT goods_id FROM ecs_goods_cat where cat_id=".$filter['cat_id']."))"; 
        }else{ 
            $where = ""; 
        } 


这里涉及到and   和or  的优先级,and比or 优先,例如  语句1  and  (语句2 or  语句3)