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

TeamEnd.php 6.0KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162
  1. <?php
  2. namespace app\common\command;
  3. use app\common\enum\OrderEnum;
  4. use app\common\enum\OrderLogEnum;
  5. use app\common\enum\TeamEnum;
  6. use app\common\logic\OrderRefundLogic;
  7. use app\common\model\order\Order;
  8. use app\common\model\team\TeamActivity;
  9. use app\common\model\team\TeamFound;
  10. use app\common\model\team\TeamJoin;
  11. use app\common\server\ConfigServer;
  12. use Exception;
  13. use think\console\Command;
  14. use think\console\Input;
  15. use think\console\Output;
  16. use think\facade\Db;
  17. use think\facade\Log;
  18. class TeamEnd extends Command
  19. {
  20. protected function configure()
  21. {
  22. $this->setName('team_end')
  23. ->setDescription('结束已超时的拼团');
  24. }
  25. protected function execute(Input $input, Output $output)
  26. {
  27. try {
  28. $time = time();
  29. $automatic = ConfigServer::get('team', 'automatic', 0);
  30. // 获取并关闭已结束的活动
  31. $team_ids = (new TeamActivity())->where([['activity_end_time', '<=', $time]])->column('id');
  32. (new TeamActivity())->whereIn('id', $team_ids)->update(['status'=>0, 'update_time'=>$time]);
  33. // 找出拼团中&&拼团有效期结束的拼团记录
  34. $map1 = array(
  35. ['invalid_time', '<=', $time],
  36. ['status', '=', 0]
  37. );
  38. $map2 = array(
  39. ['team_activity_id', 'in', $team_ids],
  40. ['status', '=', 0]
  41. );
  42. $teamFound1 = (new TeamFound())->whereOr([$map1, $map2])->select()->toArray();
  43. $teamFound2 = (new TeamFound())->alias('TF')
  44. ->where('TF.people','exp',' <= TF.join ')
  45. ->where('status', '=', 0)
  46. ->select()->toArray();
  47. $teamFound = $teamFound1;
  48. if (empty($teamFound1)) {
  49. $teamFound = array_merge($teamFound1, $teamFound2);
  50. } else {
  51. $found_ids = array_column($teamFound1, "id");
  52. if (!empty($teamFound2)) {
  53. foreach ($teamFound2 as $item) {
  54. if (!in_array($item['id'], $found_ids)) {
  55. $teamFound[] = $item;
  56. }
  57. }
  58. }
  59. }
  60. // 结束拼团时间到的团
  61. $teamJoinModel = new TeamJoin();
  62. foreach ($teamFound as $found) {
  63. $teamJoin = $teamJoinModel->alias('TJ')
  64. ->field(['TJ.*,O.order_sn,O.order_status,O.pay_status,O.refund_status,O.order_amount'])
  65. ->where(['team_id' => $found['id']])
  66. ->join('order O', 'O.id=TJ.order_id')
  67. ->select()->toArray();
  68. // 已支付的数量
  69. $payNums = array_column($teamJoin, 'pay_status');
  70. $payCount = 0;
  71. foreach ($payNums as $i) {
  72. if ($i == 1) {
  73. $payCount += 1;
  74. }
  75. }
  76. // 此团有未支付订单: 关闭拼团,关闭订单,给已支付的退款
  77. if (in_array(1, array_column($teamJoin, 'pay_status'))) {
  78. if ($automatic == 1 || ($found['people'] == $found['join'] && $found['join'] == $payCount)) {
  79. $this->teamSuccess($teamJoin, $found, $time);
  80. } else {
  81. $this->teamFail($teamJoin, $found, $time);
  82. }
  83. } else {
  84. $this->teamFail($teamJoin, $found, $time);
  85. // $this->teamSuccess($teamJoin, $found, $time);
  86. }
  87. }
  88. } catch (Exception $e) {
  89. Log::write('拼团关闭异常'.$e->getMessage());
  90. throw new \think\Exception($e->getMessage());
  91. }
  92. }
  93. /**
  94. * @Notes: 拼团失败
  95. * @Author: 张无忌
  96. * @param $teamJoin (参团列表数据)
  97. * @param $found (开团的数据)
  98. * @param $time (时间)
  99. * @throws \think\Exception
  100. */
  101. private function teamFail($teamJoin, $found, $time)
  102. {
  103. Db::startTrans();
  104. try {
  105. TeamFound::update(['status'=>TeamEnum::TEAM_STATUS_FAIL, 'team_end_time'=>$time], ['id'=>$found['id']]);
  106. foreach ($teamJoin as $item) {
  107. TeamJoin::update(['status' => TeamEnum::TEAM_STATUS_FAIL, 'update_time' => $time], ['id' => $item['id']]);
  108. if ($item['order_status'] == OrderEnum::ORDER_STATUS_DOWN) continue;
  109. if ($item['refund_status'] != OrderEnum::REFUND_STATUS_NO_REFUND) continue;
  110. $order = (new Order())->findOrEmpty($item['order_id'])->toArray();
  111. // 取消订单
  112. OrderRefundLogic::cancelOrder($order['id'], OrderLogEnum::TYPE_SYSTEM);
  113. if ($order['pay_status'] == OrderEnum::PAY_STATUS_PAID) {
  114. // 更新订单状态
  115. OrderRefundLogic::cancelOrderRefundUpdate($order);
  116. // 订单退款
  117. OrderRefundLogic::refund($order, $order['order_amount'], $order['order_amount']);
  118. }
  119. }
  120. Db::commit();
  121. } catch (Exception $e) {
  122. Db::rollback();
  123. throw new \think\Exception($e->getMessage());
  124. }
  125. }
  126. /**
  127. * @Notes: 拼团成功
  128. * @Author: 张无忌
  129. * @param $teamJoin (该团的,参团数据)
  130. * @param $found (该团的, 开团时间)
  131. * @param $time (时间)
  132. * @throws \think\Exception
  133. */
  134. private function teamSuccess($teamJoin, $found, $time)
  135. {
  136. Db::startTrans();
  137. try {
  138. TeamFound::update(['status'=>TeamEnum::TEAM_STATUS_SUCCESS, 'team_end_time'=>$time], ['id'=>$found['id']]);
  139. foreach ($teamJoin as $item) {
  140. TeamJoin::update(['status'=>TeamEnum::TEAM_STATUS_SUCCESS, 'update_time'=>$time], ['id'=>$item['id']]);
  141. }
  142. Db::commit();
  143. } catch (Exception $e) {
  144. Db::rollback();
  145. throw new \think\Exception($e->getMessage());
  146. }
  147. }
  148. }