SendSvipCouponJob.php 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  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\coupon\StoreCouponRepository;
  13. use app\common\repositories\store\coupon\StoreCouponUserRepository;
  14. use app\common\repositories\system\CacheRepository;
  15. use app\common\repositories\user\UserRepository;
  16. use crmeb\interfaces\JobInterface;
  17. use think\facade\Cache;
  18. use think\facade\Log;
  19. use think\facade\Queue;
  20. class SendSvipCouponJob implements JobInterface
  21. {
  22. public function fire($job, $type)
  23. {
  24. $moth = date('Y-m-d',time());
  25. $meka = app()->make(StoreCouponRepository::class);
  26. try {
  27. $couponIds = $meka->sendSvipCoupon();
  28. } catch (\Exception $e) {
  29. Log::INFO('发送付费会员优惠券失败:'.$moth);
  30. };
  31. $job->delete();
  32. }
  33. public function failed($data)
  34. {
  35. // TODO: Implement failed() method.
  36. }
  37. }