截流自动化的商城平台
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.

OrderLogic.php 4.8KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | likeshop开源商城系统
  4. // +----------------------------------------------------------------------
  5. // | 欢迎阅读学习系统程序代码,建议反馈是我们前进的动力
  6. // | gitee下载:https://gitee.com/likeshop_gitee
  7. // | github下载:https://github.com/likeshop-github
  8. // | 访问官网:https://www.likeshop.cn
  9. // | 访问社区:https://home.likeshop.cn
  10. // | 访问手册:http://doc.likeshop.cn
  11. // | 微信公众号:likeshop技术社区
  12. // | likeshop系列产品在gitee、github等公开渠道开源版本可免费商用,未经许可不能去除前后端官方版权标识
  13. // | likeshop系列产品收费版本务必购买商业授权,购买去版权授权后,方可去除前后端官方版权标识
  14. // | 禁止对系统程序代码以任何目的,任何形式的再发布
  15. // | likeshop团队版权所有并拥有最终解释权
  16. // +----------------------------------------------------------------------
  17. // | author: likeshop.cn.team
  18. // +------------------------------------------------------------------------
  19. namespace app\shop\logic\distribution;
  20. use app\common\basics\Logic;
  21. use app\common\model\distribution\DistributionLevel;
  22. use app\common\model\distribution\DistributionOrderGoods;
  23. use app\common\model\user\User;
  24. use app\common\server\UrlServer;
  25. class OrderLogic extends Logic
  26. {
  27. /**
  28. * @notes 分销订单列表
  29. * @param $params
  30. * @return int[]
  31. * @author Tab
  32. * @date 2021/9/3 14:53
  33. */
  34. public static function lists($params)
  35. {
  36. $where[] = ['dog.shop_id', '=', $params['shop_id']];
  37. // 订单信息
  38. if (isset($params['order_keyword']) && !empty($params['order_keyword'])) {
  39. $where[] = ['o.order_sn', '=', $params['order_keyword']];
  40. }
  41. // 商品名称
  42. if (isset($params['goods_keyword']) && !empty($params['goods_keyword'])) {
  43. $where[] = ['og.goods_name', 'like', '%'.$params['goods_keyword'].'%'];
  44. }
  45. // 分销会员
  46. if (isset($params['distribution_keyword']) && !empty($params['distribution_keyword'])) {
  47. $where[] = ['u.sn|u.nickname', 'like', '%'.$params['distribution_keyword'].'%'];
  48. }
  49. // 佣金状态
  50. if (isset($params['status']) && !empty($params['status'])) {
  51. $where[] = ['dog.status', '=', $params['status']];
  52. }
  53. $field = [
  54. 'o.id' => 'order_id',
  55. 'o.order_sn',
  56. 'o.create_time' => 'order_create_time',
  57. 'o.user_id' => 'order_user_id',
  58. 'u.id' => 'distribution_user_id',
  59. 'u.avatar' => 'distribution_avatar',
  60. 'u.sn' => 'distribution_sn',
  61. 'u.nickname' => 'distribution_nickname',
  62. 'og.image' => 'goods_image',
  63. 'og.goods_name' => 'goods_name',
  64. 'og.spec_value' => 'spec_value',
  65. 'og.goods_num' => 'goods_num',
  66. 'og.total_pay_price' => 'total_pay_price',
  67. 'dog.level_id',
  68. 'dog.level',
  69. 'dog.ratio',
  70. 'dog.money',
  71. 'dog.status' => 'status_desc',
  72. 'dog.settlement_time'
  73. ];
  74. $lists = DistributionOrderGoods::alias('dog')
  75. ->leftJoin('order o', 'o.id = dog.order_id')
  76. ->leftJoin('user u', 'u.id = dog.user_id')
  77. ->leftJoin('order_goods og', 'og.id = dog.order_goods_id')
  78. ->leftJoin('distribution_level dl', 'dl.id = dog.level_id')
  79. ->field($field)
  80. ->where($where)
  81. ->order('dog.id', 'desc')
  82. ->page($params['page'], $params['limit'])
  83. ->select()
  84. ->toArray();
  85. $count = DistributionOrderGoods::alias('dog')
  86. ->leftJoin('order o', 'o.id = dog.order_id')
  87. ->leftJoin('user u', 'u.id = dog.user_id')
  88. ->leftJoin('order_goods og', 'og.id = dog.order_goods_id')
  89. ->leftJoin('distribution_level dl', 'dl.id = dog.level_id')
  90. ->field($field)
  91. ->where($where)
  92. ->count();
  93. foreach($lists as &$item) {
  94. $item['order_create_time'] = date('Y-m-d H:i:s', $item['order_create_time']);
  95. $item['user_info'] = User::getUserInfo($item['order_user_id']);
  96. $item['distribution_avatar'] = empty($item['distribution_avatar']) ? '' : UrlServer::getFileUrl($item['distribution_avatar']);
  97. $item['user_info']['avatar'] = empty($item['user_info']['avatar']) ? '' : UrlServer::getFileUrl($item['user_info']['avatar']);
  98. $item['level_name'] = DistributionLevel::getLevelName($item['level_id']);
  99. $item['goods_image'] = empty($item['goods_image']) ? '' : UrlServer::getFileUrl($item['goods_image']);
  100. }
  101. return [
  102. 'count' => $count,
  103. 'lists' => $lists
  104. ];
  105. }
  106. }