1.学历返回

This commit is contained in:
李伟 2022-09-13 19:05:51 +08:00
parent bad2f4acd7
commit 5aea977984
2 changed files with 12 additions and 2 deletions

View File

@ -126,6 +126,9 @@ def chkData(data):
else:
remembrance = []
res1['remembrance'] = remembrance
if 'education' in i:
education=i['education']
res1['education'] = education_dict[education]
res_data.append(res1)
return res_data
@ -522,6 +525,9 @@ async def condition(
if 'int' in str(type(v)):
str_s = f"{k} = {v}"
strs.append(str_s)
else:
if k in ['hr_id','interview_id'] and v != '':
str_s=f"{k} like '%{v}%'"
else:
str_s = f"{k} = '{v}'"
strs.append(str_s)

View File

@ -337,3 +337,7 @@ api:/api/v1/itr/send_interviewee
push: List[str] # 推送
content: str # 备注内容
bcc: List[str] # 抄送
#头像上传到华为云
api:/api/v1/itr/head_to_hw
请求方式post