From 959257c1326ff04646e5633d877cc59ecbeda12e Mon Sep 17 00:00:00 2001 From: Omair Saleh Date: Tue, 5 Mar 2019 18:45:59 +0800 Subject: [PATCH] Major incomplete Change --- app/Classes/Modules/Orders/Services/ListsOrderHistory.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/Classes/Modules/Orders/Services/ListsOrderHistory.php b/app/Classes/Modules/Orders/Services/ListsOrderHistory.php index 200ef55..856424f 100644 --- a/app/Classes/Modules/Orders/Services/ListsOrderHistory.php +++ b/app/Classes/Modules/Orders/Services/ListsOrderHistory.php @@ -20,13 +20,13 @@ class ListsOrderHistory $history = new Collection(); - $history->push(['date' => $createdAt->format('d-m-Y H:i'), 'description' => 'Order created']); + $history->push(['date' => $createdAt->format('d-m-Y H:i'), 'description' => 'Order number has been created']); foreach ($orderSteps as $step){ switch ($step->reference_id){ case Constants::ORDER_PROCESSING_STEP: - $history->push(['date' => $step->updated_at->format('d-m-Y H:i'), 'description' => 'Order number has been created']); + $history->push(['date' => $step->updated_at->format('d-m-Y H:i'), 'description' => 'Order warehouse confirmed']); break; case Constants::ORDER_NO_WAREHOUSE_PENDING_SUPPLIER: $history->push(['date' => $step->updated_at->format('d-m-Y H:i'), 'description' => 'Your Order has been loaded into container']);