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

月度关账工作流

finance

公司月末财务关账流程,包括交易入账、银行对账、应计费用、折旧、试算平衡表核对以及财务报表生成。

完整 FlowZap 代码

Controller { # Controller
n1: circle label:"Start"
n2: rectangle label:"Initiate month-end close"
n3: rectangle label:"Review close checklist"
n4: rectangle label:"Approve financial statements"
n5: circle label:"End"
n1.handle(right) -> n2.handle(left)
n2.handle(bottom) -> Accounting.n6.handle(top) [label="Begin close"]
n3.handle(bottom) -> Reporting.n18.handle(top) [label="Generate reports"]
n4.handle(right) -> n5.handle(left)
}
Accounting { # Accounting Team
n6: rectangle label:"Post pending transactions"
n7: rectangle label:"Reconcile bank accounts"
n8: diamond label:"Reconciliation balanced?"
n9: rectangle label:"Record accruals"
n10: rectangle label:"Investigate variances"
n11: rectangle label:"Post depreciation"
n12: rectangle label:"Review intercompany"
n6.handle(right) -> n7.handle(left)
n7.handle(right) -> n8.handle(left)
n8.handle(right) -> n9.handle(left) [label="Yes"]
n8.handle(bottom) -> n10.handle(top) [label="No"]
n9.handle(right) -> n11.handle(left)
n10.handle(top) -> n7.handle(bottom) [label="Recheck"]
n11.handle(right) -> n12.handle(left)
n12.handle(bottom) -> Validation.n13.handle(top) [label="Validate"]
}
Validation { # Validation
n13: rectangle label:"Run trial balance"
n14: diamond label:"Debits equal credits?"
n15: rectangle label:"Review account balances"
n16: rectangle label:"Identify discrepancies"
n17: rectangle label:"Lock accounting period"
n13.handle(right) -> n14.handle(left)
n14.handle(right) -> n15.handle(left) [label="Yes"]
n14.handle(bottom) -> n16.handle(top) [label="No"]
n15.handle(right) -> n17.handle(left)
n16.handle(top) -> Accounting.n6.handle(bottom) [label="Correct"]
n17.handle(top) -> Controller.n3.handle(bottom) [label="Period closed"]
}
Reporting { # Financial Reporting
n18: rectangle label:"Generate income statement"
n19: rectangle label:"Generate balance sheet"
n20: rectangle label:"Generate cash flow statement"
n21: rectangle label:"Prepare variance analysis"
n22: rectangle label:"Package for leadership"
n18.handle(right) -> n19.handle(left)
n19.handle(right) -> n20.handle(left)
n20.handle(right) -> n21.handle(left)
n21.handle(right) -> n22.handle(left)
n22.handle(top) -> Controller.n4.handle(bottom) [label="Ready for review"]
}

相关模板

财务报告工作流

finance

具有 GAAP 合规报表准备、管理审查、审计委员会批准和上市公司 SEC 备案的**财务报告工作流**。

银行对账工作流

finance

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

预算批准工作流

finance

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

信用控制工作流

finance

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