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) php

相关文章
相关标签/搜索