1.学历返回
This commit is contained in:
parent
bad2f4acd7
commit
5aea977984
@ -126,6 +126,9 @@ def chkData(data):
|
|||||||
else:
|
else:
|
||||||
remembrance = []
|
remembrance = []
|
||||||
res1['remembrance'] = remembrance
|
res1['remembrance'] = remembrance
|
||||||
|
if 'education' in i:
|
||||||
|
education=i['education']
|
||||||
|
res1['education'] = education_dict[education]
|
||||||
res_data.append(res1)
|
res_data.append(res1)
|
||||||
return res_data
|
return res_data
|
||||||
|
|
||||||
@ -522,6 +525,9 @@ async def condition(
|
|||||||
if 'int' in str(type(v)):
|
if 'int' in str(type(v)):
|
||||||
str_s = f"{k} = {v}"
|
str_s = f"{k} = {v}"
|
||||||
strs.append(str_s)
|
strs.append(str_s)
|
||||||
|
else:
|
||||||
|
if k in ['hr_id','interview_id'] and v != '':
|
||||||
|
str_s=f"{k} like '%{v}%'"
|
||||||
else:
|
else:
|
||||||
str_s = f"{k} = '{v}'"
|
str_s = f"{k} = '{v}'"
|
||||||
strs.append(str_s)
|
strs.append(str_s)
|
||||||
|
@ -337,3 +337,7 @@ api:/api/v1/itr/send_interviewee
|
|||||||
push: List[str] # 推送
|
push: List[str] # 推送
|
||||||
content: str # 备注内容
|
content: str # 备注内容
|
||||||
bcc: List[str] # 抄送
|
bcc: List[str] # 抄送
|
||||||
|
|
||||||
|
#头像上传到华为云
|
||||||
|
api:/api/v1/itr/head_to_hw
|
||||||
|
请求方式:post
|
||||||
|
Loading…
Reference in New Issue
Block a user