feat : chef name

This commit is contained in:
2025-04-10 17:38:28 +08:00
parent c2db85164b
commit 0fc95607ae

View File

@@ -73,7 +73,7 @@ class OrderListService extends BaseService
$type = (int)$this->request->input('type',self::CURRENT_ORDER); $type = (int)$this->request->input('type',self::CURRENT_ORDER);
$status = match ($type){ $status = match ($type){
self::CURRENT_ORDER => [OrderCode::WAIT_PAY,OrderCode::PAYED,OrderCode::PLAN,OrderCode::DEPART], self::CURRENT_ORDER => [OrderCode::WAIT_PAY,OrderCode::PAYED,OrderCode::PLAN,OrderCode::DEPART,OrderCode::ARRIVE],
self::HISTORY_ORDER => [OrderCode::FINISH,OrderCode::CANCEL,OrderCode::FINISH_REFUND,OrderCode::UNCOMPLETED_REFUND] self::HISTORY_ORDER => [OrderCode::FINISH,OrderCode::CANCEL,OrderCode::FINISH_REFUND,OrderCode::UNCOMPLETED_REFUND]
}; };