截流自动化的商城平台
Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297
  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\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\TeamActivity;
  10. use app\common\model\team\TeamFound;
  11. use app\common\model\team\TeamJoin;
  12. use app\common\server\UrlServer;
  13. use Exception;
  14. use think\facade\Db;
  15. class ActivityLogic extends Logic
  16. {
  17. /**
  18. * @Notes: 获取拼团活动
  19. * @Author: 张无忌
  20. * @param $get
  21. * @return array|bool
  22. */
  23. public static function lists($get)
  24. {
  25. try {
  26. $where = [];
  27. $where[] = ['T.del', '=', 0];
  28. if (!empty($get['datetime']) and $get['datetime']) {
  29. list($start, $end) = explode(' - ', $get['datetime']);
  30. $where[] = ['T.create_time', '>=', strtotime($start.' 00:00:00')];
  31. $where[] = ['T.create_time', '<=', strtotime($end.' 23:59:59')];
  32. }
  33. if (!empty($get['shop']) and $get['shop']) {
  34. $where[] = ['S.name|S.id', 'like', '%'.$get['shop'].'%'];
  35. }
  36. if (!empty($get['name']) and $get['name']) {
  37. $where[] = ['G.name', 'like', '%'.$get['name'].'%'];
  38. }
  39. if (!empty($get['status']) and $get['status']) {
  40. $where[] = ['T.status', '=', $get['status']];
  41. }
  42. if (!empty($get['type']) and $get['type']) {
  43. $where[] = ['T.audit', '=', $get['type']-1];
  44. }
  45. $model = new TeamActivity();
  46. $lists = $model->alias('T')->field(['T.*', 'S.name as shop_name,S.type as shop_type,S.logo'])
  47. ->where($where)
  48. ->with(['goods'])
  49. ->join('goods G', 'G.id = T.goods_id')
  50. ->join('shop S', 'S.id = T.shop_id')
  51. ->paginate([
  52. 'page' => $get['page'] ?? 1,
  53. 'list_rows' => $get['limit'] ?? 20,
  54. 'var_page' => 'page'
  55. ])->toArray();
  56. $teamFoundModel = new TeamFound();
  57. $teamJoinModel = new TeamJoin();
  58. foreach ($lists['data'] as &$item) {
  59. $item['activity_start_time'] = date('Y-m-d H:i', $item['activity_start_time']);
  60. $item['activity_end_time'] = date('Y-m-d H:i', $item['activity_end_time']);
  61. $item['status_text'] = TeamEnum::getTeamStatusDesc($item['status']);
  62. $item['audit_text'] = TeamEnum::getTeamAuditDesc($item['audit']);
  63. $item['logo'] = UrlServer::getFileUrl($item['logo']);
  64. $item['shop_type'] = $item['shop_type'] == 1 ? '商家自营' : '入驻商家';
  65. $item['team_count'] = $teamFoundModel->where(['team_activity_id'=>$item['id']])->count();
  66. $item['success_found'] = $teamFoundModel->where(['status'=>1, 'team_activity_id'=>$item['id']])->count();
  67. $item['join_found'] = $teamJoinModel->where(['team_activity_id'=>$item['id']])->count();
  68. }
  69. return ['count'=>$lists['total'], 'lists'=>$lists['data']];
  70. } catch (Exception $e) {
  71. static::$error = $e->getMessage();
  72. return false;
  73. }
  74. }
  75. /**
  76. * @notes 拼团商品的开团记录
  77. * @param $get
  78. * @return array|bool
  79. * @author 张无忌
  80. * @date 2021/7/19 11:02
  81. */
  82. public static function record($get)
  83. {
  84. try {
  85. $where = [];
  86. $where[] = ['TF.shop_id', '=', (int)$get['shop_id']];
  87. $where[] = ['TF.team_activity_id', '=', (int)$get['team_activity_id']];
  88. if (isset($get['type']) and is_numeric($get['type']) and $get['type'] != 100) {
  89. $where[] = ['status', '=', (int)$get['type']];
  90. }
  91. if (!empty($get['team_sn']) and $get['team_sn']) {
  92. $where[] = ['team_sn', 'like', '%'.$get['team_sn'].'%'];
  93. }
  94. if (!empty($get['goods']) and $get['goods']) {
  95. $where[] = ['goods_snap->name', 'like', '%'.$get['goods'].'%'];
  96. }
  97. if (!empty($get['datetime']) and $get['datetime']) {
  98. list($start, $end) = explode(' - ', $get['datetime']);
  99. $where[] = ['kaituan_time', '>=', strtotime($start.' 00:00:00')];
  100. $where[] = ['kaituan_time', '<=', strtotime($end.' 23:59:59')];
  101. }
  102. $model = new TeamFound();
  103. $lists = $model->alias('TF')->field(['TF.*,U.nickname,U.sn,U.avatar'])
  104. ->join('user U', 'U.id = TF.user_id')
  105. ->order('id desc')
  106. ->where($where)
  107. ->paginate([
  108. 'page' => $get['page'] ?? 1,
  109. 'list_rows' => $get['limit'] ?? 20,
  110. 'var_page' => 'page'
  111. ])->toArray();
  112. foreach ($lists['data'] as &$item) {
  113. $item['peopleJoin'] = $item['people'] . '/' . $item['join'];
  114. $item['kaituan_time'] = date('Y-m-d H:i:s', $item['kaituan_time']);
  115. $item['invalid_time'] = date('Y-m-d H:i:s', $item['invalid_time']);
  116. $item['goods_snap'] = json_decode($item['goods_snap'], true);
  117. $item['status_text'] = TeamEnum::getStatusDesc($item['status']);
  118. }
  119. return ['count'=>$lists['total'], 'lists'=>$lists['data']];
  120. } catch (Exception $e) {
  121. static::$error = $e->getMessage();
  122. return false;
  123. }
  124. }
  125. /**
  126. * @notes 开团活动的开团记录统计
  127. * @param $get
  128. * @return mixed
  129. * @author 张无忌
  130. * @date 2021/7/19 11:05
  131. */
  132. public static function recordStatistics($get)
  133. {
  134. $where[] = ['shop_id', '=', (int)$get['shop_id']];
  135. $where[] = ['team_activity_id', '=', (int)$get['id']];
  136. $model = new TeamFound();
  137. $detail['total'] = $model->where($where)->count();
  138. $detail['stayStatus'] = $model->where($where)->where(['status'=>0])->count();
  139. $detail['successStatus'] = $model->where($where)->where(['status'=>1])->count();
  140. $detail['failStatus'] = $model->where($where)->where(['status'=>2])->count();
  141. return $detail;
  142. }
  143. /**
  144. * @Notes: 数据统计
  145. * @Author: 张无忌
  146. * @return mixed
  147. */
  148. public static function statistics()
  149. {
  150. $where[] = ['del', '=', 0];
  151. $model = new TeamActivity();
  152. $detail['total'] = $model->where($where)->count();
  153. $detail['stayAudit'] = $model->where($where)->where(['audit'=>0])->count();
  154. $detail['adoptAudit'] = $model->where($where)->where(['audit'=>1])->count();
  155. $detail['refuseAudit'] = $model->where($where)->where(['audit'=>2])->count();
  156. return $detail;
  157. }
  158. /**
  159. * @Notes: 审核拼团活动
  160. * @Author: 张无忌
  161. * @param $post
  162. * @return bool
  163. */
  164. public static function audit($post)
  165. {
  166. try {
  167. if (!$post['audit'] and empty($post['explain'])) {
  168. throw new \think\Exception('拒绝时请填写拒绝理由');
  169. }
  170. TeamActivity::update([
  171. 'audit' => $post['audit'],
  172. 'update_time' => time()
  173. ], ['id'=>$post['id']]);
  174. return true;
  175. } catch (\Exception $e) {
  176. static::$error = $e->getMessage();
  177. return false;
  178. }
  179. }
  180. /**
  181. * @Notes: 违规重审核
  182. * @Author: 张无忌
  183. * @param $id
  184. * @return bool
  185. */
  186. public static function violation($id)
  187. {
  188. try {
  189. TeamActivity::update([
  190. 'audit' => 2,
  191. 'status' => 0,
  192. 'update_time' => time()
  193. ], ['id' => $id]);
  194. $team_ids = (new TeamFound())->where(['team_activity_id' => $id, 'status' => 0])->column('id');
  195. $teamJoin = (new TeamJoin())->alias('TJ')
  196. ->field(['TJ.*,O.order_sn,O.order_status,O.pay_status,O.refund_status,O.order_amount'])
  197. ->where('team_id', 'in', $team_ids)
  198. ->join('order O', 'O.id=TJ.order_id')
  199. ->select()->toArray();
  200. self::teamFail($teamJoin, $team_ids, time());
  201. return true;
  202. } catch (\Exception $e) {
  203. static::$error = $e->getMessage();
  204. return false;
  205. }
  206. }
  207. /**
  208. * @Notes: 拼团活动详细
  209. * @Author: 张无忌
  210. * @param $id
  211. * @return array
  212. */
  213. public static function detail($id)
  214. {
  215. $model = new TeamActivity();
  216. $detail = $model->field(true)
  217. ->with(['goods', 'teamGoods'])
  218. ->findOrEmpty($id)
  219. ->toArray();
  220. $detail['activity_start_time'] = date('Y-m-d H:i:s', $detail['activity_start_time']);
  221. $detail['activity_end_time'] = date('Y-m-d H:i:s', $detail['activity_end_time']);
  222. return $detail;
  223. }
  224. /**
  225. * @Notes: 拼团失败
  226. * @Author: 张无忌
  227. * @param $teamJoin (参团列表数据)
  228. * @param $found_ids
  229. * @param $time (时间)
  230. * @throws \think\Exception
  231. */
  232. private static function teamFail($teamJoin, $found_ids, $time)
  233. {
  234. Db::startTrans();
  235. try {
  236. (new TeamFound())->whereIn('id', $found_ids)
  237. ->update(['status'=>TeamEnum::TEAM_STATUS_FAIL, 'team_end_time'=>$time]);
  238. foreach ($teamJoin as $item) {
  239. TeamJoin::update(['status' => TeamEnum::TEAM_STATUS_FAIL, 'update_time' => $time], ['id' => $item['id']]);
  240. if ($item['order_status'] == OrderEnum::ORDER_STATUS_DOWN) continue;
  241. if ($item['refund_status'] != OrderEnum::REFUND_STATUS_NO_REFUND) continue;
  242. $order = (new Order())->findOrEmpty($item['order_id'])->toArray();
  243. // 取消订单
  244. OrderRefundLogic::cancelOrder($order['id'], OrderLogEnum::TYPE_SYSTEM);
  245. if ($order['pay_status'] == OrderEnum::PAY_STATUS_PAID) {
  246. // 更新订单状态
  247. OrderRefundLogic::cancelOrderRefundUpdate($order);
  248. // 订单退款
  249. OrderRefundLogic::refund($order, $order['order_amount'], $order['order_amount']);
  250. }
  251. }
  252. Db::commit();
  253. } catch (Exception $e) {
  254. Db::rollback();
  255. throw new \think\Exception($e->getMessage());
  256. }
  257. }
  258. }