generated from dxfeng/secondev-chapanda-feishu
增加ysdfp字段
This commit is contained in:
parent
b74f92b9ff
commit
fa56440d35
|
|
@ -238,6 +238,7 @@ public class ApplicantResumeServiceImpl extends Service implements ApplicantResu
|
|||
String zplc = Util.null2String(params.get("zplc"));
|
||||
String zpjd = Util.null2String(params.get("zpjd"));
|
||||
String dqypjd = Util.null2String(params.get("dqypjd"));
|
||||
String ysdfp = Util.null2String(params.get("ysdfp"));
|
||||
if (StringUtils.isBlank(ypzw)) {
|
||||
throw new CustomizeRunTimeException("应聘职位不可为空");
|
||||
}
|
||||
|
|
@ -250,7 +251,7 @@ public class ApplicantResumeServiceImpl extends Service implements ApplicantResu
|
|||
if (StringUtils.isBlank(dqypjd)) {
|
||||
throw new CustomizeRunTimeException("当前应聘阶段获取失败");
|
||||
}
|
||||
rs.executeUpdate("update uf_jcl_yppc set ypzw = ? , zplc = ? , zpjd = ? , dqypjd = ?, zt = 1 where id in(" + ids + ")", ypzw, zplc, zpjd, dqypjd);
|
||||
rs.executeUpdate("update uf_jcl_yppc set ysdfp = ?,ypzw = ? , zplc = ? , zpjd = ? , dqypjd = ?, zt = 1 where id in(" + ids + ")", ysdfp, ypzw, zplc, zpjd, dqypjd);
|
||||
for (String s : ids.split(",")) {
|
||||
StepMsgCommonInfo.sendMsg(s, Util.null2String(ypzw), Util.null2String(zplc), Util.null2String(zpjd), user);
|
||||
}
|
||||
|
|
@ -619,12 +620,12 @@ public class ApplicantResumeServiceImpl extends Service implements ApplicantResu
|
|||
|
||||
// 查询面试评价
|
||||
rs.executeQuery("select msg,jg from uf_jcl_mspjfk where msid = ?", msId);
|
||||
while(rs.next()){
|
||||
while (rs.next()) {
|
||||
interviewProcess.addInterviewDetail(rs.getString("msg"), rs.getString("jg"));
|
||||
}
|
||||
List<InterviewProcess.InterviewDetail> interviewDetails = interviewProcess.getInterviewDetails();
|
||||
if(CollectionUtils.isEmpty(interviewDetails)){
|
||||
if(StringUtils.isNotBlank(msg)){
|
||||
if (CollectionUtils.isEmpty(interviewDetails)) {
|
||||
if (StringUtils.isNotBlank(msg)) {
|
||||
String[] split = msg.split(",");
|
||||
for (String s : split) {
|
||||
interviewProcess.addInterviewDetail(s, jg);
|
||||
|
|
|
|||
Loading…
Reference in New Issue