247 lines
10 KiB
Python
247 lines
10 KiB
Python
"""预警 API"""
|
|
from fastapi import APIRouter, Depends, Query
|
|
from sqlalchemy.orm import Session
|
|
from app.database import get_db
|
|
from app.auth_middleware import require_auth, require_role
|
|
from app.models import KPIAlert, OperationLog
|
|
import logging
|
|
|
|
logger = logging.getLogger("cma.alerts")
|
|
|
|
router = APIRouter(prefix="/api/cma/alerts", tags=["预警"],
|
|
dependencies=[Depends(require_role("ceo", "finance", "business", "it"))],
|
|
)
|
|
|
|
@router.get("")
|
|
def list_alerts(status: str = None, page: int = Query(1, ge=1), db: Session = Depends(get_db)):
|
|
query = db.query(KPIAlert)
|
|
if status:
|
|
query = query.filter(KPIAlert.status == status)
|
|
total = query.count()
|
|
alerts = query.order_by(KPIAlert.created_at.desc()).offset((page-1)*20).limit(20).all()
|
|
return {"total": total, "data": [{c.name: getattr(a, c.name) for c in KPIAlert.__table__.columns} for a in alerts]}
|
|
|
|
@router.post("/{alert_id}/resolve")
|
|
def resolve_alert(alert_id: int, data: dict, db: Session = Depends(get_db)):
|
|
alert = db.query(KPIAlert).filter(KPIAlert.id == alert_id).first()
|
|
if alert:
|
|
alert.status = "resolved"
|
|
alert.resolution = data.get("resolution", "")
|
|
alert.assignee = data.get("assignee", alert.assignee)
|
|
from datetime import datetime; alert.resolved_at = datetime.now()
|
|
db.commit()
|
|
return {"message": "已处理", "assignee": alert.assignee}
|
|
|
|
# ──────────────────────────────────────────────
|
|
# 功能4: 风险矩阵热力图 (CMA P2 - ERM框架、风险识别四象限)
|
|
# ──────────────────────────────────────────────
|
|
|
|
RISK_MATRIX_DATA = {
|
|
"hanke": {
|
|
"entity_name": "陕西酣客(白酒经销)",
|
|
"quadrants": [
|
|
{
|
|
"impact": "high",
|
|
"probability": "high",
|
|
"label": "高影响×高概率",
|
|
"risks": [
|
|
{
|
|
"id": "risk_001",
|
|
"name": "流动性风险",
|
|
"impact_label": "高",
|
|
"probability_label": "高",
|
|
"detail": "现金2.2万 vs 短债350万 → 断流风险",
|
|
"impact_value": 90,
|
|
"probability_value": 85,
|
|
"type": "red",
|
|
"measures": ["催收大额应收", "协商短期借款续贷"],
|
|
"responsible": "任富海",
|
|
"deadline": "7月底",
|
|
},
|
|
{
|
|
"id": "risk_002",
|
|
"name": "合规风险",
|
|
"impact_label": "高",
|
|
"probability_label": "高",
|
|
"detail": "欠税426万 · 折旧违规",
|
|
"impact_value": 95,
|
|
"probability_value": 80,
|
|
"type": "red",
|
|
"measures": ["补缴欠税计划", "重新梳理折旧政策"],
|
|
"responsible": "任富海",
|
|
"deadline": "8月底",
|
|
},
|
|
],
|
|
},
|
|
{
|
|
"impact": "high",
|
|
"probability": "medium",
|
|
"label": "高影响×中概率",
|
|
"risks": [
|
|
{
|
|
"id": "risk_003",
|
|
"name": "政策风险",
|
|
"impact_label": "高",
|
|
"probability_label": "中",
|
|
"detail": "白酒消费税调整可能导致成本上升15-20%",
|
|
"impact_value": 85,
|
|
"probability_value": 50,
|
|
"type": "orange",
|
|
"measures": ["关注政策动向", "预留税务缓冲资金"],
|
|
"responsible": "财务部",
|
|
"deadline": "持续关注",
|
|
},
|
|
],
|
|
},
|
|
{
|
|
"impact": "medium",
|
|
"probability": "high",
|
|
"label": "中影响×高概率",
|
|
"risks": [
|
|
{
|
|
"id": "risk_004",
|
|
"name": "运营风险",
|
|
"impact_label": "中",
|
|
"probability_label": "高",
|
|
"detail": "Model C 成本模型未落地,成本核算偏差",
|
|
"impact_value": 60,
|
|
"probability_value": 80,
|
|
"type": "yellow",
|
|
"measures": ["推动Model C落地", "建立成本标准化流程"],
|
|
"responsible": "财务部",
|
|
"deadline": "8月中",
|
|
},
|
|
],
|
|
},
|
|
{
|
|
"impact": "medium",
|
|
"probability": "medium",
|
|
"label": "中影响×中概率",
|
|
"risks": [
|
|
{
|
|
"id": "risk_005",
|
|
"name": "战略风险",
|
|
"impact_label": "中",
|
|
"probability_label": "中",
|
|
"detail": "酒类零交易,新业务方向不确定",
|
|
"impact_value": 55,
|
|
"probability_value": 55,
|
|
"type": "yellow",
|
|
"measures": ["制定新业务评估框架", "定期战略复盘"],
|
|
"responsible": "管理层",
|
|
"deadline": "9月底",
|
|
},
|
|
],
|
|
},
|
|
{
|
|
"impact": "low",
|
|
"probability": "low",
|
|
"label": "低影响×低概率",
|
|
"risks": [
|
|
{
|
|
"id": "risk_006",
|
|
"name": "市场风险",
|
|
"impact_label": "低",
|
|
"probability_label": "低",
|
|
"detail": "行业需求波动,但酣客已基本退出市场",
|
|
"impact_value": 25,
|
|
"probability_value": 20,
|
|
"type": "green",
|
|
"measures": ["定期监控行业数据"],
|
|
"responsible": "业务部",
|
|
"deadline": "每季度",
|
|
},
|
|
{
|
|
"id": "risk_007",
|
|
"name": "人员风险",
|
|
"impact_label": "低",
|
|
"probability_label": "低",
|
|
"detail": "核心团队稳定,短期内无流失风险",
|
|
"impact_value": 20,
|
|
"probability_value": 15,
|
|
"type": "green",
|
|
"measures": ["保持团队激励", "关键岗位备份"],
|
|
"responsible": "人事部",
|
|
"deadline": "持续",
|
|
},
|
|
],
|
|
},
|
|
],
|
|
},
|
|
"bohai": {
|
|
"entity_name": "陕西博海科技(IT服务)",
|
|
"quadrants": [
|
|
{
|
|
"impact": "high",
|
|
"probability": "medium",
|
|
"label": "高影响×中概率",
|
|
"risks": [
|
|
{
|
|
"id": "risk_b_001",
|
|
"name": "现金流风险",
|
|
"impact_label": "高",
|
|
"probability_label": "中",
|
|
"detail": "应收账款账期延长,现金流紧张",
|
|
"impact_value": 85,
|
|
"probability_value": 55,
|
|
"type": "orange",
|
|
"measures": ["加快应收催收", "建立信用管理制度"],
|
|
"responsible": "任富海",
|
|
"deadline": "7月底",
|
|
},
|
|
],
|
|
},
|
|
{
|
|
"impact": "medium",
|
|
"probability": "high",
|
|
"label": "中影响×高概率",
|
|
"risks": [
|
|
{
|
|
"id": "risk_b_002",
|
|
"name": "项目交付风险",
|
|
"impact_label": "中",
|
|
"probability_label": "高",
|
|
"detail": "多个项目并行,交付压力大",
|
|
"impact_value": 65,
|
|
"probability_value": 75,
|
|
"type": "yellow",
|
|
"measures": ["优化项目排期", "增加外包资源"],
|
|
"responsible": "项目部",
|
|
"deadline": "持续",
|
|
},
|
|
],
|
|
},
|
|
{
|
|
"impact": "low",
|
|
"probability": "medium",
|
|
"label": "低影响×中概率",
|
|
"risks": [
|
|
{
|
|
"id": "risk_b_003",
|
|
"name": "技术迭代风险",
|
|
"impact_label": "低",
|
|
"probability_label": "中",
|
|
"detail": "新技术跟踪不及时,可能落后",
|
|
"impact_value": 30,
|
|
"probability_value": 45,
|
|
"type": "green",
|
|
"measures": ["定期技术培训", "技术栈评估"],
|
|
"responsible": "技术部",
|
|
"deadline": "每季度",
|
|
},
|
|
],
|
|
},
|
|
],
|
|
},
|
|
}
|
|
|
|
|
|
@router.get("/risk-matrix")
|
|
def get_risk_matrix(entity: str = Query("hanke", description="hanke/bohai")):
|
|
"""风险矩阵热力图数据 - CMA P2 ERM四象限"""
|
|
data = RISK_MATRIX_DATA.get(entity)
|
|
if not data:
|
|
data = RISK_MATRIX_DATA["hanke"]
|
|
data["entity_name"] = f"未知实体({entity}),默认返回酣客数据"
|
|
return data
|