31 lines
690 B
PHP
31 lines
690 B
PHP
<?php
|
|
|
|
|
|
|
|
namespace crmeb\jobs;
|
|
|
|
use app\common\repositories\store\order\StoreRefundOrderRepository;
|
|
use crmeb\interfaces\JobInterface;
|
|
use think\facade\Log;
|
|
|
|
class CancelGroupBuyingJob implements JobInterface
|
|
{
|
|
|
|
public function fire($job, $data)
|
|
{
|
|
try{
|
|
//TODO 关闭子团,自动退款,关闭订单
|
|
$make = app()->make(StoreRefundOrderRepository::class);
|
|
$make->autoRefundOrder($data['order_id'], 1, $data['message']);
|
|
}catch (\Exception $exception){
|
|
Log::info(var_export($exception, 1));
|
|
}
|
|
$job->delete();
|
|
}
|
|
|
|
public function failed($data)
|
|
{
|
|
// TODO: Implement failed() method.
|
|
}
|
|
}
|