全局中文化

This commit is contained in:
Cheng Zhou
2026-01-12 11:14:04 +08:00
parent 9021c7fe2b
commit 1338fa7e2b
103 changed files with 2443 additions and 1533 deletions
+7 -7
View File
@@ -15,7 +15,7 @@ router = APIRouter()
async def _ensure_study_exists(db: AsyncSession, study_id: uuid.UUID):
study = await study_crud.get(db, study_id)
if not study:
raise HTTPException(status_code=status.HTTP_404_NOT_FOUND, detail="Study not found")
raise HTTPException(status_code=status.HTTP_404_NOT_FOUND, detail="项目不存在")
return study
@@ -39,7 +39,7 @@ async def create_shipment(
entity_type="drug_shipment",
entity_id=shipment.id,
action="CREATE_DRUG_SHIPMENT",
detail=f"Drug shipment {shipment.id} created",
detail=f"药品运输 {shipment.id} 已创建",
operator_id=current_user.id,
operator_role=current_user.role,
)
@@ -80,7 +80,7 @@ async def get_shipment(
await _ensure_study_exists(db, study_id)
shipment = await shipment_crud.get_shipment(db, shipment_id)
if not shipment or shipment.study_id != study_id:
raise HTTPException(status_code=status.HTTP_404_NOT_FOUND, detail="Shipment not found")
raise HTTPException(status_code=status.HTTP_404_NOT_FOUND, detail="运输记录不存在")
return DrugShipmentRead.model_validate(shipment)
@@ -99,7 +99,7 @@ async def update_shipment(
await _ensure_study_exists(db, study_id)
shipment = await shipment_crud.get_shipment(db, shipment_id)
if not shipment or shipment.study_id != study_id:
raise HTTPException(status_code=status.HTTP_404_NOT_FOUND, detail="Shipment not found")
raise HTTPException(status_code=status.HTTP_404_NOT_FOUND, detail="运输记录不存在")
shipment = await shipment_crud.update_shipment(db, shipment, shipment_in)
await audit_crud.log_action(
db,
@@ -107,7 +107,7 @@ async def update_shipment(
entity_type="drug_shipment",
entity_id=shipment_id,
action="UPDATE_DRUG_SHIPMENT",
detail=f"Drug shipment {shipment_id} updated",
detail=f"药品运输 {shipment_id} 已更新",
operator_id=current_user.id,
operator_role=current_user.role,
)
@@ -128,7 +128,7 @@ async def delete_shipment(
await _ensure_study_exists(db, study_id)
shipment = await shipment_crud.get_shipment(db, shipment_id)
if not shipment or shipment.study_id != study_id:
raise HTTPException(status_code=status.HTTP_404_NOT_FOUND, detail="Shipment not found")
raise HTTPException(status_code=status.HTTP_404_NOT_FOUND, detail="运输记录不存在")
await shipment_crud.delete_shipment(db, shipment)
await audit_crud.log_action(
db,
@@ -136,7 +136,7 @@ async def delete_shipment(
entity_type="drug_shipment",
entity_id=shipment_id,
action="DELETE_DRUG_SHIPMENT",
detail=f"Drug shipment {shipment_id} deleted",
detail=f"药品运输 {shipment_id} 已删除",
operator_id=current_user.id,
operator_role=current_user.role,
)