开发交流

需要商品分类树显示商品总数的方法 老杨

LYECS,LYECS+商城系统,多用户商城系统,开源商城系统 发布日期:2013-01-18   作者:老杨


非常简单的改动
1、includes/lib_goods.php下
找到这两个函数改成我这样就行
function get_categories_tree($cat_id = 0)
function get_child_tree($tree_id = 0)

  1. /**
  2. * 获得指定分类同级的所有分类以及该分类下的子分类
  3. *
  4. * @access  public
  5. * @param   integer     $cat_id     分类编号
  6. * @return  array
  7. */
  8. function get_categories_tree($cat_id = 0)
  9. {
  10.     if ($cat_id > 0)
  11.     {
  12.         $sql = 'SELECT parent_id FROM ' . $GLOBALS['ecs']->table('category') . " WHERE cat_id = '$cat_id'";
  13.         $parent_id = $GLOBALS['db']->getOne($sql);
  14.     }
  15.     else
  16.     {
  17.         $parent_id = 0;
  18.     }
  19.  
  20.     /*
  21.      判断当前分类中全是是否是底级分类,
  22.      如果是取出底级分类上级分类,
  23.      如果不是取当前分类及其下的子分类
  24.     */
  25.     $sql = 'SELECT count(*) FROM ' . $GLOBALS['ecs']->table('category') . " WHERE parent_id = '$parent_id' AND is_show = 1 ";
  26.     if ($GLOBALS['db']->getOne($sql) || $parent_id == 0)
  27.     {
  28.         /* 获取当前分类及其子分类 */
  29.         $sql = 'SELECT cat_id,cat_name ,parent_id,is_show ' .
  30.                 'FROM ' . $GLOBALS['ecs']->table('category') .
  31.                 "WHERE parent_id = '$parent_id' AND is_show = 1 ORDER BY sort_order ASC, cat_id ASC";
  32.  
  33.         $res = $GLOBALS['db']->getAll($sql);
  34.  
  35.         foreach ($res AS $row)
  36.         {
  37.             if ($row['is_show'])
  38.             {
  39.                 /*获得分类下商品总数 begin-老杨:QQ359199843 */
  40.                 $children = get_children($row['cat_id']);
  41.                 $sql = 'SELECT count(*)' . "FROM " . $GLOBALS['ecs']->table('goods') . ' AS g '.
  42.                 'WHERE g.is_on_sale = 1 AND g.is_alone_sale = 1 AND '.
  43.                  'g.is_delete = 0 AND (' . $children . 'OR ' . get_extension_goods($children) . ') ';
  44.                 $cat_goods_num=$GLOBALS['db']->getOne($sql);
  45.                 $cat_arr[$row['cat_id']]['goods_num']   = $cat_goods_num == '' ? 0 : $cat_goods_num;
  46.                
  47.                 $cat_arr[$row['cat_id']]['id']   = $row['cat_id'];
  48.                 $cat_arr[$row['cat_id']]['name'] = $row['cat_name'];
  49.                 $cat_arr[$row['cat_id']]['url']  = build_uri('category', array('cid' => $row['cat_id']), $row['cat_name']);
  50.  
  51.                 if (isset($row['cat_id']) != NULL)
  52.                 {
  53.                     $cat_arr[$row['cat_id']]['cat_id'] = get_child_tree($row['cat_id']);
  54.                 }
  55.             }
  56.         }
  57.     }
  58.     if(isset($cat_arr))
  59.     {
  60.         return $cat_arr;
  61.     }
  62. }
  63.  
  64. function get_child_tree($tree_id = 0)
  65. {
  66.     $three_arr = array();
  67.     $sql = 'SELECT count(*) FROM ' . $GLOBALS['ecs']->table('category') . " WHERE parent_id = '$tree_id' AND is_show = 1 ";
  68.     if ($GLOBALS['db']->getOne($sql) || $tree_id == 0)
  69.     {
  70.         $child_sql = 'SELECT cat_id, cat_name, parent_id, is_show ' .
  71.                 'FROM ' . $GLOBALS['ecs']->table('category') .
  72.                 "WHERE parent_id = '$tree_id' AND is_show = 1 ORDER BY sort_order ASC, cat_id ASC";
  73.         $res = $GLOBALS['db']->getAll($child_sql);
  74.         foreach ($res AS $row)
  75.         {
  76.                 /*获得分类下商品总数 begin-老杨:QQ359199843 */
  77.                 $children = get_children($row['cat_id']);
  78.                 $sql = 'SELECT count(*)' . "FROM " . $GLOBALS['ecs']->table('goods') . ' AS g '.
  79.                 'WHERE g.is_on_sale = 1 AND g.is_alone_sale = 1 AND '.
  80.                  'g.is_delete = 0 AND (' . $children . 'OR ' . get_extension_goods($children) . ') ';
  81.                 $cat_goods_num=$GLOBALS['db']->getOne($sql);
  82.                 $three_arr[$row['cat_id']]['goods_num']   = $cat_goods_num == '' ? 0 : $cat_goods_num;
  83.                
  84.             if ($row['is_show'])
  85.  
  86.                $three_arr[$row['cat_id']]['id']   = $row['cat_id'];
  87.                $three_arr[$row['cat_id']]['name'] = $row['cat_name'];
  88.                $three_arr[$row['cat_id']]['url']  = build_uri('category', array('cid' => $row['cat_id']), $row['cat_name']);
  89.  
  90.                if (isset($row['cat_id']) != NULL)
  91.                    {
  92.                        $three_arr[$row['cat_id']]['cat_id'] = get_child_tree($row['cat_id']);
  93.  
  94.             }
  95.         }
  96.     }
  97.     return $three_arr;
  98. }
复制代码



模板文件中,可能是category_tree.lbi中,也可能是别的库文件名,总之看模板去改

在{$cat.name}后添加:

  1. ({$cat.goods_num})
复制代码



在{$child.name}后添加:

  1. ({$child.goods_num})
复制代码



在{$childer.name}后添加:

  1. ({$childer.goods_num})
复制代码

热门文章

分类标签