wangtengyu
2018-12-07 f459412e0dac4ed94106da043b4c6f8576bfe496
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
<?php
 
/**
 * 店铺分类文件
*/
 
 
/* 获得请求的分类 ID */
if (isset($_REQUEST['id']))
{
   // $cat_id = intval($_REQUEST['id']);
}
else
{
    /* 如果分类ID为0,则返回首页 */
  //  ecs_header("Location: ./\n");
 
  //  exit;
}
 
 
/* 初始化分页信息 */
$cat_id = isset($_REQUEST['id'])   && intval($_REQUEST['id'])  > 0 ? intval($_REQUEST['id'])  : 0;
$keywords = isset($_REQUEST['keywords']) && !empty($_REQUEST['keywords']) ? htmlspecialchars($_REQUEST['keywords']) : '';
$keywords = ($keywords == '请输入你要查找的商品') ? '' : $keywords;
$price = isset($_REQUEST['price']) ? intval($_REQUEST['price']) : 0;
$page = isset($_REQUEST['page'])   && intval($_REQUEST['page'])  > 0 ? intval($_REQUEST['page'])  : 1;
$size = isset($_CFG['page_size'])  && intval($_CFG['page_size']) > 0 ? intval($_CFG['page_size']) : 10;
$sort  = (isset($_REQUEST['sort'])  && in_array(trim(strtolower($_REQUEST['sort'])), array('goods_id', 'shop_price', 'last_update'))) ? 'g.'.trim($_REQUEST['sort'])  : 'g.goods_id';
$order = (isset($_REQUEST['order']) && in_array(trim(strtoupper($_REQUEST['order'])), array('ASC', 'DESC')))                              ? trim($_REQUEST['order']) : 'DESC';
/*------------------------------------------------------ */
//-- PROCESSOR
/*------------------------------------------------------ */
 
/* 页面的缓存ID */
$cache_id = sprintf('%X', crc32($cat_id . '-' . $display . '-' . $sort  .'-' . $order  .'-' . $page . '-' . $size . '-' . $_SESSION['user_rank'] . '-' .
    $_CFG['lang'] .'-'. $brand. '-' . $price_max . '-' .$price_min . '-' . $filter_attr_str.'-'.$_GET['suppId']));
 
if (!$smarty->is_cached('search.dwt', $cache_id))
{
    assign_template();
    assign_template_supplier();
    $position = assign_ur_here();
    
   
    $smarty->assign('page_title',      $position['title']);    // 页面标题
    //$smarty->assign('ur_here',         $ur_here);  // 当前位置
 
    $smarty->assign('categories',      get_categories_tree_supplier()); // 分类树
    
    $s_value = get_search_price($price);
    
    $children = get_cattype_supplier($cat_id,$keywords);
    if($children === false){
        ecs_header("Location: supplier.php?suppId=".$_GET['suppId']);
        exit;
    }
    $count = get_cagtegory_goods_count($children,$keywords,$s_value);
    $max_page = ($count> 0) ? ceil($count / $size) : 1;
    if ($page > $max_page)
    {
        $page = $max_page;
    }
    $goodslist = category_get_goods($children, $size, $page,$keywords,$s_value,$sort, $order);
    if($display == 'grid')
    {
        if(count($goodslist) % 2 != 0)
        {
            $goodslist[] = array();
        }
    }
    assign_pager('supplier',            $cat_id, $count, $size, $sort, $order, $page, $keywords."&price=".$price, '', '', '', $display, ''); // 分页
    $smarty->assign('goods_list',       $goodslist);
    assign_dynamic('search');
}
 
$smarty->display('search.dwt', $cache_id);
 
/*------------------------------------------------------ */
//-- PRIVATE FUNCTION
/*------------------------------------------------------ */
 
/**
 * 获得指定商品属性所属的分类的ID
 *
 * @access  public
 * @param   integer     $cat        (1=>'精品推荐',2=>'新品上市',3=>'热卖商品')
 * @param    string        $keywords    关键字
 * @return  string
 */
function get_cattype_supplier($cat = 0,$keywords='')
{
    if(empty($keywords)){
        $where = "supplier_id=".$_GET['suppId'];
        if($cat > 0){
            $where .= " AND recommend_type=".$cat;
        }
        $sql = "select cat_id  from ". $GLOBALS['ecs']->table('supplier_cat_recommend') ." where ".$where;
        $res = $GLOBALS['db']->getAll($sql);
        $arr = array();
        if(count($res)>0){
            foreach($res as $k => $v){
                $arr[$v['cat_id']] = $v['cat_id'];
            }
        }
        if(empty($arr)){
            return false;
        }
        return 'sgc.cat_id ' . db_create_in(array_keys($arr));
    }else{
        return "g.goods_name like '%".$keywords."%'";
    }
}
 
/**
 * 获得分类下的商品
 *
 * @access  public
 * @param   string  $children
 * @param   array      $price_search 搜索价格区间中的商品
 * @return  array
 */
function category_get_goods($children, $size, $page,$keywords='',$price_search='',$sort, $order)
{
    $display = $GLOBALS['display'];
    
    $price_str = '';
    if(!empty($price_search)){
        if($price_search['min'] > 0){
            $price_str .= " AND g.shop_price > ".$price_search['min']." ";
        }
        if($price_search['max'] > 0){
            $price_str .= " AND g.shop_price <= ".$price_search['max']." ";
        }
    }
    
    $where = "g.is_on_sale = 1 AND g.is_alone_sale = 1 AND ".
            "g.is_delete = 0 ".$price_str." AND ($children)";
 
 
    /* 获得商品列表 */
    if(empty($keywords)){
        $where .= " AND sgc.supplier_id=".$_GET['suppId'];
        $sql = 'SELECT DISTINCT g.goods_id, g.goods_name, g.goods_name_style, g.market_price, g.is_new, g.is_best, g.is_hot, g.shop_price AS org_price, ' .
                "IFNULL(mp.user_price, g.shop_price * '$_SESSION[discount]') AS shop_price, g.promote_price, g.goods_type, " .
                'g.promote_start_date, g.promote_end_date, g.goods_brief, g.goods_thumb ,g.original_img , g.goods_img ' .
            'FROM ' . $GLOBALS['ecs']->table('supplier_goods_cat') . ' AS sgc ' .
            'LEFT JOIN ' . $GLOBALS['ecs']->table('goods') . ' AS g ' .
                "ON sgc.goods_id = g.goods_id " .
            'LEFT JOIN ' . $GLOBALS['ecs']->table('member_price') . ' AS mp ' .
                "ON mp.goods_id = g.goods_id AND mp.user_rank = '$_SESSION[user_rank]' " .
            "WHERE $where ORDER BY  $sort $order";
    }else{
        $where .= " AND g.supplier_id=".$_GET['suppId'];
        $sql = 'SELECT DISTINCT g.goods_id, g.goods_name, g.goods_name_style, g.market_price, g.is_new, g.is_best, g.is_hot, g.shop_price AS org_price, ' .
                "IFNULL(mp.user_price, g.shop_price * '$_SESSION[discount]') AS shop_price, g.promote_price, g.goods_type, " .
                'g.promote_start_date, g.promote_end_date, g.goods_brief, g.goods_thumb ,g.original_img, g.goods_img ' .
            'FROM ' . $GLOBALS['ecs']->table('goods') . ' AS g ' .
            'LEFT JOIN ' . $GLOBALS['ecs']->table('member_price') . ' AS mp ' .
                "ON mp.goods_id = g.goods_id AND mp.user_rank = '$_SESSION[user_rank]' " .
            "WHERE $where ORDER BY  $sort $order";
    }
    
 
    $res = $GLOBALS['db']->selectLimit($sql, $size, ($page - 1) * $size);
 
    $arr = array();
    while ($row = $GLOBALS['db']->fetchRow($res))
    {
        if ($row['promote_price'] > 0)
        {
            $promote_price = bargain_price($row['promote_price'], $row['promote_start_date'], $row['promote_end_date']);
        }
        else
        {
            $promote_price = 0;
        }
 
        /* 处理商品水印图片 */
        $watermark_img = '';
 
        if ($promote_price != 0)
        {
            $watermark_img = "watermark_promote_small";
        }
        elseif ($row['is_new'] != 0)
        {
            $watermark_img = "watermark_new_small";
        }
        elseif ($row['is_best'] != 0)
        {
            $watermark_img = "watermark_best_small";
        }
        elseif ($row['is_hot'] != 0)
        {
            $watermark_img = 'watermark_hot_small';
        }
 
        if ($watermark_img != '')
        {
            $arr[$row['goods_id']]['watermark_img'] =  $watermark_img;
        }
 
        $arr[$row['goods_id']]['goods_id']         = $row['goods_id'];
        if($display == 'grid')
        {
            $arr[$row['goods_id']]['goods_name']       = $GLOBALS['_CFG']['goods_name_length'] > 0 ? sub_str($row['goods_name'], $GLOBALS['_CFG']['goods_name_length']) : $row['goods_name'];
        }
        else
        {
            $arr[$row['goods_id']]['goods_name']       = $row['goods_name'];
        }
        $arr[$row['goods_id']]['name']             = $row['goods_name'];
        $arr[$row['goods_id']]['goods_brief']      = $row['goods_brief'];
        $arr[$row['goods_id']]['goods_style_name'] = add_style($row['goods_name'],$row['goods_name_style']);
        $arr[$row['goods_id']]['market_price']     = price_format($row['market_price']);
        $arr[$row['goods_id']]['shop_price']       = price_format($row['shop_price']);
        $arr[$row['goods_id']]['type']             = $row['goods_type'];
        $arr[$row['goods_id']]['promote_price']    = ($promote_price > 0) ? price_format($promote_price) : '';
        $arr[$row['goods_id']]['goods_thumb']      = get_image_path($row['goods_id'], $row['goods_thumb'], true);
        $arr[$row['goods_id']]['goods_img']        = get_image_path($row['goods_id'], $row['goods_img']);
        $arr[$row['goods_id']]['original_img']     = get_image_path($row['goods_id'], $row['original_img']);
        $arr[$row['goods_id']]['url']              = build_uri('goods', array('gid'=>$row['goods_id']), $row['goods_name']);
    }
 
    return $arr;
}
 
/**
 * 获得分类下的商品总数
 *
 * @access  public
 * @param   string     $children  
 * @param   string        $keywords   商品名称查找
 * @param   array      $price_search 搜索价格区间中的商品
 * @return  integer
 */
function get_cagtegory_goods_count($children,$keywords='',$price_search='')
{
   $price_str = '';
    if(!empty($price_search)){
        if($price_search['min'] > 0){
            $price_str .= " AND g.shop_price > ".$price_search['min']." ";
        }
        if($price_search['max'] > 0){
            $price_str .= " AND g.shop_price <= ".$price_search['max']." ";
        }
    }
 
    /* 返回商品总数 */
    if(empty($keywords)){
         $where  = "sgc.supplier_id=".$_GET['suppId']." AND $children";
        $sql = 'SELECT count(DISTINCT g.goods_id) FROM ' . $GLOBALS['ecs']->table('supplier_goods_cat') . ' AS sgc LEFT JOIN ' . $GLOBALS['ecs']->table('goods') . ' AS g ' .
                'ON sgc.goods_id = g.goods_id AND g.is_on_sale = 1 AND g.is_alone_sale = 1 AND g.is_delete = 0 '.$price_str.' WHERE '.$where;
    }else{
        $where  = "g.supplier_id=".$_GET['suppId']." AND $children";
        $sql = 'SELECT count(DISTINCT g.goods_id) FROM ' . $GLOBALS['ecs']->table('goods') . ' AS g ' .
                'WHERE g.is_on_sale = 1 AND g.is_alone_sale = 1 AND g.is_delete = 0 '. $price_str .' AND '.$where;
    }
    return $GLOBALS['db']->getOne($sql);
}
 
/**
 * 获取搜索中用户选择的价格区间
 * @param int  $price  代表价格区间的值
 */
function get_search_price($price=0){
    global $index_price;
    $num = count($index_price);
    $info = explode('-',$index_price[$price]);
    $ret = array('min'=>0,'max'=>0);
    if($price < --$num){
        //搜索中价格第一个条件
        if(count($info) == 1){
            $ret['min'] = intval($info[0]);
            $ret['max'] = 0;
        }else{
            $ret['min'] = intval($info[0]);
            $ret['max'] = intval($info[1]);
        }
    }elseif($price == --$num){
        //搜索中价格最后一个条件
        if(count($info) == 1){
            $ret['min'] = 0;
            $ret['max'] = intval($info[1]);
        }else{
            $ret['min'] = intval($info[0]);
            $ret['max'] = intval($info[1]);
        }
    }else{
        //搜索中价格中间条件
        $ret['min'] = intval($info[0]);
        $ret['max'] = intval($info[1]);
    }
    return $ret;
}
 
?>