CancelGroupBuyingJob.php 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738
  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\order\StoreRefundOrderRepository;
  13. use crmeb\interfaces\JobInterface;
  14. use think\facade\Log;
  15. class CancelGroupBuyingJob implements JobInterface
  16. {
  17. public function fire($job, $data)
  18. {
  19. try{
  20. //TODO 关闭子团,自动退款,关闭订单
  21. $make = app()->make(StoreRefundOrderRepository::class);
  22. $make->autoRefundOrder($data['order_id'], 1, $data['message']);
  23. $job->delete();
  24. }catch (\Exception $exception){
  25. Log::info(var_export($exception, 1));
  26. }
  27. }
  28. public function failed($data)
  29. {
  30. // TODO: Implement failed() method.
  31. }
  32. }