流程说明: 预算管理包含三大模块:计划制定、预算执行和监督检查。
graph LR
Root[预算管理] --> Plan[计划制定]
Root --> Exec[预算执行]
Root --> Monitor[监督检查]
Plan --> P1[年度预算]
Plan --> P2[项目预算]
Plan --> P3[专项预算]
Exec --> E1[直接支付]
Exec --> E2[授权支付]
Exec --> E3[公务卡支付]
Monitor --> M1[进度监控]
Monitor --> M2[绩效评价]
Monitor --> M3[审计检查]
style Root fill:#1976D2,color:#fff,stroke:#0D47A1,stroke-width:3px
style Plan fill:#4CAF50,color:#fff,stroke:#2E7D32,stroke-width:2px
style Exec fill:#FF9800,color:#fff,stroke:#E65100,stroke-width:2px
style Monitor fill:#F44336,color:#fff,stroke:#B71C1C,stroke-width:2px
style P1 fill:#81C784,stroke:#2E7D32,stroke-width:2px
style P2 fill:#81C784,stroke:#2E7D32,stroke-width:2px
style P3 fill:#81C784,stroke:#2E7D32,stroke-width:2px
style E1 fill:#FFB74D,stroke:#E65100,stroke-width:2px
style E2 fill:#FFB74D,stroke:#E65100,stroke-width:2px
style E3 fill:#FFB74D,stroke:#E65100,stroke-width:2px
style M1 fill:#EF5350,stroke:#B71C1C,stroke-width:2px
style M2 fill:#EF5350,stroke:#B71C1C,stroke-width:2px
style M3 fill:#EF5350,stroke:#B71C1C,stroke-width:2px
graph LR
A[编制预算] --> B[部门审核]
B --> C{预算金额}
C -->|小于10万| D[科室负责人审批]
C -->|10万-50万| E[部门领导审批]
C -->|大于50万| F[单位领导审批]
D --> G[财务审核]
E --> G
F --> G
G --> H{审核结果}
H -->|通过| I[预算下达]
H -->|不通过| J[修改预算]
J --> A
I --> K[执行监控]
style A fill:#E3F2FD,stroke:#1976D2,stroke-width:2px
style I fill:#C8E6C9,stroke:#388E3C,stroke-width:2px
style J fill:#FFCCBC,stroke:#E64A19,stroke-width:2px
style K fill:#F0F4C3,stroke:#AFB42B,stroke-width:2px