feat: P0/P1/P2全部功能 — 四层泳道/视角切换/KPI看板/预警/差异反打/预算/知识面板/回顾会/情景预测/Excel导入/角色权限

This commit is contained in:
Hermes CI Fix
2026-07-12 17:46:08 +08:00
parent cdf00efd69
commit ee25d5fa1d
8871 changed files with 1778433 additions and 0 deletions
+28
View File
@@ -0,0 +1,28 @@
import subprocess
import sys
backend_dir = '/root/cma-management/backend'
# Run task1 - insert data source
print("=== 子任务1: 插入数据源 ===")
result = subprocess.run(
[sys.executable, 'scripts/_task1_insert_source.py'],
cwd=backend_dir,
capture_output=True,
text=True,
)
print(result.stdout)
if result.stderr:
print(f"STDERR: {result.stderr}")
# Run task4 - create Excel template
print("\n=== 子任务4: 创建Excel模板 ===")
result = subprocess.run(
[sys.executable, 'scripts/_task4_create_template.py'],
cwd=backend_dir,
capture_output=True,
text=True,
)
print(result.stdout)
if result.stderr:
print(f"STDERR: {result.stderr}")