交叉分拨工作流程
logistics
具有入库预约、按目的地分拣、出库合单以及不经存储直接转运以实现准时制交付的交叉分拨工作流程。
完整 FlowZap 代码
supplier { # Supplier
n1: circle label:"Start Cross Docking"
n4: rectangle label:"Make Cross Docking decision"
n7: rectangle label:"Continue Cross Docking process"
n10: circle label:"End Cross Docking"
n1.handle(bottom) -> warehouse.n2.handle(top) [label="Success"]
n4.handle(bottom) -> warehouse.n5.handle(top) [label="Valid"]
n7.handle(bottom) -> warehouse.n8.handle(top) [label="Next"]
}
warehouse { # Warehouse
n2: rectangle label:"Receive Cross Docking request"
n5: rectangle label:"Update records for Cross Docking"
n8: rectangle label:"Continue Cross Docking process"
n2.handle(bottom) -> iot_sensor.n3.handle(top)
n5.handle(bottom) -> iot_sensor.n6.handle(top)
n8.handle(bottom) -> iot_sensor.n9.handle(top)
}
iot_sensor { # Iot_Sensor
n3: rectangle label:"Review Cross Docking details"
n6: rectangle label:"Continue Cross Docking process"
n9: rectangle label:"Continue Cross Docking process"
n9.handle(right) -> supplier.n10.handle(bottom)
n6.handle(right) -> supplier.n7.handle(left)
n3.handle(right) -> supplier.n4.handle(left)
}