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

采购订单工作流

finance

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

完整 FlowZap 代码

Requester { # Requester
n1: circle label:"Start"
n2: rectangle label:"Create purchase requisition"
n3: rectangle label:"Add line items"
n4: rectangle label:"Attach specifications"
n5: rectangle label:"Receive PO number"
n6: circle label:"End"
n1.handle(right) -> n2.handle(left)
n2.handle(right) -> n3.handle(left)
n3.handle(right) -> n4.handle(left)
n4.handle(bottom) -> Procurement.n7.handle(top) [label="Submit"]
n5.handle(right) -> n6.handle(left)
}
Procurement { # Procurement
n7: rectangle label:"Review requisition"
n8: diamond label:"Budget available?"
n9: rectangle label:"Source vendors"
n10: rectangle label:"Request quotes"
n11: rectangle label:"Return for budget approval"
n12: diamond label:"Competitive bids required?"
n13: rectangle label:"Select best vendor"
n14: rectangle label:"Single source justification"
n7.handle(right) -> n8.handle(left)
n8.handle(right) -> n9.handle(left) [label="Yes"]
n8.handle(bottom) -> n11.handle(top) [label="No"]
n9.handle(right) -> n12.handle(left)
n11.handle(top) -> Requester.n2.handle(bottom) [label="Revise"]
n12.handle(right) -> n10.handle(left) [label="Yes"]
n12.handle(bottom) -> n14.handle(top) [label="No"]
n10.handle(right) -> n13.handle(left)
n13.handle(bottom) -> Approval.n15.handle(top) [label="Approve"]
n14.handle(right) -> n13.handle(top)
}
Approval { # Approval Chain
n15: rectangle label:"Route based on amount"
n16: diamond label:"Amount threshold?"
n17: rectangle label:"Manager approval"
n18: rectangle label:"Director approval"
n19: rectangle label:"VP approval"
n20: diamond label:"Approved?"
n21: rectangle label:"Generate PO number"
n22: rectangle label:"Reject with comments"
n15.handle(right) -> n16.handle(left)
n16.handle(right) -> n17.handle(left) [label="< $5K"]
n16.handle(bottom) -> n18.handle(top) [label="$5K-$50K"]
n16.handle(left) -> n19.handle(top) [label="> $50K"]
n17.handle(bottom) -> n20.handle(top)
n18.handle(bottom) -> n20.handle(top)
n19.handle(bottom) -> n20.handle(top)
n20.handle(right) -> n21.handle(left) [label="Yes"]
n20.handle(bottom) -> n22.handle(top) [label="No"]
n21.handle(top) -> Requester.n5.handle(bottom) [label="PO issued"]
n22.handle(top) -> Requester.n2.handle(bottom) [label="Rejected"]
}

Quick Answer

采购订单工作流 is a workflow template that maverick spending and unapproved purchases waste 10-20% of procurement budgets.

为什么需要这个工作流?

Maverick spending and unapproved purchases waste 10-20% of procurement budgets. This workflow enforces procurement policies with requisition creation, budget validation, competitive bidding, and tiered approvals.

工作原理

  1. Step 1: Requisition is created with item details, quantity, and estimated cost.
  2. Step 2: Budget validation checks against department budget and GL coding.
  3. Step 3: Vendor sourcing identifies approved vendors or initiates RFQ process.
  4. Step 4: Competitive bidding is required for purchases above threshold (e.g., $10K).
  5. Step 5: Tiered approval routes based on amount: Manager < $5K, Director < $25K, VP < $100K, CFO > $100K.
  6. Step 6: Approved PO is sent to vendor and tracked through delivery.

替代方案

Email-based approvals lack audit trails and are easily bypassed. Procurement tools like Coupa or Ariba cost $100K+/year for enterprise. This workflow provides a visual policy that procurement teams can enforce.

Key Facts

Template Name采购订单工作流
Categoryfinance
Steps6 workflow steps
FormatFlowZap Code (.fz file)

相关模板

预算批准工作流

finance

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

供应商入职工作流

finance

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

银行对账工作流

finance

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

返回所有模板