Goods.php
22 KB
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
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
<?php
/**
* tpshop
* ============================================================================
* * 版权所有 2015-2027 深圳搜豹网络科技有限公司,并保留所有权利。
* 网站地址: http://www.tp-shop.cn
* ----------------------------------------------------------------------------
* 这不是一个自由软件!您只能在不用于商业目的的前提下对程序代码进行修改和使用 .
* 不允许对程序代码以任何形式任何目的的再发布。
* ============================================================================
* $Author: IT宇宙人 2015-08-10 $
*/
namespace app\home\controller;
use app\home\logic\CartLogic;
use app\home\logic\GoodsLogic;
use think\AjaxPage;
use think\Controller;
use think\Url;
use think\Config;
use think\Page;
use think\Verify;
use think\Db;
class Goods extends Base {
public function index(){
return $this->fetch();
}
/**
* 商品详情页
*/
public function goodsInfo(){
// form表单提交
//C('TOKEN_ON',true);
$goodsLogic = new \app\home\logic\GoodsLogic();
//echo '=='.input('get.id');
$goods_id = I("get.id/d");
$goods = M('Goods')->where("goods_id",$goods_id)->find();
if(empty($goods) || ($goods['is_on_sale'] == 0)){
$this->error('该商品已经下架',U('Index/index'));
}
if($goods['brand_id']){
$brnad = M('brand')->where("id",$goods['brand_id'])->find();
$goods['brand_name'] = $brnad['name'];
}
$goods_images_list = M('GoodsImages')->where("goods_id", $goods_id)->select(); // 商品 图册
$goods_attribute = M('GoodsAttribute')->getField('attr_id,attr_name'); // 查询属性
$goods_attr_list = M('GoodsAttr')->where("goods_id", $goods_id)->select(); // 查询商品属性表
$filter_spec = $goodsLogic->get_spec($goods_id);
//商品是否正在促销中
if($goods['prom_type'] == 1)
{
$goods['flash_sale'] = get_goods_promotion($goods['goods_id']);
$flash_sale = M('flash_sale')->where("id", $goods['prom_id'])->find();
$this->assign('flash_sale',$flash_sale);
}
$freight_free = tpCache('shopping.freight_free'); // 全场满多少免运费
$spec_goods_price = M('spec_goods_price')->where("goods_id", $goods_id)->getField("key,price,store_count"); // 规格 对应 价格 库存表
M('Goods')->where("goods_id", $goods_id)->save(array('click_count'=>$goods['click_count']+1 )); //统计点击数
$commentStatistics = $goodsLogic->commentStatistics($goods_id);// 获取某个商品的评论统计
$point_rate = tpCache('shopping.point_rate');
$this->assign('freight_free', $freight_free);// 全场满多少免运费
$this->assign('spec_goods_price', json_encode($spec_goods_price,true)); // 规格 对应 价格 库存表
$this->assign('navigate_goods',navigate_goods($goods_id,1));// 面包屑导航
$this->assign('commentStatistics',$commentStatistics);//评论概览
$this->assign('goods_attribute',$goods_attribute);//属性值
$this->assign('goods_attr_list',$goods_attr_list);//属性列表
$this->assign('filter_spec',$filter_spec);//规格参数
$this->assign('goods_images_list',$goods_images_list);//商品缩略图
$this->assign('siblings_cate',$goodsLogic->get_siblings_cate($goods['cat_id']));//相关分类
$this->assign('look_see',$goodsLogic->get_look_see($goods));//看了又看
$this->assign('goods',$goods);
$this->assign('point_rate',$point_rate);
return $this->fetch();
}
public function goodsInfo2(){
$this->fetch();
}
/**
* 获取可发货地址
*/
public function getRegion()
{
$goodsLogic = new GoodsLogic();
$region_list = $goodsLogic->getRegionList();//获取配送地址列表
$region_list['status'] = 1;
$this->ajaxReturn($region_list);
}
/**
* 商品列表页
*/
public function goodsList(){
$key = md5($_SERVER['REQUEST_URI'].I('start_price').'_'.I('end_price'));
$html = S($key);
if(!empty($html))
{
return $html;
}
$filter_param = array(); // 帅选数组
$id = I('get.id/d',1); // 当前分类id
$brand_id = I('get.brand_id/d',0);
$spec = I('get.spec',0); // 规格
$attr = I('get.attr',''); // 属性
$sort = I('get.sort','goods_id'); // 排序
$sort_asc = I('get.sort_asc','asc'); // 排序
$price = I('get.price',''); // 价钱
$start_price = trim(I('post.start_price','0')); // 输入框价钱
$end_price = trim(I('post.end_price','0')); // 输入框价钱
if($start_price && $end_price) $price = $start_price.'-'.$end_price; // 如果输入框有价钱 则使用输入框的价钱
$filter_param['id'] = $id; //加入帅选条件中
$brand_id && ($filter_param['brand_id'] = $brand_id); //加入帅选条件中
$spec && ($filter_param['spec'] = $spec); //加入帅选条件中
$attr && ($filter_param['attr'] = $attr); //加入帅选条件中
$price && ($filter_param['price'] = $price); //加入帅选条件中
$goodsLogic = new GoodsLogic(); // 前台商品操作逻辑类
// 分类菜单显示
$goodsCate = M('GoodsCategory')->where("id", $id)->find();// 当前分类
//($goodsCate['level'] == 1) && header('Location:'.U('Home/Channel/index',array('cat_id'=>$id))); //一级分类跳转至大分类馆
$cateArr = $goodsLogic->get_goods_cate($goodsCate);
// 帅选 品牌 规格 属性 价格
$cat_id_arr = getCatGrandson ($id);
$filter_goods_id = M('goods')->where(['is_on_sale'=>1,'cat_id'=>['in',implode(',', $cat_id_arr)]])->getField("goods_id",true);
// 过滤帅选的结果集里面找商品
if($brand_id || $price)// 品牌或者价格
{
$goods_id_1 = $goodsLogic->getGoodsIdByBrandPrice($brand_id,$price); // 根据 品牌 或者 价格范围 查找所有商品id
$filter_goods_id = array_intersect($filter_goods_id,$goods_id_1); // 获取多个帅选条件的结果 的交集
}
if($spec)// 规格
{
$goods_id_2 = $goodsLogic->getGoodsIdBySpec($spec); // 根据 规格 查找当所有商品id
$filter_goods_id = array_intersect($filter_goods_id,$goods_id_2); // 获取多个帅选条件的结果 的交集
}
if($attr)// 属性
{
$goods_id_3 = $goodsLogic->getGoodsIdByAttr($attr); // 根据 规格 查找当所有商品id
$filter_goods_id = array_intersect($filter_goods_id,$goods_id_3); // 获取多个帅选条件的结果 的交集
}
$filter_menu = $goodsLogic->get_filter_menu($filter_param,'goodsList'); // 获取显示的帅选菜单
$filter_price = $goodsLogic->get_filter_price($filter_goods_id,$filter_param,'goodsList'); // 帅选的价格期间
$filter_brand = $goodsLogic->get_filter_brand($filter_goods_id,$filter_param,'goodsList',1); // 获取指定分类下的帅选品牌
$filter_spec = $goodsLogic->get_filter_spec($filter_goods_id,$filter_param,'goodsList',1); // 获取指定分类下的帅选规格
$filter_attr = $goodsLogic->get_filter_attr($filter_goods_id,$filter_param,'goodsList',1); // 获取指定分类下的帅选属性
$count = count($filter_goods_id);
$page = new Page($count,12);
if($count > 0)
{
$goods_list = M('goods')->where("goods_id","in", implode(',', $filter_goods_id))->order("$sort $sort_asc")->limit($page->firstRow.','.$page->listRows)->select();
$filter_goods_id2 = get_arr_column($goods_list, 'goods_id');
if($filter_goods_id2)
$goods_images = M('goods_images')->where("goods_id", "in", implode(',', $filter_goods_id2))->select();
}
// print_r($filter_menu);
$goods_category = M('goods_category')->where('is_show=1')->getField('id,name,parent_id,level'); // 键值分类数组
$navigate_cat = navigate_goods($id); // 面包屑导航
$this->assign('goods_list',$goods_list);
$this->assign('navigate_cat',$navigate_cat);
$this->assign('goods_category',$goods_category);
$this->assign('goods_images',$goods_images); // 相册图片
$this->assign('filter_menu',$filter_menu); // 帅选菜单
$this->assign('filter_spec',$filter_spec); // 帅选规格
$this->assign('filter_attr',$filter_attr); // 帅选属性
$this->assign('filter_brand',$filter_brand); // 列表页帅选属性 - 商品品牌
$this->assign('filter_price',$filter_price);// 帅选的价格期间
$this->assign('goodsCate',$goodsCate);
$this->assign('cateArr',$cateArr);
$this->assign('filter_param',$filter_param); // 帅选条件
$this->assign('cat_id',$id);
$this->assign('page',$page);// 赋值分页输出
$html = $this->fetch();
S($key,$html);
return $html;
}
/**
* 查询配送地址,并执行回调函数
*/
public function region()
{
$fid = I('fid');
$callback = I('callback');
$parent_region = M('region')->field('id,name')->where(array('parent_id'=>$fid))->select();
echo $callback.'('.json_encode($parent_region).')';
exit;
}
/**
* 商品物流配送和运费
*/
public function dispatching()
{
$goods_id = I('goods_id');//143
$region_id = I('region_id');//28242
$goods_logic = new GoodsLogic();
$dispatching_data = $goods_logic->getGoodsDispatching($goods_id,$region_id);
$this->ajaxReturn($dispatching_data);
}
/**
* 商品搜索列表页
*/
public function search()
{
//C('URL_MODEL',0);
$filter_param = array(); // 帅选数组
$id = I('get.id',0); // 当前分类id
$brand_id = I('brand_id',0);
$sort = I('sort','goods_id'); // 排序
$sort_asc = I('sort_asc','asc'); // 排序
$price = I('price',''); // 价钱
$start_price = trim(I('start_price','0')); // 输入框价钱
$end_price = trim(I('end_price','0')); // 输入框价钱
if($start_price && $end_price) $price = $start_price.'-'.$end_price; // 如果输入框有价钱 则使用输入框的价钱
$q = urldecode(trim(I('q',''))); // 关键字搜索
empty($q) && $this->error('请输入搜索词');
$id && ($filter_param['id'] = $id); //加入帅选条件中
$brand_id && ($filter_param['brand_id'] = $brand_id); //加入帅选条件中
$price && ($filter_param['price'] = $price); //加入帅选条件中
$q && ($_GET['q'] = $filter_param['q'] = $q); //加入帅选条件中
$goodsLogic = new GoodsLogic(); // 前台商品操作逻辑类
$where = array(
'is_on_sale' => 1
);
//引入
if(file_exists(PLUGIN_PATH.'coreseek/sphinxapi.php'))
{
require_once(PLUGIN_PATH.'coreseek/sphinxapi.php');
$cl = new \SphinxClient();
$cl->SetServer(C('SPHINX_HOST').'', intval(C('SPHINX_PORT')));
$cl->SetConnectTimeout(10);
$cl->SetArrayResult(true);
$cl->SetMatchMode(SPH_MATCH_ANY);
$res = $cl->Query($q, "mysql");
if($res){
$goods_id_array = array();
foreach ($res['matches'] as $key => $value) {
$goods_id_array[] = $value['id'];
}
if(!empty($goods_id_array)){
$where['goods_id'] = array('in',$goods_id_array);
}else{
$where['goods_id'] = 0;
}
}else{
$where['goods_name'] = array('like','%'.$q.'%');
}
}else{
$where['goods_name'] = array('like','%'.$q.'%');
}
if($id)
{
$cat_id_arr = getCatGrandson ($id);
$where['cat_id'] = array('in',implode(',', $cat_id_arr));
}
$search_goods = M('goods')->where($where)->getField('goods_id,cat_id');
$filter_goods_id = array_keys($search_goods);
$filter_cat_id = array_unique($search_goods); // 分类需要去重
if($filter_cat_id)
{
$cateArr = M('goods_category')->where("id","in",implode(',', $filter_cat_id))->select();
$tmp = $filter_param;
foreach($cateArr as $k => $v)
{
$tmp['id'] = $v['id'];
$cateArr[$k]['href'] = U("/Home/Goods/search",$tmp);
}
}
// 过滤帅选的结果集里面找商品
if($brand_id || $price)// 品牌或者价格
{
$goods_id_1 = $goodsLogic->getGoodsIdByBrandPrice($brand_id,$price); // 根据 品牌 或者 价格范围 查找所有商品id
$filter_goods_id = array_intersect($filter_goods_id,$goods_id_1); // 获取多个帅选条件的结果 的交集
}
$filter_menu = $goodsLogic->get_filter_menu($filter_param,'search'); // 获取显示的帅选菜单
$filter_price = $goodsLogic->get_filter_price($filter_goods_id,$filter_param,'search'); // 帅选的价格期间
$filter_brand = $goodsLogic->get_filter_brand($filter_goods_id,$filter_param,'search',1); // 获取指定分类下的帅选品牌
$count = count($filter_goods_id);
$page = new Page($count,20);
if($count > 0)
{
$goods_list = M('goods')->where(['is_on_sale'=>1,'goods_id'=>['in',implode(',', $filter_goods_id)]])->order("$sort $sort_asc")->limit($page->firstRow.','.$page->listRows)->select();
$filter_goods_id2 = get_arr_column($goods_list, 'goods_id');
if($filter_goods_id2)
$goods_images = M('goods_images')->where("goods_id", "in",implode(',', $filter_goods_id2))->select();
}
$this->assign('goods_list',$goods_list);
$this->assign('goods_images',$goods_images); // 相册图片
$this->assign('filter_menu',$filter_menu); // 帅选菜单
$this->assign('filter_brand',$filter_brand); // 列表页帅选属性 - 商品品牌
$this->assign('filter_price',$filter_price);// 帅选的价格期间
$this->assign('cateArr',$cateArr);
$this->assign('filter_param',$filter_param); // 帅选条件
$this->assign('cat_id',$id);
$this->assign('page',$page);// 赋值分页输出
$this->assign('q',I('q'));
C('TOKEN_ON',false);
return $this->fetch();
}
/**
* 商品咨询ajax分页
*/
public function ajax_consult(){
$goods_id = I("goods_id/d", 0);
$consult_type = I('consult_type','0'); // 0全部咨询 1 商品咨询 2 支付咨询 3 配送 4 售后
$where = ['parent_id'=>0,'goods_id'=>$goods_id];
if($consult_type > 0){
$where['consult_type'] = $consult_type;
}
$count = M('GoodsConsult')->where($where)->count();
$page = new AjaxPage($count,5);
$show = $page->show();
$list = M('GoodsConsult')->where($where)->order("id desc")->limit($page->firstRow.','.$page->listRows)->select();
$replyList = M('GoodsConsult')->where("parent_id > 0")->order("id desc")->select();
$this->assign('consultCount',$count);// 商品咨询数量
$this->assign('consultList',$list);// 商品咨询
$this->assign('replyList',$replyList); // 管理员回复
$this->assign('page',$show);// 赋值分页输出
return $this->fetch();
}
/**
* 商品评论ajax分页
*/
public function ajaxComment(){
$goods_id = I("goods_id",'0');
$commentType = I('commentType','1'); // 1 全部 2好评 3 中评 4差评
$where = ['is_show'=>1,'goods_id'=>$goods_id,'parent_id'=>0];
if($commentType==5){
$where['img'] = ['<>',''];
}else{
$typeArr = array('1'=>'0,1,2,3,4,5','2'=>'4,5','3'=>'3','4'=>'0,1,2');
$where['ceil((deliver_rank + goods_rank + service_rank) / 3)'] = ['in',$typeArr[$commentType]];
}
$count = M('Comment')->where($where)->count();
$page = new AjaxPage($count,2);
$show = $page->show();
$list = M('Comment')->alias('c')->join('__USERS__ u','u.user_id = c.user_id','LEFT')->where($where)->order("add_time desc")->limit($page->firstRow.','.$page->listRows)->select();
$replyList = M('Comment')->where(['is_show'=>1,'goods_id'=>$goods_id,'parent_id'=>['>',0]])->order("add_time desc")->select();
foreach($list as $k => $v){
$list[$k]['img'] = unserialize($v['img']); // 晒单图片
}
$this->assign('commentlist',$list);// 商品评论
$this->assign('replyList',$replyList); // 管理员回复
$this->assign('page',$show);// 赋值分页输出
return $this->fetch();
}
/**
* 商品咨询
*/
public function goodsConsult(){
// form表单提交
C('TOKEN_ON',true);
$goods_id = I("goods_id",'0'); // 商品id
$consult_type = I("consult_type",'1'); // 商品咨询类型
$username = I("username",'TPshop用户'); // 网友咨询
$content = I("content"); // 咨询内容
$verify = new Verify();
if (!$verify->check(I('post.verify_code'),'consult')) {
$this->error("验证码错误");
}
$result = $this->validate(input('post.'),['__token__'=>'require|token'],['__token__'=>'你已经提交过了']);
if (true !== $result) {
$this->error($result, U('/Home/Goods/goodsInfo',array('id'=>$goods_id)));
exit;
}
$goodsConsult = M('goodsConsult');
$data = array(
'goods_id'=>$goods_id,
'consult_type'=>$consult_type,
'username'=>$username,
'content'=>$content,
'add_time'=>time(),
);
$goodsConsult->add($data);
$this->success('咨询已提交!', U('/Home/Goods/goodsInfo',array('id'=>$goods_id)));
}
/**
* 用户收藏某一件商品
* @param type $goods_id
*/
public function collect_goods()
{
$goods_id = I('goods_id/d');
$stoid = I('stoid/d');
$goodsLogic = new GoodsLogic();
$result = $goodsLogic->collect_goods(cookie('user_id'),$goods_id,$stoid);
exit(json_encode($result));
}
/**
* 加入购物车弹出
*/
public function open_add_cart()
{
return $this->fetch();
}
/**
* 积分商城
*/
public function integralMall()
{
$cat_id = I('get.id/d');
$minValue = I('get.minValue');
$maxValue = I('get.maxValue');
$brandType = I('get.brandType');
$point_rate = tpCache('shopping.point_rate');
$is_new = I('get.is_new',0);
$exchange = I('get.exchange',0);
$goods_where = array(
'is_on_sale' => 1, //是否上架
);
//积分兑换筛选
$exchange_integral_where_array = array(array('gt',0));
// 分类id
if (!empty($cat_id)) {
$goods_where['cat_id'] = array('in', getCatGrandson($cat_id));
}
//积分截止范围
if (!empty($maxValue)) {
array_push($exchange_integral_where_array, array('lt', $maxValue));
}
//积分起始范围
if (!empty($minValue)) {
array_push($exchange_integral_where_array, array('gt', $minValue));
}
//积分+金额
if ($brandType == 1) {
array_push($exchange_integral_where_array, array('exp', ' < shop_price* ' . $point_rate));
}
//全部积分
if ($brandType == 2) {
array_push($exchange_integral_where_array, array('exp', ' = shop_price* ' . $point_rate));
}
//新品
if($is_new == 1){
$goods_where['is_new'] = $is_new;
}
//我能兑换
$user_id = cookie('user_id');
if ($exchange == 1 && !empty($user_id)) {
$user_pay_points = intval(M('users')->where(array('user_id' => $user_id))->getField('pay_points'));
if ($user_pay_points !== false) {
array_push($exchange_integral_where_array, array('lt', $user_pay_points));
}
}
$goods_where['exchange_integral'] = $exchange_integral_where_array;
$goods_list_count = M('goods')->where($goods_where)->count(); //总页数
$page = new Page($goods_list_count, 15);
$goods_list = M('goods')->where($goods_where)->limit($page->firstRow . ',' . $page->listRows)->select();
$goods_category = M('goods_category')->where(array('level' => 1))->select();
$this->assign('goods_list', $goods_list);
$this->assign('page', $page->show());
$this->assign('goods_list_count',$goods_list_count);
$this->assign('goods_category', $goods_category);//商品1级分类
$this->assign('point_rate', $point_rate);//兑换率
$this->assign('nowPage',$page->nowPage);// 当前页
$this->assign('totalPages',$page->totalPages);//总页数
return $this->fetch();
}
}