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

BargainClose.php 2.6KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. <?php
  2. namespace app\common\command;
  3. use app\common\model\bargain\BargainLaunch;
  4. use app\common\model\bargain\Bargain;
  5. use app\common\enum\BargainEnum;
  6. use app\common\server\ConfigServer;
  7. use think\console\Command;
  8. use think\console\Input;
  9. use think\console\Output;
  10. use think\facade\Log;
  11. class BargainClose extends Command
  12. {
  13. protected function configure()
  14. {
  15. $this->setName('bargain_close')
  16. ->setDescription('关闭砍价记录');
  17. }
  18. protected function execute(Input $input, Output $output)
  19. {
  20. try {
  21. $now = time();
  22. $bargainModel = new Bargain();
  23. $bargainLaunchModel = new BargainLaunch();
  24. $succeed_ids = [];
  25. $defeat_ids = [];
  26. //砍价成功后的下单时间
  27. $payment_limit_time = ConfigServer::get('bargain', 'payment_limit_time', 0) * 60;
  28. if($payment_limit_time > 0){
  29. $payment_limit_time = $now + $payment_limit_time;
  30. }
  31. //找出所有超时未关掉的订单
  32. $bargainLaunchModel->where([['status','=',BargainLaunch::conductStatus],['launch_end_time','<=',$now]])
  33. ->chunk(100, function($launchs) use(&$succeed_ids,&$defeat_ids) {
  34. foreach ($launchs as $launch){
  35. $launch = $launch->toarray();
  36. //任意金额购买时,更新砍价成功
  37. if(2 == $launch['bargain_snap']['payment_where']){
  38. $succeed_ids[] = $launch['id'];
  39. }else{
  40. $defeat_ids[] = $launch['id'];
  41. }
  42. }
  43. });
  44. //标记成功
  45. if($succeed_ids){
  46. $bargainLaunchModel->where(['id'=>$succeed_ids])->update(['status'=>BargainLaunch::successStatus,'payment_limit_time'=>$payment_limit_time,'bargain_end_time'=>$now]);
  47. }
  48. //标记失败
  49. if($defeat_ids){
  50. $bargainLaunchModel->where(['id'=>$defeat_ids])->update(['status'=>BargainLaunch::failStatus,'bargain_end_time'=>$now]);
  51. }
  52. // 查询出要关闭的砍价活动
  53. $bargain_ids = $bargainModel->where([
  54. ['activity_end_time', '<', $now],
  55. ['del', '=', 0],
  56. ['status', '=', 1]
  57. ])->column('id');
  58. // 结束砍价活动(结束时间 < 当前时间)
  59. $bargainModel->whereIn('id', $bargain_ids)
  60. ->update(['status' => 0]);
  61. } catch (\Exception $e) {
  62. Log::write('结束砍价活动失败:'.$e->getMessage());
  63. }
  64. }
  65. }