ChangeSpuStatusJob.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\product\SpuRepository;
  13. use crmeb\interfaces\JobInterface;
  14. use think\facade\Log;
  15. class ChangeSpuStatusJob implements JobInterface
  16. {
  17. public function fire($job, $data)
  18. {
  19. try{
  20. $make = app()->make(SpuRepository::class);
  21. if (is_array($data['id'])){
  22. foreach ($data['id'] as $i) {
  23. $make->changeStatus($i, $data['product_type'], $data['operate_data'] ?? []);
  24. }
  25. } else if(is_numeric($data['id'])){
  26. $make->changeStatus($data['id'], $data['product_type'], $data['operate_data'] ?? []);
  27. }
  28. }catch (\Exception $exception){
  29. Log::info($exception->getMessage());
  30. }
  31. $job->delete();
  32. }
  33. public function failed($data)
  34. {
  35. // TODO: Implement failed() method.
  36. }
  37. }