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

循环盘点工作流程

库存循环盘点工作流程,包括 ABC 分类、盘点计划、差异调查、调整审批以及库存准确性跟踪。

完整 FlowZap 代码

supplier { # Supplier
  n1: circle label:"Start Cycle Counting"
  n4: rectangle label:"Make Cycle Counting decision"
  n7: rectangle label:"Continue Cycle Counting process"
  n10: circle label:"End Cycle Counting"
  n1.handle(bottom) -> warehouse.n2.handle(top)
  n1.handle(bottom) -> iot_sensor.n3.handle(top)
  n1.handle(right) -> n4.handle(left)
  n1.handle(bottom) -> warehouse.n5.handle(top)
  n1.handle(bottom) -> iot_sensor.n6.handle(top)
  n1.handle(right) -> n7.handle(left)
  n1.handle(bottom) -> warehouse.n8.handle(top)
  n1.handle(bottom) -> iot_sensor.n9.handle(top)
  n7.handle(right) -> n10.handle(left)
  n4.handle(top) -> n10.handle(top)
}

warehouse { # Warehouse
  n2: rectangle label:"Receive Cycle Counting request"
  n5: rectangle label:"Update records for Cycle Counting"
  n8: rectangle label:"Continue Cycle Counting process"
  n8.handle(right) -> supplier.n10.handle(bottom)
  n5.handle(right) -> supplier.n10.handle(bottom)
  n2.handle(right) -> supplier.n10.handle(bottom)
}

iot_sensor { # Iot_Sensor
  n3: rectangle label:"Review Cycle Counting details"
  n6: rectangle label:"Continue Cycle Counting process"
  n9: rectangle label:"Continue Cycle Counting process"
  n9.handle(right) -> supplier.n10.handle(bottom)
  n6.handle(right) -> supplier.n10.handle(bottom)
  n3.handle(right) -> supplier.n10.handle(bottom)
}

相关模板

清关工作流程

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

破损货物工作流程

破损货物处理工作流程,包括损坏记录、向承运人提出索赔、处置决策(回收/报废)、库存调整以及损失跟踪。

返回所有模板