update packinglists from vt portal jobs and schedule

This commit is contained in:
omair saleh
2021-08-23 10:45:06 +08:00
parent 572cb4ac1d
commit c79443eb62
+5 -4
View File
@@ -2,6 +2,7 @@
namespace Database\Seeders;
use App\Classes\Jobs\FetchContainersStatusUpdateFromVTPortalJob;
use App\Classes\Jobs\FetchDeliveryListFromVTPortalJob;
use App\Classes\Jobs\FetchLoadedContainersFromVTPortalJob;
use App\Classes\Jobs\FetchPackingListFromVTPortalJob;
@@ -22,10 +23,10 @@ class OrdersTableSeeder extends Seeder
{
FetchWarehouseReceiveListFromVTPortalJob::dispatch()->chain([
FetchLoadedContainersFromVTPortalJob::class,
FetchPackingListFromVTPortalJob::class,
FetchContainersStatusUpdateFromVTPortalProcessor::class,
FetchDeliveryListFromVTPortalJob::class,
new FetchLoadedContainersFromVTPortalJob(),
new FetchPackingListFromVTPortalJob(),
new FetchContainersStatusUpdateFromVTPortalJob(),
new FetchDeliveryListFromVTPortalJob(),
]);