截流自动化的商城平台
Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

FoundLogic.php 7.8KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215
  1. <?php
  2. namespace app\shop\logic\team;
  3. use app\common\basics\Logic;
  4. use app\common\enum\OrderEnum;
  5. use app\common\enum\OrderLogEnum;
  6. use app\common\enum\TeamEnum;
  7. use app\common\logic\OrderRefundLogic;
  8. use app\common\model\order\Order;
  9. use app\common\model\team\TeamFound;
  10. use app\common\model\team\TeamJoin;
  11. use app\common\server\UrlServer;
  12. use Exception;
  13. use think\facade\Db;
  14. class FoundLogic extends Logic
  15. {
  16. /**
  17. * @Notes: 开团列表
  18. * @Author: 张无忌
  19. * @param $get
  20. * @param $shop_id
  21. * @return array|bool
  22. */
  23. public static function lists($get, $shop_id)
  24. {
  25. try {
  26. $where[] = ['shop_id', '=', $shop_id];
  27. if (isset($get['type']) and is_numeric($get['type']) and $get['type'] != 100) {
  28. $where[] = ['status', '=', (int)$get['type']];
  29. }
  30. if (!empty($get['team_sn']) and $get['team_sn']) {
  31. $where[] = ['team_sn', 'like', '%'.$get['team_sn'].'%'];
  32. }
  33. if (!empty($get['goods']) and $get['goods']) {
  34. $where[] = ['goods_snap->name', 'like', '%'.$get['goods'].'%'];
  35. }
  36. if (!empty($get['kaituan_time']) and $get['kaituan_time']) {
  37. list($start, $end) = explode(' - ', $get['kaituan_time']);
  38. $where[] = ['kaituan_time', '>=', strtotime($start.' 00:00:00')];
  39. $where[] = ['kaituan_time', '<=', strtotime($end.' 23:59:59')];
  40. }
  41. if (!empty($get['team_activity_id']) and $get['team_activity_id']) {
  42. $where[] = ['TF.team_activity_id', '=', $get['team_activity_id']];
  43. }
  44. if (!empty($get['nickname']) and $get['nickname']) {
  45. $where[] = ['U.nickname', 'like', '%'.$get['nickname'].'%'];
  46. }
  47. $model = new TeamFound();
  48. $lists = $model->alias('TF')->field(['TF.*,U.nickname'])
  49. ->join('user U', 'U.id = TF.user_id')
  50. ->order('id desc')
  51. ->where($where)
  52. ->paginate([
  53. 'page' => $get['page'] ?? 1,
  54. 'list_rows' => $get['limit'] ?? 20,
  55. 'var_page' => 'page'
  56. ])->toArray();
  57. foreach ($lists['data'] as &$item) {
  58. $item['peopleJoin'] = $item['join'] .' / '. $item['people'];
  59. $item['kaituan_time'] = date('Y-m-d H:i:s', $item['kaituan_time']);
  60. $item['invalid_time'] = date('Y-m-d H:i:s', $item['invalid_time']);
  61. $item['goods_snap'] = json_decode($item['goods_snap'], true);
  62. $item['status_text'] = TeamEnum::getStatusDesc($item['status']);
  63. }
  64. return ['count'=>$lists['total'], 'lists'=>$lists['data']];
  65. } catch (Exception $e) {
  66. static::$error = $e->getMessage();
  67. return false;
  68. }
  69. }
  70. /**
  71. * @Notes: 数据统计
  72. * @Author: 张无忌
  73. * @param $shop_id
  74. * @param null $team_activity_id
  75. * @return mixed
  76. */
  77. public static function statistics($shop_id, $team_activity_id=null)
  78. {
  79. $where[] = ['shop_id', '=', $shop_id];
  80. if($team_activity_id) {
  81. $where[] = ['team_activity_id', '=', $team_activity_id];
  82. }
  83. $model = new TeamFound();
  84. $detail['total'] = $model->where($where)->count();
  85. $detail['stayStatus'] = $model->where($where)->where(['status'=>0])->count();
  86. $detail['successStatus'] = $model->where($where)->where(['status'=>1])->count();
  87. $detail['failStatus'] = $model->where($where)->where(['status'=>2])->count();
  88. return $detail;
  89. }
  90. /**
  91. * @Notes: 拼团详细
  92. * @Author: 张无忌
  93. * @param $id
  94. * @return array
  95. */
  96. public static function detail($id)
  97. {
  98. $teamFound = (new TeamFound())->alias('TF')
  99. ->field(['TF.*,U.sn,U.nickname,U.mobile'])
  100. ->join('user U', 'U.id = TF.user_id')
  101. ->findOrEmpty(intval($id))->toArray();
  102. $teamFound['kaituan_time'] = date('Y-m-d H:i:s', $teamFound['kaituan_time']);
  103. $teamFound['invalid_time'] = date('Y-m-d H:i:s', $teamFound['invalid_time']);
  104. $teamFound['team_end_time'] = date('Y-m-d H:i:s', $teamFound['team_end_time']);
  105. $teamFound['status_text'] = TeamEnum::getStatusDesc($teamFound['status']);
  106. return ['teamFound'=>$teamFound];
  107. }
  108. /**
  109. * @Notes: 参团列表
  110. * @Author: 张无忌
  111. * @param $get
  112. * @return array|bool
  113. */
  114. public static function join($get)
  115. {
  116. try {
  117. $model = new TeamJoin();
  118. $lists = $model->alias('TJ')->field(['TJ.*,U.sn,U.nickname,U.avatar'])
  119. ->join('user U', 'U.id = TJ.user_id')
  120. ->where('TJ.team_id', '=', $get['found_id'])
  121. ->paginate([
  122. 'page' => $get['page'] ?? 1,
  123. 'list_rows' => $get['limit'] ?? 20,
  124. 'var_page' => 'page'
  125. ])->toArray();
  126. $orderModel = new Order();
  127. foreach ($lists['data'] as &$item) {
  128. $item['identity'] = $item['identity'] == 1 ? '团长' : '团员';
  129. $item['order'] = $orderModel->field([
  130. 'id,order_sn,order_type,order_status,
  131. refund_status,pay_status,order_amount,create_time'
  132. ])
  133. ->with(['orderGoods'])
  134. ->findOrEmpty($item['order_id'])->toArray();
  135. $item['order']['order_status'] = OrderEnum::getOrderStatus($item['order']['order_status']);
  136. $item['order']['pay_status'] = OrderEnum::getPayStatus($item['order']['pay_status']);
  137. $item['order']['refund_status'] = OrderEnum::getRefundStatus($item['order']['refund_status']);
  138. $item['avatar'] = UrlServer::getFileUrl($item['avatar']);
  139. }
  140. return ['count'=>$lists['total'], 'lists'=>$lists['data']];
  141. } catch (Exception $e) {
  142. static::$error = $e->getMessage();
  143. return false;
  144. }
  145. }
  146. /**
  147. * @Notes: 结束拼团
  148. * @Author: 张无忌
  149. * @param $team_id
  150. * @return bool
  151. */
  152. public static function end($team_id)
  153. {
  154. Db::startTrans();
  155. try {
  156. $time = time();
  157. TeamFound::update([
  158. 'status'=>TeamEnum::TEAM_STATUS_FAIL,
  159. 'team_end_time'=>$time
  160. ], ['id'=>$team_id]);
  161. $teamJoin = (new TeamJoin())->alias('TJ')
  162. ->field(['TJ.*,O.order_sn,O.order_status,O.pay_status,O.refund_status,O.order_amount'])
  163. ->where(['team_id' => $team_id])
  164. ->join('order O', 'O.id=TJ.order_id')
  165. ->select()->toArray();
  166. foreach ($teamJoin as $item) {
  167. TeamJoin::update(['status' => TeamEnum::TEAM_STATUS_FAIL, 'update_time' => $time], ['id' => $item['id']]);
  168. if ($item['order_status'] == OrderEnum::ORDER_STATUS_DOWN) continue;
  169. if ($item['refund_status'] != OrderEnum::REFUND_STATUS_NO_REFUND) continue;
  170. $order = (new Order())->findOrEmpty($item['order_id'])->toArray();
  171. // 取消订单
  172. OrderRefundLogic::cancelOrder($order['id'], OrderLogEnum::TYPE_SYSTEM);
  173. if ($order['pay_status'] == OrderEnum::PAY_STATUS_PAID) {
  174. // 更新订单状态
  175. OrderRefundLogic::cancelOrderRefundUpdate($order);
  176. // 订单退款
  177. OrderRefundLogic::refund($order, $order['order_amount'], $order['order_amount']);
  178. }
  179. }
  180. Db::commit();
  181. return true;
  182. } catch (Exception $e) {
  183. Db::rollback();
  184. static::$error = $e->getMessage();
  185. return false;
  186. }
  187. }
  188. }