124 lines
4.5 KiB
Python
124 lines
4.5 KiB
Python
#!/usr/bin/env python3
|
|
"""Auto-Verify 定时验证任务 — 扫描到期pending计划,自动验证执行效果
|
|
|
|
运行: 30 9 * * * cd /root/cma-management/backend && python3 scripts/auto_verify_cron.py
|
|
"""
|
|
import sys, os
|
|
from datetime import datetime, timedelta
|
|
|
|
sys.path.insert(0, os.path.dirname(os.path.dirname(os.path.abspath(__file__))))
|
|
|
|
from app.database import get_db
|
|
from app.models import ActionPlan, KPIDefinition, KPIValue, Objective
|
|
from app.utils.notifier import send_wecom_message
|
|
from app.api.verify import CONDITION_FUNCS
|
|
|
|
|
|
def evaluate_condition(condition, actual, target):
|
|
"""按条件判断验证结果(兼容旧表达式)"""
|
|
if isinstance(condition, str) and ('<' in condition or '>' in condition):
|
|
try:
|
|
return eval(condition.replace('value', str(actual)), {"__builtins__": {}})
|
|
except Exception:
|
|
return False
|
|
func = CONDITION_FUNCS.get(condition)
|
|
if not func:
|
|
return False
|
|
return func(actual, target)
|
|
|
|
|
|
def run_auto_verify():
|
|
db = next(get_db())
|
|
try:
|
|
now = datetime.now()
|
|
# 扫描到期pending计划(due_date <= now+1天)
|
|
plans = db.query(ActionPlan).filter(
|
|
ActionPlan.verify_status == "pending",
|
|
ActionPlan.status.in_(["pending", "in_progress"]),
|
|
ActionPlan.due_date <= now + timedelta(days=1),
|
|
).all()
|
|
|
|
verified_count = 0
|
|
escalated_count = 0
|
|
messages = []
|
|
|
|
for plan in plans:
|
|
rule = plan.auto_verify_rule
|
|
if not rule or not isinstance(rule, dict):
|
|
continue
|
|
|
|
kpi_code = rule.get("kpi_code")
|
|
if not kpi_code:
|
|
continue
|
|
|
|
# 查最新KPI值
|
|
kpi = db.query(KPIDefinition).filter(
|
|
KPIDefinition.kpi_code == kpi_code
|
|
).order_by(KPIDefinition.id.desc()).first()
|
|
if not kpi:
|
|
continue
|
|
latest = db.query(KPIValue).filter(
|
|
KPIValue.kpi_id == kpi.id
|
|
).order_by(KPIValue.calculated_at.desc()).first()
|
|
if not latest or latest.actual_value is None:
|
|
continue
|
|
|
|
actual = latest.actual_value
|
|
condition = rule.get("condition", "LESS_THAN")
|
|
target = rule.get("target_value")
|
|
retry_max = rule.get("retry_max", 3)
|
|
|
|
passed = evaluate_condition(condition, actual, target)
|
|
|
|
plan.kpi_current_before = rule.get("baseline_value")
|
|
plan.kpi_current_after = actual
|
|
|
|
if passed:
|
|
plan.verify_status = "passed"
|
|
plan.verified_at = now
|
|
plan.status = "done"
|
|
# 阶段3: OKR progress更新
|
|
update_okr_progress(db, plan, +15)
|
|
messages.append(f"✅ 行动计划#{plan.id}验证通过: {plan.title} ({kpi_code}: {rule.get('baseline_value')}→{actual})")
|
|
verified_count += 1
|
|
else:
|
|
plan.verify_attempts = (plan.verify_attempts or 0) + 1
|
|
if plan.verify_attempts >= retry_max:
|
|
plan.verify_status = "escalated"
|
|
messages.append(f"🚨 行动计划#{plan.id}连续{retry_max}次验证失败,升级人工: {plan.title}")
|
|
escalated_count += 1
|
|
else:
|
|
plan.verify_status = "retrying"
|
|
messages.append(f"⚠️ 行动计划#{plan.id}验证失败(第{plan.verify_attempts}次),待重试: {plan.title}")
|
|
|
|
db.commit()
|
|
|
|
# 汇总通知
|
|
if messages:
|
|
summary = "\n".join(messages)
|
|
try:
|
|
send_wecom_message(f"📋 行动计划自动验证日报\n{summary}", title="Auto-Verify")
|
|
except Exception:
|
|
pass
|
|
|
|
print(f"[{now.strftime('%Y-%m-%d %H:%M')}] 验证通过{verified_count}个,升级{escalated_count}个,共处理{len(plans)}个到期计划")
|
|
return {"verified": verified_count, "escalated": escalated_count, "total": len(plans)}
|
|
finally:
|
|
db.close()
|
|
|
|
|
|
def update_okr_progress(db, plan, delta):
|
|
"""验证通过→更新所属OKR progress"""
|
|
okr_id = getattr(plan, "okr_id", None) or getattr(plan, "objective_id", None)
|
|
if not okr_id:
|
|
return
|
|
obj = db.query(Objective).filter(Objective.id == okr_id).first()
|
|
if obj:
|
|
current = obj.progress or 0
|
|
obj.progress = min(current + delta, 100)
|
|
db.add(obj)
|
|
|
|
|
|
if __name__ == "__main__":
|
|
run_auto_verify()
|