data_verification.py 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  1. import uvicorn
  2. import warnings
  3. from fastapi import FastAPI, UploadFile, File
  4. from openpyxl import load_workbook
  5. from openpyxl.utils.cell import coordinate_from_string
  6. from openpyxl.comments import Comment
  7. from openpyxl.styles import PatternFill
  8. from fastapi.middleware.cors import CORSMiddleware
  9. warnings.filterwarnings("ignore")
  10. app = FastAPI()
  11. app.add_middleware(
  12. CORSMiddleware,
  13. allow_origins=["*"],
  14. allow_credentials=True,
  15. allow_methods=["*"],
  16. allow_headers=["*"],
  17. )
  18. @app.post("/uploadfile")
  19. async def create_upload_file(file: UploadFile = File(...)):
  20. # print(file.filename)
  21. contents = await file.read()
  22. savename = "/data/download/" + file.filename
  23. # savename = "uploadfile/" + file.filename
  24. with open(savename, "wb") as f:
  25. f.write(contents)
  26. # 读取excel表
  27. workbook = load_workbook(savename)
  28. # 获取指定的sheet
  29. sheet_names = workbook.sheetnames
  30. if "脱贫户信息查询" in sheet_names:
  31. sheet = workbook["脱贫户信息查询"]
  32. title_row_num = 0
  33. # 读取前5行,正常应该有字段名了
  34. row_range = sheet[1:5]
  35. for r in row_range:
  36. for c in r:
  37. if "户主编号" == c.value:
  38. title_row_num = c.row
  39. # 获取字段名对应的列
  40. title_dict = {}
  41. title_rows = sheet[title_row_num]
  42. # 遍历字段名所在行的所有单元格
  43. for title_cell in title_rows:
  44. x, y = coordinate_from_string(title_cell.coordinate)
  45. title_dict[title_cell.value] = x
  46. # print(title_dict)
  47. # 开始读取表格内容
  48. # print(sheet.max_row)
  49. read_data(sheet, title_row_num + 1, sheet.max_row, title_dict)
  50. # 保存文档
  51. workbook.save(savename)
  52. return {"code": 200, "msg": "分析完成,请点击下载查看分析结果", "fileName": file.filename}
  53. else:
  54. print("读取不到指定的sheet页")
  55. return {"code": 500, "msg": "读取不到指定的sheet页--脱贫户信息查询"}
  56. def read_data(ws, start_row, end_row, title_dict):
  57. # 监测对象致(返)贫风险非最新设计的风险类型
  58. for i in range(start_row, end_row):
  59. check_poverty_causes(ws, i, title_dict)
  60. check_identitycard_length(ws, i, title_dict)
  61. def check_poverty_causes(ws, row_num, title_dict):
  62. poverty_causes = ws[f"{title_dict['主要致贫原因']}{row_num}"].value
  63. # 致贫原因列表
  64. imageTypeList = ["因病", "因学", "因残", "因自然灾害", "因意外事故", "因产业项目失败", "因务工就业不稳", "缺劳动力", "因房", "因水", "其他(填写备注)"]
  65. if poverty_causes not in imageTypeList:
  66. ws[f"{title_dict['主要致贫原因']}{row_num}"].comment = Comment(
  67. text="21.监测对象致(返)贫风险非最新设计的风险类型", author="system"
  68. )
  69. yellow_fill = PatternFill(patternType="solid", fgColor="FFFF00")
  70. ws[f"{title_dict['主要致贫原因']}{row_num}"].fill = yellow_fill
  71. def check_identitycard_length(ws, row_num, title_dict):
  72. identitycard = ws[f"{title_dict['户主证件号码']}{row_num}"].value
  73. if len(identitycard) not in [15, 18, 20, 22]:
  74. ws[f"{title_dict['户主证件号码']}{row_num}"].comment = Comment(
  75. text="31.监测对象家庭成员证件号码位数异常(证件号码非15、18、20、22位)", author="system"
  76. )
  77. yellow_fill = PatternFill(patternType="solid", fgColor="FFFF00")
  78. ws[f"{title_dict['户主证件号码']}{row_num}"].fill = yellow_fill
  79. if __name__ == "__main__":
  80. uvicorn.run("data_verification:app", host="localhost", port=8000, reload=True)