|
@@ -3,6 +3,7 @@
|
|
|
namespace App\Console;
|
|
namespace App\Console;
|
|
|
|
|
|
|
|
use App\Console\Commands\SyncBatchTask;
|
|
use App\Console\Commands\SyncBatchTask;
|
|
|
|
|
+use App\Console\Commands\SyncWMSOrderTask;
|
|
|
use Illuminate\Console\Scheduling\Schedule;
|
|
use Illuminate\Console\Scheduling\Schedule;
|
|
|
use Illuminate\Foundation\Console\Kernel as ConsoleKernel;
|
|
use Illuminate\Foundation\Console\Kernel as ConsoleKernel;
|
|
|
|
|
|
|
@@ -23,6 +24,7 @@ class Kernel extends ConsoleKernel
|
|
|
\App\Console\Commands\SyncUserVisitMenuLogsCacheTask::class,
|
|
\App\Console\Commands\SyncUserVisitMenuLogsCacheTask::class,
|
|
|
\App\Console\Commands\TestTemp::class,
|
|
\App\Console\Commands\TestTemp::class,
|
|
|
SyncBatchTask::class,
|
|
SyncBatchTask::class,
|
|
|
|
|
+ SyncWMSOrderTask::class,
|
|
|
];
|
|
];
|
|
|
|
|
|
|
|
/**
|
|
/**
|
|
@@ -42,6 +44,7 @@ class Kernel extends ConsoleKernel
|
|
|
$schedule->command('createOwnerBillReport')->monthlyOn(1);
|
|
$schedule->command('createOwnerBillReport')->monthlyOn(1);
|
|
|
$schedule->command('createOwnerAreaReport')->monthlyOn(25);
|
|
$schedule->command('createOwnerAreaReport')->monthlyOn(25);
|
|
|
$schedule->command('sync:batch')->everyMinute();
|
|
$schedule->command('sync:batch')->everyMinute();
|
|
|
|
|
+// $schedule->command('sync:order')->everyMinute();
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
/**
|