AutoChangeStatusActivityJob.php 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | CRMEB [ CRMEB赋能开发者,助力企业发展 ]
  4. // +----------------------------------------------------------------------
  5. // | Copyright (c) 2016~2024 https://www.crmeb.com All rights reserved.
  6. // +----------------------------------------------------------------------
  7. // | Licensed CRMEB并不是自由软件,未经许可不能去掉CRMEB相关版权
  8. // +----------------------------------------------------------------------
  9. // | Author: CRMEB Team <admin@crmeb.com>
  10. // +----------------------------------------------------------------------
  11. namespace crmeb\jobs;
  12. use app\common\repositories\store\StoreActivityRepository;
  13. use crmeb\interfaces\JobInterface;
  14. use think\facade\Log;
  15. use think\queue\Job;
  16. use app\common\repositories\store\product\ProductRepository;
  17. class AutoChangeStatusActivityJob implements JobInterface
  18. {
  19. public function fire($job, $data)
  20. {
  21. $make = app()->make(StoreActivityRepository::class);
  22. $make->getsearch(['is_status' => 1])->chunk(100,function($list){
  23. foreach ($list as $item) {
  24. try{
  25. if (strtotime($item['end_time']) <= time()) {
  26. $item->is_show = 0;
  27. $item->status = -1;
  28. $item->save();
  29. } else if (!$item['status'] && strtotime($item['start_time']) <= time()) {
  30. $item->is_show = 1;
  31. $item->status = 1;
  32. $item->save();
  33. }
  34. }catch (\Exception $exception){
  35. Log::info('自动同步活动状态失败:'.$exception->getMessage());
  36. }
  37. }
  38. });
  39. $job->delete();
  40. }
  41. public function failed($data)
  42. {
  43. // TODO: Implement failed() method.
  44. }
  45. }