欢迎使用 FlowZap,快速、清晰、掌控的绘图应用。

打包流程工作流

订单打包工作流,包括纸箱选择、物品验证、装箱单插入、重量检查和包装封口以备发货。

完整 FlowZap 代码

supplier { # Supplier
  n1: circle label:"Start Packing Process"
  n3: diamond label:"Review Packing Process details"
  n5: rectangle label:"Update records for Packing Process"
  n7: circle label:"End Packing Process"
  n1.handle(bottom) -> warehouse.n2.handle(top)
  n3.handle(bottom) -> warehouse.n4.handle(top) [label="Processed"]
  n3.handle(right) -> warehouse.n2.handle(right) [label="Retry/Rejected"]
  n5.handle(bottom) -> warehouse.n6.handle(top)
}

warehouse { # Warehouse
  n2: rectangle label:"Receive Packing Process request"
  n4: rectangle label:"Make Packing Process decision"
  n6: rectangle label:"Continue Packing Process process"
  n6.handle(right) -> supplier.n7.handle(bottom) [label="Success"]
  n4.handle(right) -> supplier.n5.handle(left)
  n2.handle(bottom) -> supplier.n3.handle(left)
}

相关模板

清关工作流程

国际清关工作流程,包括进口商提供单证、报关行进行 HS 编码归类、关税计算、海关机构查验以及签发放行证明。

返回所有模板