暫無描述
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

FunctionLogic.php 3.0KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. <?php
  2. /**
  3. * 易优CMS
  4. * ============================================================================
  5. * 版权所有 2016-2028 海南赞赞网络科技有限公司,并保留所有权利。
  6. * 网站地址: http://www.eyoucms.com
  7. * ----------------------------------------------------------------------------
  8. * 如果商业用途务必到官方购买正版授权, 以免引起不必要的法律纠纷.
  9. * ============================================================================
  10. * Author: 小虎哥 <1105415366@qq.com>
  11. * Date: 2018-4-3
  12. */
  13. namespace app\user\logic;
  14. use think\Model;
  15. use think\Db;
  16. use think\Page;
  17. use think\Config;
  18. /**
  19. * @package common\Logic
  20. */
  21. load_trait('controller/Jump');
  22. class FunctionLogic extends Model
  23. {
  24. use \traits\controller\Jump;
  25. /**
  26. * 商品评价 - 读取会员自身所有服务单信息
  27. * @param [type] $users_id [description]
  28. * @param [type] $order_code [description]
  29. */
  30. public function GetAllCommentInfo($users_id = null, $order_code = null)
  31. {
  32. $functionLogic = new \app\common\logic\FunctionLogic;
  33. $functionLogic->check_authorfile(2);
  34. $where = [
  35. 'a.order_id' => ['>', 0],
  36. 'a.users_id' => $users_id
  37. ];
  38. if (!empty($order_code)) $where['a.order_code'] = ['LIKE', "%{$order_code}%"];
  39. $count = Db::name('shop_order_comment')->alias('a')->where($where)->count('comment_id');
  40. $pageObj = new Page($count, config('paginate.list_rows'));
  41. // 订单主表数据查询
  42. $field = 'a.comment_id, a.order_id, a.order_code, a.product_id, a.total_score, a.is_new_comment, a.is_show, a.add_time, b.product_name, b.product_price, b.litpic as product_img, b.num as product_num';
  43. $Comment = Db::name('shop_order_comment')->alias('a')->where($where)
  44. ->field($field)
  45. ->join('__SHOP_ORDER_DETAILS__ b', 'a.details_id = b.details_id', 'LEFT')
  46. ->limit($pageObj->firstRow.','.$pageObj->listRows)
  47. ->order('comment_id desc')
  48. ->select();
  49. $New = get_archives_data($Comment, 'product_id');
  50. foreach ($Comment as &$value) {
  51. // 商品图片
  52. $value['product_img'] = handle_subdir_pic(get_default_pic($value['product_img']));
  53. // 商品链接
  54. $value['ArchivesUrl'] = urldecode(arcurl('home/Product/view', $New[$value['product_id']]));
  55. // 订单详情
  56. $value['OrDetailsUrl'] = url('user/Shop/shop_order_details', ['order_id' => $value['order_id']]);
  57. // 评价详情
  58. $value['ViewCommentUrl'] = $value['ArchivesUrl'];
  59. // 评价转换星级评分
  60. $value['total_score'] = empty($value['is_new_comment']) ? GetScoreArray($value['total_score']) : $value['total_score'];
  61. // 商品评价评分
  62. $value['order_total_score'] = Config::get('global.order_total_score')[$value['total_score']];
  63. }
  64. $Return['Comment'] = $Comment;
  65. $Return['pageStr'] = $pageObj->show();
  66. return $Return;
  67. }
  68. }