Add more ScanTypes

pull/6221/head
Qiuyi LI 2023-07-28 15:06:14 +02:00
parent c4325cf75a
commit aed2406c81
1 changed files with 4 additions and 0 deletions

View File

@ -6,6 +6,7 @@ public enum ScanType {
END_DELIVERED("End Delivered"),
END_DELIVERY("End Delivery"),
END_RECEIVED("End Received"),
END_SEND("End Send"),
END_ARRIVED("End Arrived"),
FLIGHT_ARRIVED("Flight Arrived"),
FLIGHT_DEPARTURE("Flight Departure"),
@ -13,12 +14,15 @@ public enum ScanType {
FACILITY_ARRIVED("Received by Consolidation Warehouse"),
FACILITY_DEPARTURE("Consolidation Center Dispatch"),
FACILITY_OUTBOUND("Consolidation Center Outbound"),
CUSTOMS_CLEARANCE("Customs Clearance"),
CUSTOMS_CLEARANCE_COMPLETED("Customs Clearance Completed"),
ORDER_PLACED("Order Placed"),
WAITING_FOR_DELIVERY("Waiting for Delivery"),
ARRIVED_PORT("Arrived at Port"),
FLIGHT_PREPARING("Flight Preparing"),
CN_CUSTOMS_INSPECTION("Customs Inspection"),
EXPORT_CUSTOMS_DECLARATION("Export Declaration"),
EXPORT_CUSTOMS_DECLARATION_COMPLETED("Export Declaration Completed"),
BAGGING("Bagging");
private final String desc;