mirror of
https://gitlab.com/omair-personal/izyim.git
synced 2026-08-19 04:14:05 +00:00
Merge branch 'IZYIM-38' into 'master'
Izyim 38 order status See merge request CIEFWorldwideSdnBhd/izyim!18
This commit is contained in:
@@ -28,12 +28,11 @@ class OrdersStatusReportLogic
|
||||
|
||||
$completedArray = ["COMPLETED" => $completed->count()];
|
||||
$combine = $statusMap + $completedArray;
|
||||
|
||||
return [
|
||||
$combine['PS_PROCESSING'],
|
||||
$combine['MS_WAREHOUSE_RECEIVING'],
|
||||
$combine['PS_SHIPPING'],
|
||||
$completedArray['COMPLETED']
|
||||
(isset($combine['PS_PROCESSING'])) ? $combine['PS_PROCESSING'] : 0,
|
||||
(isset($combine['MS_WAREHOUSE_RECEIVING'])) ? $combine['MS_WAREHOUSE_RECEIVING'] : 0,
|
||||
(isset($combine['PS_SHIPPING'])) ? $combine['PS_SHIPPING'] : 0,
|
||||
(isset($combine['COMPLETED'])) ? $combine['COMPLETED'] : 0
|
||||
];
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user