Files
FastapiAdmin/backend/app/api/v1/module_system/customer/controller.py
T
zhangtao ef5f14e856 refactor: 重构查询参数模块,将param.py合并到schema.py中
feat: 为模型添加租户配额字段和字典表关联关系

fix: 修复部门树查询未应用租户隔离的问题

perf: 优化操作日志中间件的拦截逻辑和日志记录

style: 清理无用导入和重复代码

test: 添加基础测试文件

docs: 更新模型注释和字段说明
2025-11-26 00:30:31 +08:00

215 lines
7.8 KiB
Python

# -*- coding: utf-8 -*-
from fastapi import APIRouter, Body, Depends, Path, UploadFile
from fastapi.responses import JSONResponse, StreamingResponse
import urllib.parse
from app.common.response import StreamResponse, SuccessResponse
from app.utils.common_util import bytes2file_response
from app.core.base_params import PaginationQueryParam
from app.core.dependencies import AuthPermission
from app.core.router_class import OperationLogRoute
from app.core.base_schema import BatchSetAvailable
from app.core.logger import log
from app.api.v1.module_system.auth.schema import AuthSchema
from .service import CustomerService
from .schema import (
CustomerCreateSchema,
CustomerUpdateSchema,
CustomerQueryParam
)
CustomerRouter = APIRouter(route_class=OperationLogRoute, prefix="/customer", tags=["客户模块"])
@CustomerRouter.get("/detail/{id}", summary="获取客户详情", description="获取客户详情")
async def get_obj_detail_controller(
id: int = Path(..., description="客户ID"),
auth: AuthSchema = Depends(AuthPermission(["module_system:customer:query"]))
) -> JSONResponse:
"""
获取客户详情
参数:
- id (int): 客户ID
- auth (AuthSchema): 认证信息模型
返回:
- JSONResponse: 包含客户详情的JSON响应
"""
result_dict = await CustomerService.detail_service(id=id, auth=auth)
log.info(f"获取客户详情成功 {id}")
return SuccessResponse(data=result_dict, msg="获取客户详情成功")
@CustomerRouter.get("/list", summary="查询客户列表", description="查询客户列表")
async def get_obj_list_controller(
page: PaginationQueryParam = Depends(),
search: CustomerQueryParam = Depends(),
auth: AuthSchema = Depends(AuthPermission(["module_system:customer:query"]))
) -> JSONResponse:
"""
查询客户列表
参数:
- page (PaginationQueryParam): 分页查询参数
- search (CustomerQueryParam): 查询参数
- auth (AuthSchema): 认证信息模型
返回:
- JSONResponse: 包含客户列表分页信息的JSON响应
"""
# 使用数据库分页而不是应用层分页
result_dict = await CustomerService.page_service(
auth=auth,
page_no=page.page_no if page.page_no is not None else 1,
page_size=page.page_size if page.page_size is not None else 10,
search=search,
order_by=page.order_by
)
log.info("查询客户列表成功")
return SuccessResponse(data=result_dict, msg="查询客户列表成功")
@CustomerRouter.post("/create", summary="创建客户", description="创建客户")
async def create_obj_controller(
data: CustomerCreateSchema,
auth: AuthSchema = Depends(AuthPermission(["module_system:customer:create"]))
) -> JSONResponse:
"""
创建客户
参数:
- data (CustomerCreateSchema): 客户创建模型
- auth (AuthSchema): 认证信息模型
返回:
- JSONResponse: 包含创建客户详情的JSON响应
"""
result_dict = await CustomerService.create_service(auth=auth, data=data)
log.info(f"创建客户成功: {result_dict.get('name')}")
return SuccessResponse(data=result_dict, msg="创建客户成功")
@CustomerRouter.put("/update/{id}", summary="修改客户", description="修改客户")
async def update_obj_controller(
data: CustomerUpdateSchema,
id: int = Path(..., description="客户ID"),
auth: AuthSchema = Depends(AuthPermission(["module_system:customer:update"]))
) -> JSONResponse:
"""
修改客户
参数:
- data (CustomerUpdateSchema): 客户更新模型
- id (int): 客户ID
- auth (AuthSchema): 认证信息模型
返回:
- JSONResponse: 包含修改客户详情的JSON响应
"""
result_dict = await CustomerService.update_service(auth=auth, id=id, data=data)
log.info(f"修改客户成功: {result_dict.get('name')}")
return SuccessResponse(data=result_dict, msg="修改客户成功")
@CustomerRouter.delete("/delete", summary="删除客户", description="删除客户")
async def delete_obj_controller(
ids: list[int] = Body(..., description="ID列表"),
auth: AuthSchema = Depends(AuthPermission(["module_system:customer:delete"]))
) -> JSONResponse:
"""
删除客户
参数:
- ids (list[int]): 客户ID列表
- auth (AuthSchema): 认证信息模型
返回:
- JSONResponse: 包含删除客户详情的JSON响应
"""
await CustomerService.delete_service(auth=auth, ids=ids)
log.info(f"删除客户成功: {ids}")
return SuccessResponse(msg="删除客户成功")
@CustomerRouter.patch("/available/setting", summary="批量修改客户状态", description="批量修改客户状态")
async def batch_set_available_obj_controller(
data: BatchSetAvailable,
auth: AuthSchema = Depends(AuthPermission(["module_system:customer:patch"]))
) -> JSONResponse:
"""
批量修改客户状态
参数:
- data (BatchSetAvailable): 批量修改客户状态模型
- auth (AuthSchema): 认证信息模型
返回:
- JSONResponse: 包含批量修改客户状态详情的JSON响应
"""
await CustomerService.set_available_service(auth=auth, data=data)
log.info(f"批量修改客户状态成功: {data.ids}")
return SuccessResponse(msg="批量修改客户状态成功")
@CustomerRouter.post('/export', summary="导出客户", description="导出客户")
async def export_obj_list_controller(
search: CustomerQueryParam = Depends(),
auth: AuthSchema = Depends(AuthPermission(["module_system:customer:export"]))
) -> StreamingResponse:
"""
导出客户
参数:
- search (CustomerQueryParam): 查询参数
- auth (AuthSchema): 认证信息模型
返回:
- StreamingResponse: 包含客户列表的Excel文件流响应
"""
result_dict_list = await CustomerService.list_service(search=search, auth=auth)
export_result = await CustomerService.batch_export_service(obj_list=result_dict_list)
log.info('导出客户成功')
return StreamResponse(
data=bytes2file_response(export_result),
media_type='application/vnd.openxmlformats-officedocument.spreadsheetml.sheet',
headers={
'Content-Disposition': 'attachment; filename=example.xlsx'
}
)
@CustomerRouter.post('/import', summary="导入客户", description="导入客户")
async def import_obj_list_controller(
file: UploadFile,
auth: AuthSchema = Depends(AuthPermission(["module_system:tenant:import"]))
) -> JSONResponse:
"""
导入租户
参数:
- file (UploadFile): 导入的Excel文件
- auth (AuthSchema): 认证信息模型
返回:
- JSONResponse: 包含导入客户详情的JSON响应
"""
batch_import_result = await CustomerService.batch_import_service(file=file, auth=auth, update_support=True)
log.info(f"导入客户成功: {batch_import_result}")
return SuccessResponse(data=batch_import_result, msg="导入租户成功")
@CustomerRouter.post('/download/template', summary="获取客户导入模板", description="获取客户导入模板", dependencies=[Depends(AuthPermission(["module_system:customer:download"]))])
async def export_obj_template_controller() -> StreamingResponse:
"""
获取租户导入模板
返回:
- StreamingResponse: 包含租户导入模板的Excel文件流响应
"""
example_import_template_result = await CustomerService.import_template_download_service()
log.info('获取客户导入模板成功')
return StreamResponse(
data=bytes2file_response(example_import_template_result),
media_type='application/vnd.openxmlformats-officedocument.spreadsheetml.sheet',
headers={
'Content-Disposition': f'attachment; filename={urllib.parse.quote("客户导入模板.xlsx")}',
'Access-Control-Expose-Headers': 'Content-Disposition'
}
)