清理全局角色残留并修复项目权限判断

This commit is contained in:
Cheng Zhou
2026-05-29 10:20:42 +08:00
parent 63457aab11
commit 44d69c2d7b
63 changed files with 739 additions and 443 deletions
+12 -12
View File
@@ -3,7 +3,7 @@ import uuid
from fastapi import APIRouter, Depends, HTTPException, status
from sqlalchemy.ext.asyncio import AsyncSession
from app.core.deps import get_cra_site_scope, get_current_user, get_db_session, require_api_permission
from app.core.deps import get_operator_role_label, get_cra_site_scope, get_current_user, get_db_session, require_api_permission
from app.crud import audit as audit_crud
from app.crud import site as site_crud
from app.crud import startup as startup_crud
@@ -75,7 +75,7 @@ async def create_feasibility(
action="CREATE_STARTUP_FEASIBILITY",
detail="立项记录已创建",
operator_id=current_user.id,
operator_role=current_user.role,
operator_role=await get_operator_role_label(db, study_id, current_user),
)
return StartupFeasibilityRead.model_validate(record)
@@ -149,7 +149,7 @@ async def update_feasibility(
action="UPDATE_STARTUP_FEASIBILITY",
detail="立项记录已更新",
operator_id=current_user.id,
operator_role=current_user.role,
operator_role=await get_operator_role_label(db, study_id, current_user),
)
return StartupFeasibilityRead.model_validate(record)
@@ -182,7 +182,7 @@ async def delete_feasibility(
action="DELETE_STARTUP_FEASIBILITY",
detail="立项记录已删除",
operator_id=current_user.id,
operator_role=current_user.role,
operator_role=await get_operator_role_label(db, study_id, current_user),
)
@@ -212,7 +212,7 @@ async def create_ethics(
action="CREATE_STARTUP_ETHICS",
detail="伦理记录已创建",
operator_id=current_user.id,
operator_role=current_user.role,
operator_role=await get_operator_role_label(db, study_id, current_user),
)
return StartupEthicsRead.model_validate(record)
@@ -286,7 +286,7 @@ async def update_ethics(
action="UPDATE_STARTUP_ETHICS",
detail="伦理记录已更新",
operator_id=current_user.id,
operator_role=current_user.role,
operator_role=await get_operator_role_label(db, study_id, current_user),
)
return StartupEthicsRead.model_validate(record)
@@ -319,7 +319,7 @@ async def delete_ethics(
action="DELETE_STARTUP_ETHICS",
detail="伦理记录已删除",
operator_id=current_user.id,
operator_role=current_user.role,
operator_role=await get_operator_role_label(db, study_id, current_user),
)
@@ -349,7 +349,7 @@ async def create_kickoff(
action="CREATE_KICKOFF_MEETING",
detail="启动会记录已创建",
operator_id=current_user.id,
operator_role=current_user.role,
operator_role=await get_operator_role_label(db, study_id, current_user),
)
return KickoffMeetingRead.model_validate(meeting)
@@ -423,7 +423,7 @@ async def update_kickoff(
action="UPDATE_KICKOFF_MEETING",
detail="启动会记录已更新",
operator_id=current_user.id,
operator_role=current_user.role,
operator_role=await get_operator_role_label(db, study_id, current_user),
)
return KickoffMeetingRead.model_validate(meeting)
@@ -454,7 +454,7 @@ async def create_training_authorization(
action="CREATE_TRAINING_AUTH",
detail="培训授权人员已创建",
operator_id=current_user.id,
operator_role=current_user.role,
operator_role=await get_operator_role_label(db, study_id, current_user),
)
return TrainingAuthorizationRead.model_validate(record)
@@ -528,7 +528,7 @@ async def update_training_authorization(
action="UPDATE_TRAINING_AUTH",
detail="培训授权人员已更新",
operator_id=current_user.id,
operator_role=current_user.role,
operator_role=await get_operator_role_label(db, study_id, current_user),
)
return TrainingAuthorizationRead.model_validate(record)
@@ -561,5 +561,5 @@ async def delete_training_authorization(
action="DELETE_TRAINING_AUTH",
detail="培训授权人员已删除",
operator_id=current_user.id,
operator_role=current_user.role,
operator_role=await get_operator_role_label(db, study_id, current_user),
)