截流自动化的商城平台
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

FoundLogic.php 5.4KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154
  1. <?php
  2. namespace app\admin\logic\team;
  3. use app\common\basics\Logic;
  4. use app\common\enum\OrderEnum;
  5. use app\common\enum\TeamEnum;
  6. use app\common\model\order\Order;
  7. use app\common\model\team\TeamFound;
  8. use app\common\model\team\TeamJoin;
  9. use app\common\server\FileServer;
  10. use app\common\server\UrlServer;
  11. use Exception;
  12. class FoundLogic extends Logic
  13. {
  14. /**
  15. * @Notes: 开团列表
  16. * @Author: 张无忌
  17. * @param $get
  18. * @return array|bool
  19. */
  20. public static function lists($get)
  21. {
  22. try {
  23. $where = [];
  24. if (isset($get['type']) and is_numeric($get['type']) and $get['type'] != 100) {
  25. $where[] = ['status', '=', (int)$get['type']];
  26. }
  27. if (!empty($get['team_sn']) and $get['team_sn']) {
  28. $where[] = ['team_sn', 'like', '%'.$get['team_sn'].'%'];
  29. }
  30. if (!empty($get['goods']) and $get['goods']) {
  31. $where[] = ['goods_snap->name', 'like', '%'.$get['goods'].'%'];
  32. }
  33. if (!empty($get['datetime']) and $get['datetime']) {
  34. list($start, $end) = explode(' - ', $get['datetime']);
  35. $where[] = ['kaituan_time', '>=', strtotime($start.' 00:00:00')];
  36. $where[] = ['kaituan_time', '<=', strtotime($end.' 23:59:59')];
  37. }
  38. $model = new TeamFound();
  39. $lists = $model->alias('TF')->field(['TF.*,U.nickname,U.sn,U.avatar'])
  40. ->join('user U', 'U.id = TF.user_id')
  41. ->order('id desc')
  42. ->where($where)
  43. ->paginate([
  44. 'page' => $get['page'] ?? 1,
  45. 'list_rows' => $get['limit'] ?? 20,
  46. 'var_page' => 'page'
  47. ])->toArray();
  48. foreach ($lists['data'] as &$item) {
  49. $item['peopleJoin'] = $item['people'] . '/' . $item['join'];
  50. $item['kaituan_time'] = date('Y-m-d H:i:s', $item['kaituan_time']);
  51. $item['invalid_time'] = date('Y-m-d H:i:s', $item['invalid_time']);
  52. $item['goods_snap'] = json_decode($item['goods_snap'], true);
  53. $item['status_text'] = TeamEnum::getStatusDesc($item['status']);
  54. $item['avatar'] = UrlServer::getFileUrl($item['avatar']);
  55. }
  56. return ['count'=>$lists['total'], 'lists'=>$lists['data']];
  57. } catch (Exception $e) {
  58. static::$error = $e->getMessage();
  59. return false;
  60. }
  61. }
  62. /**
  63. * @Notes: 数据统计
  64. * @Author: 张无忌
  65. * @return mixed
  66. */
  67. public static function statistics()
  68. {
  69. $model = new TeamFound();
  70. $detail['total'] = $model->count();
  71. $detail['stayStatus'] = $model->where(['status'=>0])->count();
  72. $detail['successStatus'] = $model->where(['status'=>1])->count();
  73. $detail['failStatus'] = $model->where(['status'=>2])->count();
  74. return $detail;
  75. }
  76. /**
  77. * @Notes: 拼团详细
  78. * @Author: 张无忌
  79. * @param $id
  80. * @return array
  81. */
  82. public static function detail($id)
  83. {
  84. $teamFound = (new TeamFound())->alias('TF')
  85. ->field(['TF.*,U.sn,U.nickname,U.mobile'])
  86. ->join('user U', 'U.id = TF.user_id')
  87. ->where('TF.id', '=', intval($id))
  88. ->findOrEmpty()->toArray();
  89. $teamFound['kaituan_time'] = date('Y-m-d H:i:s', $teamFound['kaituan_time']);
  90. $teamFound['invalid_time'] = date('Y-m-d H:i:s', $teamFound['invalid_time']);
  91. $teamFound['team_end_time'] = date('Y-m-d H:i:s', $teamFound['team_end_time']);
  92. $teamFound['status_text'] = TeamEnum::getStatusDesc($teamFound['status']);
  93. return ['teamFound'=>$teamFound];
  94. }
  95. /**
  96. * @Notes: 参团列表
  97. * @Author: 张无忌
  98. * @param $get
  99. * @return array|bool
  100. */
  101. public static function join($get)
  102. {
  103. try {
  104. $where[] = ['TJ.team_id', '=', $get['team_id']];
  105. $model = new TeamJoin();
  106. $lists = $model->alias('TJ')->field(['TJ.*,U.sn,U.nickname,U.avatar'])
  107. ->join('user U', 'U.id = TJ.user_id')
  108. ->where($where)
  109. ->paginate([
  110. 'page' => $get['page'] ?? 1,
  111. 'list_rows' => $get['limit'] ?? 20,
  112. 'var_page' => 'page'
  113. ])->toArray();
  114. $orderModel = new Order();
  115. foreach ($lists['data'] as &$item) {
  116. $item['identity'] = $item['identity'] == 1 ? '团长' : '团员';
  117. $item['order'] = $orderModel->field([
  118. 'id,order_sn,order_type,order_status,
  119. refund_status,pay_status,order_amount,create_time'
  120. ])
  121. ->with(['orderGoods'])
  122. ->findOrEmpty($item['order_id'])->toArray();
  123. $item['order']['order_status'] = OrderEnum::getOrderStatus($item['order']['order_status']);
  124. $item['order']['pay_status'] = OrderEnum::getPayStatus($item['order']['pay_status']);
  125. $item['order']['refund_status'] = OrderEnum::getRefundStatus($item['order']['refund_status']);
  126. $item['avatar'] = UrlServer::getFileUrl($item['avatar']);
  127. }
  128. return ['count'=>$lists['total'], 'lists'=>$lists['data']];
  129. } catch (Exception $e) {
  130. static::$error = $e->getMessage();
  131. return false;
  132. }
  133. }
  134. }