1.学历返回
This commit is contained in:
parent
bad2f4acd7
commit
5aea977984
@ -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
|
||||
|
||||
@ -523,7 +526,10 @@ async def condition(
|
||||
str_s = f"{k} = {v}"
|
||||
strs.append(str_s)
|
||||
else:
|
||||
str_s = f"{k} = '{v}'"
|
||||
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)
|
||||
where = ' and '.join(strs)
|
||||
# 当前日期
|
||||
|
@ -336,4 +336,8 @@ api:/api/v1/itr/send_interviewee
|
||||
uid: str # 求职者uid
|
||||
push: List[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