Procurement Card Workflow
finance
This workflow models managing company credit cards.
Full FlowZap Code
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"]
}
Related templates
Purchase Order Workflow
finance
Procurement purchase order workflow with requisition creation, budget validation, vendor sourcing, competitive bidding, and tiered approval routing based on amount thresholds.
Vendor Onboarding Workflow
finance
Vendor onboarding workflow with application review, W-9/W-8BEN verification, insurance certificate validation, background checks, and compliance approval before vendor activation.
Bank Reconciliation Workflow
finance
Bank reconciliation workflow with automated transaction matching, variance reporting, discrepancy research, and journal entry creation for timing differences and bank errors.
Budget Approval Workflow
finance
Corporate budget approval workflow with tiered approval routing based on amount thresholds (CFO < $100K, CEO $100K-$1M, Board > $1M), prior year comparison, and fund allocation.