上架入库流程工作流
logistics
包含库位分配、货位优化、叉车路径规划、条码确认和仓储管理系统(WMS)库位更新的仓库上架入库工作流。
完整 FlowZap 代码
supplier { # Supplier
n1: circle label:"Start Put Away Process"
n2: diamond label:"Receive Put Away Process request"
n3: rectangle label:"Review Put Away Process details"
n5: rectangle label:"Update records for Put Away Process"
n7: circle label:"End Put Away Process"
n1.handle(right) -> n2.handle(left)
n2.handle(right) -> n3.handle(left) [label="Yes/Approved"]
n2.handle(bottom) -> warehouse.n4.handle(top) [label="No/Rejected"]
n3.handle(right) -> n5.handle(left)
n5.handle(bottom) -> warehouse.n6.handle(top)
}
warehouse { # Warehouse
n4: rectangle label:"Make Put Away Process decision"
n6: rectangle label:"Continue Put Away Process process"
n6.handle(right) -> supplier.n7.handle(bottom)
n4.handle(right) -> supplier.n5.handle(top)
}