Welcome to FlowZap, the App to diagram with Speed, Clarity and Control.

信用控制工作流

finance

客户信用控制工作流,包括信用额度评估、信用评分、订单保留管理、催收升级以及分期付款计划协商。

完整 FlowZap 代码

employee { # Employee
  n1: circle label:"Start Credit Control"
  n4: rectangle label:"Make Credit Control decision"
  n7: rectangle label:"Continue Credit Control process"
  n10: circle label:"End Credit Control"
  n1.handle(bottom) -> manager.n2.handle(top)
  n1.handle(bottom) -> finance_app.n3.handle(top)
  n1.handle(right) -> n4.handle(left)
  n1.handle(bottom) -> manager.n5.handle(top)
  n1.handle(bottom) -> finance_app.n6.handle(top)
  n1.handle(right) -> n7.handle(left)
  n1.handle(bottom) -> manager.n8.handle(top)
  n1.handle(bottom) -> finance_app.n9.handle(top)
  n4.handle(right) -> n10.handle(left)
  n7.handle(right) -> n10.handle(left)
}

manager { # Manager
  n2: rectangle label:"Receive Credit Control request"
  n5: rectangle label:"Update records for Credit Control"
  n8: rectangle label:"Continue Credit Control process"
  n2.handle(right) -> employee.n10.handle(bottom)
  n8.handle(right) -> employee.n10.handle(bottom)
  n5.handle(right) -> employee.n10.handle(bottom)
}

finance_app { # Finance_App
  n3: rectangle label:"Review Credit Control details"
  n6: diamond label:"Continue Credit Control process"
  n9: rectangle label:"Continue Credit Control process"
  n9.handle(right) -> employee.n10.handle(bottom)
  n6.handle(right) -> employee.n10.handle(bottom)
  n3.handle(right) -> employee.n10.handle(bottom)
}

相关模板

银行对账工作流

finance

具有自动化交易匹配、差异报告、差异调查以及针对时间差异和银行错误的日记账分录创建的银行对账工作流。

预算批准工作流

finance

企业预算批准工作流,根据金额阈值进行分层批准路由(CFO < 10万美元,CEO 10万-100万美元,董事会 > 100万美元),前一年比较和资金分配。

费用报销工作流

finance

员工费用报销工作流,包括发票提交、经理审批、财务审核、政策合规检查以及直接存款支付。