ChangeMerchantStatusJob.php 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | CRMEB [ CRMEB赋能开发者,助力企业发展 ]
  4. // +----------------------------------------------------------------------
  5. // | Copyright (c) 2016~2020 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\product\ProductRepository;
  13. use app\common\repositories\system\merchant\MerchantRepository;
  14. use crmeb\interfaces\JobInterface;
  15. use think\facade\Log;
  16. use think\queue\Job;
  17. class ChangeMerchantStatusJob implements JobInterface
  18. {
  19. public function fire($job, $merId)
  20. {
  21. $merchant = app()->make(MerchantRepository::class)->get($merId);
  22. if ($merchant) {
  23. $where = [
  24. 'mer_status' => ($merchant['is_del'] || !$merchant['mer_state'] || !$merchant['status']) ? 0 : 1
  25. ];
  26. app()->make(ProductRepository::class)->changeMerchantProduct($merId, $where);
  27. }
  28. $job->delete();
  29. }
  30. public function failed($data)
  31. {
  32. // TODO: Implement failed() method.
  33. }
  34. }