From 41d9769d042a389acbbcc8a950e6b985b0bfce46 Mon Sep 17 00:00:00 2001 From: omair saleh Date: Wed, 29 Dec 2021 03:30:42 +0800 Subject: [PATCH] fix package component before loading to container --- routes/web.php | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/routes/web.php b/routes/web.php index 5bfa2975..099c4368 100644 --- a/routes/web.php +++ b/routes/web.php @@ -93,12 +93,12 @@ Route::get('/orders/refresh', function(){ FetchOrdersFromYDPortalJob::dispatch(); -// FetchWarehouseReceiveListFromVTPortalJob::withChain([ -// new FetchLoadedContainersFromVTPortalJob, -// new FetchPackingListFromVTPortalJob, -// new FetchContainersStatusUpdateFromVTPortalJob, -// new FetchDeliveryListFromVTPortalJob -// ])->dispatch(); + FetchWarehouseReceiveListFromVTPortalJob::withChain([ + new FetchLoadedContainersFromVTPortalJob, + new FetchPackingListFromVTPortalJob, + new FetchContainersStatusUpdateFromVTPortalJob, + new FetchDeliveryListFromVTPortalJob + ])->dispatch(); return redirect('orders');