list of orders

This commit is contained in:
hamid zarghami
2025-12-07 14:54:19 +03:30
parent 456f1a234f
commit 96650106a0
10 changed files with 463 additions and 206 deletions
+17
View File
@@ -0,0 +1,17 @@
export const enum OrderStatus {
Pending = "pending",
Confirmed = "confirmed",
Preparing = "preparing",
RejectedByRestaurant = "rejectedByRestaurant",
CancelledByUser = "cancelledByUser",
CancelledBySystem = "cancelledBySystem",
ReadyForCustomerPickup = "readyForCustomerPickup",
ReadyForDineIn = "readyForDineIn",
ReadyForDeliveryCar = "readyForDeliveryCar",
ReadyForDeliveryCourier = "readyForDeliveryCourier",
Delivered = "delivered",
}