generated from dxfeng/secondev-chapanda-feishu
MODIFY-面试,勾选了需要反馈,则需要将是否参加置空,且需要可以再次反馈
This commit is contained in:
parent
ab7f160e95
commit
9cf81d8cf2
|
|
@ -44,7 +44,7 @@ public class InterviewMsgUtil {
|
|||
RecordSet rs = new RecordSet();
|
||||
rs.executeQuery("select modeuuid from uf_jcl_ms where id = ? ", billId);
|
||||
String uuid = "";
|
||||
if (rs.next()) {
|
||||
if (rs.next()) {
|
||||
uuid = rs.getString("modeuuid");
|
||||
}
|
||||
String confirmUrl = RecruitConstant.INTERVIEW_FEEDBACK_URL + "?uuid=" + uuid;
|
||||
|
|
@ -54,6 +54,8 @@ public class InterviewMsgUtil {
|
|||
// 邮件内容拼接确认信息
|
||||
emailContent = msgContent + emailContent;
|
||||
RecruitMessageUtils.sendEmail(yx, emailTitle, emailContent);
|
||||
// 勾选了需要反馈,则需要将是否参加置空,且需要可以再次反馈
|
||||
rs.executeUpdate("update uf_jcl_ms set sfcj = null,zt = null where id = ? ", billId);
|
||||
} else {
|
||||
RecruitMessageUtils.sendEmail(yx, emailTitle, msgContent);
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue