2019-10-29 15:33:36 +08:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Console\Commands;
|
|
|
|
|
2021-09-04 15:31:25 +08:00
|
|
|
use App\Jobs\OrderHandleJob;
|
2020-03-17 20:00:46 +08:00
|
|
|
use App\Services\OrderService;
|
2019-10-29 15:33:36 +08:00
|
|
|
use Illuminate\Console\Command;
|
|
|
|
use App\Models\Order;
|
|
|
|
use App\Models\User;
|
|
|
|
use App\Models\Plan;
|
2020-04-09 13:35:27 +08:00
|
|
|
use Illuminate\Support\Facades\DB;
|
2019-10-29 15:33:36 +08:00
|
|
|
|
|
|
|
class CheckOrder extends Command
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* The name and signature of the console command.
|
|
|
|
*
|
|
|
|
* @var string
|
|
|
|
*/
|
|
|
|
protected $signature = 'check:order';
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The console command description.
|
|
|
|
*
|
|
|
|
* @var string
|
|
|
|
*/
|
|
|
|
protected $description = '订单检查任务';
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Create a new command instance.
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public function __construct()
|
|
|
|
{
|
|
|
|
parent::__construct();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Execute the console command.
|
|
|
|
*
|
|
|
|
* @return mixed
|
|
|
|
*/
|
|
|
|
public function handle()
|
|
|
|
{
|
2021-07-01 11:41:34 +08:00
|
|
|
ini_set('memory_limit', -1);
|
2021-05-24 20:10:54 +08:00
|
|
|
$orders = Order::whereIn('status', [0, 1])
|
2021-10-14 15:45:42 +08:00
|
|
|
->orderBy('created_at', 'ASC')
|
2021-05-24 20:10:54 +08:00
|
|
|
->get();
|
2021-09-04 15:31:25 +08:00
|
|
|
foreach ($orders as $order) {
|
|
|
|
OrderHandleJob::dispatch($order->trade_no);
|
2019-10-29 15:33:36 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|