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

采购卡工作流

finance

此工作流模拟管理公司信用卡。

完整 FlowZap 代码

employee { # Employee
  n1: circle label:"Start Procurement Card"
  n4: diamond label:"Make Procurement Card decision"
  n7: rectangle label:"Continue Procurement Card process"
  n10: circle label:"End Procurement Card"
  n1.handle(bottom) -> manager.n2.handle(top)
  n4.handle(bottom) -> manager.n5.handle(top)
  n7.handle(bottom) -> manager.n8.handle(top)
  n4.handle(right) -> finance_app.n3.handle(bottom) [label="Retry/Rejected"]
}

manager { # Manager
  n2: rectangle label:"Receive Procurement Card request"
  n5: rectangle label:"Update records for Procurement Card"
  n8: rectangle label:"Continue Procurement Card process"
  n2.handle(bottom) -> finance_app.n3.handle(top)
  n5.handle(bottom) -> finance_app.n6.handle(top)
  n8.handle(bottom) -> finance_app.n9.handle(top)
}

finance_app { # Finance_App
  n3: rectangle label:"Review Procurement Card details"
  n6: rectangle label:"Continue Procurement Card process"
  n9: rectangle label:"Continue Procurement Card process"
  n9.handle(right) -> employee.n10.handle(bottom) [label="Valid"]
  n6.handle(right) -> employee.n7.handle(left) [label="Success"]
  n3.handle(right) -> employee.n4.handle(left) [label="Processed"]
}

相关模板

采购订单工作流

finance

包含请购单创建、预算验证、供应商寻源、竞争性招标以及基于金额阈值的分级审批流转的采购订单工作流。

供应商入职工作流

finance

供应商入职工作流,包括申请审查、W-9/W-8BEN验证、保险证书验证、背景检查和合规审批,然后激活供应商。

银行对账工作流

finance

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

预算批准工作流

finance

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