MODIFY-面试,勾选了需要反馈,则需要将是否参加置空,且需要可以再次反馈

This commit is contained in:
dxfeng 2024-07-15 13:43:02 +08:00
parent ab7f160e95
commit 9cf81d8cf2
1 changed files with 3 additions and 1 deletions

View File

@ -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);
}