Update tracking for in route to hub

This commit is contained in:
derek.holloway
2026-01-15 10:16:38 -08:00
parent 929a836645
commit 02812eb804
6 changed files with 16 additions and 4 deletions
+4 -3
View File
@@ -26,6 +26,7 @@ class DeliveryObject:
class deliveryStatus(Enum):
NO_STATUS = 0
AT_THE_HUB = 1
IN_ROUTE = 2
DELIVERED = 3
IN_ROUTE_TO_HUB = 1
AT_THE_HUB = 2
IN_ROUTE = 3
DELIVERED = 4