修改面试通过时间为本系统接收回调时间

This commit is contained in:
feng.li
2023-07-25 18:51:20 +08:00
parent 4d8c04b14b
commit 94414fc675

View File

@@ -266,7 +266,8 @@ public class FlowServiceImpl implements FlowService {
throw new ServiceException(ErrorCodeEnum.INTENT_INFO_NOT_EXIST); throw new ServiceException(ErrorCodeEnum.INTENT_INFO_NOT_EXIST);
} }
// TODO pass_reason 暂无 // TODO pass_reason 暂无
Date passDate = new Date(request.getModifiedTime()); //将通过时间修改为本系统处理回调的时间,不以 request 的 modifiedTime 为准(有误)
Date passDate = new Date();
//3. 生成通过函并修改数据库相关信息 //3. 生成通过函并修改数据库相关信息
//TODO 问题:如果因为 pdf 生成失败或者其他原因导致异常,但是由于 MDM 只是做回调,不对回调是否成功负责,会导致流程信息缺失 //TODO 问题:如果因为 pdf 生成失败或者其他原因导致异常,但是由于 MDM 只是做回调,不对回调是否成功负责,会导致流程信息缺失
genPassLetterAndUpdateDB(partnerName, verifyCity, passDate, interviewId); genPassLetterAndUpdateDB(partnerName, verifyCity, passDate, interviewId);