Nenhuma descrição
Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

ShopComment.php 18KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415
  1. <?php
  2. /**
  3. * 易优CMS
  4. * ============================================================================
  5. * 版权所有 2016-2028 海口快推科技有限公司,并保留所有权利。
  6. * 网站地址: http://www.eyoucms.com
  7. * ----------------------------------------------------------------------------
  8. * 如果商业用途务必到官方购买正版授权, 以免引起不必要的法律纠纷.
  9. * ============================================================================
  10. * Author: 陈风任 <491085389@qq.com>
  11. * Date: 2019-3-20
  12. */
  13. namespace app\user\controller;
  14. use think\Db;
  15. use think\Config;
  16. use think\Page;
  17. use think\Cookie;
  18. class ShopComment extends Base
  19. {
  20. // 初始化
  21. public function _initialize() {
  22. parent::_initialize();
  23. $functionLogic = new \app\common\logic\FunctionLogic;
  24. $functionLogic->validate_authorfile(2);
  25. }
  26. // 我的评价
  27. public function index()
  28. {
  29. $order_code = input('param.order_code');
  30. $functionLogic = new \app\user\logic\FunctionLogic;
  31. $ServiceInfo = $functionLogic->GetAllCommentInfo($this->users_id, $order_code);
  32. $eyou = [
  33. 'field' => [
  34. 'comment' => $ServiceInfo['Comment'],
  35. 'pageStr' => $ServiceInfo['pageStr'],
  36. ],
  37. ];
  38. $this->assign('eyou', $eyou);
  39. return $this->fetch('users/shop_comment_list');
  40. }
  41. // 晒单评价
  42. public function need_comment_list()
  43. {
  44. $res = [];
  45. // 查询已完成待评价订单
  46. $where = [
  47. 'is_comment' => 0,
  48. 'order_status' => 3,
  49. 'users_id' => $this->users_id,
  50. ];
  51. $keywords = input('param.keywords/s', '');
  52. if (!empty($keywords)) $where['order_code'] = ['LIKE', "%{$keywords}%"];
  53. $count = Db::name('shop_order')->where($where)->order('order_id desc')->count();
  54. $Page = new Page($count, config('paginate.list_rows'));
  55. $show = $Page->show();
  56. $this->assign('page', $show);
  57. $field = 'order_id, order_code, order_amount, add_time';
  58. $res = Db::name('shop_order')->field($field)->where($where)->order('order_id desc')->limit($Page->firstRow.','.$Page->listRows)->getAllWithIndex('order_id');
  59. if (!empty($res)) {
  60. $orderIds = get_arr_column($res, 'order_id');
  61. $goodsWhere['a.is_comment'] = 0;
  62. $goodsWhere['a.order_id'] = ['in',$orderIds];
  63. $goodsArr = Db::name('shop_order_details')
  64. ->alias('a')
  65. ->join('archives b','a.product_id = b.aid')
  66. ->where($goodsWhere)
  67. ->field('a.product_id,a.litpic,a.order_id,b.*')
  68. ->select();
  69. $New = get_archives_data($goodsArr, 'product_id');
  70. foreach ($goodsArr as $k=> $v){
  71. if (!empty($New) && !empty($New[$v['product_id']])) {
  72. $v['arcurl'] = urldecode(arcurl('home/Product/view', $New[$v['product_id']]));
  73. } else {
  74. $v['arcurl'] = urldecode(arcurl('home/View/index', ['aid'=>$v['product_id']]));
  75. }
  76. $v['litpic'] = get_default_pic($v['litpic']);
  77. $res[$v['order_id']]['goods'][] = $v;
  78. }
  79. }
  80. foreach ($res as $k => $v){
  81. $res[$k]['OrderDetailsUrl'] = urldecode(url('user/Shop/shop_order_details',['order_id'=>$v['order_id']]));
  82. $res[$k]['CommentProduct'] = urldecode(url('user/ShopComment/comment_list', ['order_id' => $v['order_id']]));
  83. $res[$k]['order_amount'] = floatval($v['order_amount']);
  84. }
  85. // 加载数据
  86. $eyou = [
  87. 'field' => $res,
  88. ];
  89. $this->assign('eyou',$eyou);
  90. return $this->fetch('users/shop_need_comment_list');
  91. }
  92. // 评价中转页
  93. public function comment_list()
  94. {
  95. // 查询订单信息
  96. $order_id = input('param.order_id/d', 0);
  97. if (empty($order_id)) $this->error('请选择需要评价的订单');
  98. $where = [
  99. 'users_id' => $this->users_id,
  100. 'order_id' => $order_id,
  101. ];
  102. $orderData = Db::name('shop_order')->where($where)->find();
  103. $url = isset($_SERVER['HTTP_REFERER']) ? $_SERVER['HTTP_REFERER'] : url("user/Shop/shop_centre", ['select_status'=>3]);
  104. if (empty($orderData)) $this->error('订单不存在', $url);
  105. if (!empty($orderData['is_comment']) && 1 === intval($orderData['is_comment'])) $this->error('订单已完成评价', $url);
  106. if (!empty($orderData['order_status']) && 3 !== intval($orderData['order_status'])) $this->error('订单暂不可评价', $url);
  107. // 查询订单商品信息
  108. $data = Db::name('shop_order_details')->where($where)->select();
  109. $array_new = get_archives_data($data, 'product_id');
  110. foreach ($data as $k => $v) {
  111. // 商品封面图处理
  112. $v['litpic'] = handle_subdir_pic(get_default_pic($v['litpic']));
  113. // 获取订单商品规格列表(购买时的商品规格)
  114. $v['product_spec_list'] = model('ShopPublicHandle')->getOrderGoodsSpecList($v);
  115. // 商品详情页URL
  116. $v['arcurl'] = urldecode(arcurl('home/View/index', ['aid'=>$v['product_id']]));
  117. if (!empty($array_new) && !empty($array_new[$v['product_id']])) {
  118. $v['arcurl'] = urldecode(arcurl('home/Product/view', $array_new[$v['product_id']]));
  119. }
  120. $data[$k] = $v;
  121. }
  122. // 返回订单数据
  123. $returnData = [
  124. 'order' => $orderData,
  125. 'goods' => $data,
  126. ];
  127. $eyou = [
  128. 'field' => $returnData,
  129. 'SubmitUrl' => url('user/ShopComment/add_comment', ['_ajax'=>1])
  130. ];
  131. $this->assign('eyou', $eyou);
  132. return $this->fetch('users/shop_comment_goods_list');
  133. }
  134. // 批量添加商品评论
  135. public function add_comment()
  136. {
  137. if (IS_AJAX_POST) {
  138. $post = input('post.');
  139. // 是否选择评价分
  140. $post['order_id'] = intval($post['order_id']);
  141. if (empty($post['total_score'])) $this->error('请选择全部商品评价分');
  142. $count = $content = 0;
  143. foreach ($post['total_score'] as $key => $value) {
  144. if (!empty($value)) $count++;
  145. if (!empty($post['content'][$key])) $content++;
  146. }
  147. if (0 === intval($count) || intval($count) !== intval(count($post['details_id']))) $this->error('请选择全部商品评价分');
  148. if (0 === intval($content) || intval($content) !== intval(count($post['details_id']))) $this->error('请填写全部商品评价内容');
  149. // 再次查询确认商品是否已评价过
  150. $where = [
  151. 'users_id' => $this->users_id,
  152. 'order_id' => $post['order_id'],
  153. 'is_comment' => 1
  154. ];
  155. $resultID = Db::name('shop_order')->where($where)->count();
  156. if (!empty($resultID)) $this->error('订单已评价过');
  157. // 批量添加商品评价(一次评价一个订单内的所有商品)
  158. $insertAll = $details_idArr = $product_idArr = [];
  159. foreach ($post['total_score'] as $k => $v) {
  160. if (!empty($v) && !empty($post['details_id'][$k]) && !empty($post['product_id'][$k])) {
  161. // 如果是旧版评分则执行,旧版评分转换新版评分
  162. if (empty($post['newCommnet'])) {
  163. if (1 === intval($v)) {
  164. $v = 5;
  165. } else if (2 === intval($v)) {
  166. $v = 3;
  167. } else if (3 === intval($v)) {
  168. $v = 1;
  169. }
  170. }
  171. $details_idArr[] = intval($post['details_id'][$k]);
  172. $product_idArr[] = intval($post['product_id'][$k]);
  173. $insertAll[] = [
  174. 'product_id' => intval($post['product_id'][$k]),
  175. 'users_id' => $this->users_id,
  176. 'order_id' => $post['order_id'],
  177. 'order_code' => $post['order_code'],
  178. 'details_id' => intval($post['details_id'][$k]),
  179. 'total_score' => $v,
  180. 'content' => !empty($post['content'][$k]) ? serialize(htmlspecialchars($post['content'][$k])) : '',
  181. 'upload_img' => !empty($post['upload_img'][$k][0]) ? serialize(implode(',', $post['upload_img'][$k])) : '',
  182. 'ip_address' => clientIP(),
  183. 'is_new_comment' => 1,
  184. 'add_time' => getTime(),
  185. 'update_time' => getTime()
  186. ];
  187. }
  188. }
  189. $resultID = Db::name('shop_order_comment')->insertAll($insertAll);
  190. if (!empty($resultID)) {
  191. // 商品主表增加评价数
  192. if (!empty($product_idArr)) {
  193. $where = [
  194. 'aid' => ['IN', $product_idArr],
  195. ];
  196. Db::name('archives')->where($where)->setInc('appraise', 1);
  197. }
  198. // 同步更新订单/商品为已评价
  199. if (!empty($details_idArr)) {
  200. $where = [
  201. 'users_id' => $this->users_id,
  202. 'order_id' => $post['order_id'],
  203. 'details_id' => ['IN', $details_idArr],
  204. ];
  205. $update = [
  206. 'is_comment' => 1,
  207. 'update_time' => getTime()
  208. ];
  209. Db::name('shop_order_details')->where($where)->update($update);
  210. }
  211. // 查询订单商品是否全部完成评价
  212. $where = [
  213. 'is_comment' => 0,
  214. 'users_id' => $this->users_id,
  215. 'order_id' => $post['order_id'],
  216. ];
  217. $isCount = Db::name('shop_order_details')->where($where)->count();
  218. if (0 == $isCount) {
  219. // 更新订单为已完成评价
  220. $where = [
  221. 'order_status' => 3,
  222. 'users_id' => $this->users_id,
  223. 'order_id' => $post['order_id'],
  224. ];
  225. $update = [
  226. 'is_comment' => 1,
  227. 'update_time' => getTime()
  228. ];
  229. Db::name('shop_order')->where($where)->update($update);
  230. }
  231. // 返回提示结束
  232. $this->success('评价成功', in_array($this->usersTplVersion, ['v3']) ? url('user/ShopComment/need_comment_list') : url('user/ShopComment/index'));
  233. } else {
  234. $this->error('评价失败,请重试');
  235. }
  236. }
  237. }
  238. // 第一、第二版会员中心 -- 添加评论
  239. public function product()
  240. {
  241. // 商品评价功能已关闭
  242. if (empty($this->usersConfig['shop_open_comment'])) $this->error('商品评价功能已关闭');
  243. if (IS_AJAX_POST) {
  244. $post = input('post.');
  245. if (empty($post['total_score'])) $this->error('请选择评价评分');
  246. // 如果是旧版评分则执行
  247. if (empty($post['newCommnet'])) {
  248. // 旧版评分转换新版评分
  249. if (1 === intval($post['total_score'])) {
  250. $post['total_score'] = 5;
  251. } else if (2 === intval($post['total_score'])) {
  252. $post['total_score'] = 3;
  253. } else if (3 === intval($post['total_score'])) {
  254. $post['total_score'] = 1;
  255. }
  256. }
  257. $post['order_id'] = intval($post['order_id']);
  258. $post['details_id'] = intval($post['details_id']);
  259. $post['product_id'] = intval($post['product_id']);
  260. // 再次查询确认商品是否已评价过
  261. $where = [
  262. 'users_id' => $this->users_id,
  263. 'order_id' => $post['order_id'],
  264. 'details_id' => $post['details_id'],
  265. 'product_id' => $post['product_id'],
  266. 'is_comment' => 1
  267. ];
  268. $resultID = Db::name('shop_order_details')->where($where)->count();
  269. if (!empty($resultID)) $this->error('商品已评价过');
  270. // 是否开启评价自动审核
  271. $shopOpenCommentAudit = getUsersConfigData('shop.shop_open_comment_audit');
  272. // 添加评价数据
  273. $insert = [
  274. 'users_id' => $this->users_id,
  275. 'order_id' => !empty($post['order_id']) ? $post['order_id'] : 0,
  276. 'order_code' => !empty($post['order_code']) ? $post['order_code'] : 0,
  277. 'details_id' => !empty($post['details_id']) ? $post['details_id'] : 0,
  278. 'product_id' => !empty($post['product_id']) ? $post['product_id'] : 0,
  279. 'total_score' => !empty($post['total_score']) ? $post['total_score'] : 5,
  280. 'content' => !empty($post['content']) ? serialize(htmlspecialchars($post['content'])) : '',
  281. 'upload_img' => !empty($post['upload_img'][0]) ? serialize(implode(',', $post['upload_img'])) : '',
  282. 'ip_address' => clientIP(),
  283. 'is_new_comment' => 1,
  284. 'is_show' => !empty($shopOpenCommentAudit) ? 0 : 1,
  285. 'add_time' => getTime(),
  286. 'update_time' => getTime()
  287. ];
  288. $resultID = Db::name('shop_order_comment')->insertGetId($insert);
  289. if (!empty($resultID)) {
  290. // 商品主表增加评价数
  291. if (!empty($post['product_id'])) {
  292. $where = [
  293. 'aid' => $post['product_id'],
  294. ];
  295. Db::name('archives')->where($where)->setInc('appraise', 1);
  296. }
  297. // 同步更新订单商品为已评价
  298. $update = [
  299. 'details_id' => $insert['details_id'],
  300. 'is_comment' => 1,
  301. 'update_time' => getTime()
  302. ];
  303. Db::name('shop_order_details')->update($update);
  304. // 如果订单商品已经全部评价,那么订单主表is_comment == 1
  305. $where = [
  306. 'order_id' => $post['order_id'],
  307. 'users_id' => $this->users_id,
  308. 'is_comment' => 0
  309. ];
  310. $resultID = Db::name('shop_order_details')->where($where)->count();
  311. if (empty($resultID)){
  312. $where = [
  313. 'order_id' => $post['order_id'],
  314. 'users_id' => $this->users_id,
  315. 'order_status'=> 3,
  316. 'is_comment' => 0,
  317. ];
  318. $update = [
  319. 'is_comment' => 1,
  320. 'update_time' => getTime()
  321. ];
  322. Db::name('shop_order')->where($where)->update($update);
  323. }
  324. // 清理缓存并返回结束
  325. cache('EyouHomeAjaxComment_' . $post['product_id'], null, null, 'shop_order_comment');
  326. $this->success('评价成功!', url('user/Shop/shop_centre'));
  327. } else {
  328. $this->error('评价失败,请重试!');
  329. }
  330. }
  331. // 查询订单信息
  332. $details_id = input('param.details_id');
  333. if (empty($details_id)) $this->error('请选择需要评价的商品!');
  334. // 排除字段
  335. $field1 = 'add_time, update_time, apply_service';
  336. // 查询字段
  337. $field2 = 'b.order_code, b.add_time';
  338. // 查询条件
  339. $where = [
  340. 'a.users_id' => $this->users_id,
  341. 'a.details_id' => $details_id,
  342. ];
  343. // 查询数据
  344. $Details = Db::name('shop_order_details')
  345. ->alias('a')
  346. ->field($field1, true, PREFIX . 'shop_order_details', 'a')
  347. ->field($field2)
  348. ->where($where)
  349. ->join('__SHOP_ORDER__ b', 'a.order_id = b.order_id', 'LEFT')
  350. ->find();
  351. // 已评价商品跳转路径
  352. $url = isset($_SERVER['HTTP_REFERER']) ? $_SERVER['HTTP_REFERER'] : url("user/Shop/shop_centre", ['select_status'=>3]);
  353. if (empty($Details)) $this->error('商品已评价过', $url);
  354. if (1 == !empty($Details['is_comment'])) $this->error('商品已评价过', $url);
  355. // 商品规格
  356. $Details['spec_value'] = htmlspecialchars_decode(unserialize($Details['data'])['spec_value']);
  357. $product_spec_list = [];
  358. if (!empty($Details['spec_value'])) {
  359. $spec_value_arr = explode('<br/>', $Details['spec_value']);
  360. foreach ($spec_value_arr as $sp_key => $sp_val) {
  361. $sp_arr = explode(':', $sp_val);
  362. if (trim($sp_arr[0]) && !empty($sp_arr[0])) {
  363. $product_spec_list[] = [
  364. 'name' => !empty($sp_arr[0]) ? trim($sp_arr[0]) : '',
  365. 'value' => !empty($sp_arr[1]) ? trim($sp_arr[1]) : '',
  366. ];
  367. }
  368. }
  369. }
  370. $Details['product_spec_list'] = $product_spec_list;
  371. // 图片处理
  372. $Details['litpic'] = handle_subdir_pic(get_default_pic($Details['litpic']));
  373. // 产品内页地址
  374. $New = get_archives_data([$Details], 'product_id');
  375. if (!empty($New)) {
  376. $Details['arcurl'] = urldecode(arcurl('home/Product/view', $New[$Details['product_id']]));
  377. } else {
  378. $Details['arcurl'] = urldecode(arcurl('home/View/index', ['aid'=>$Details['product_id']]));
  379. }
  380. $eyou = [
  381. 'field' => $Details,
  382. 'SubmitUrl' => url('user/ShopComment/product', ['_ajax'=>1])
  383. ];
  384. $this->assign('eyou', $eyou);
  385. return $this->fetch('shop_comment_product');
  386. }
  387. }