generated from dxfeng/secondev-chapanda-feishu
BUG 修复
This commit is contained in:
parent
91ededc25a
commit
cdbcbe8856
|
|
@ -3,6 +3,7 @@ package com.engine.recruit.conn;
|
|||
import com.engine.recruit.enums.ApplicationStatusEnum;
|
||||
import org.apache.commons.collections.CollectionUtils;
|
||||
import org.apache.commons.lang3.StringUtils;
|
||||
import weaver.common.DateUtil;
|
||||
import weaver.conn.RecordSet;
|
||||
import weaver.general.BaseBean;
|
||||
import weaver.general.Util;
|
||||
|
|
@ -253,6 +254,8 @@ public class CheckRepeatResume {
|
|||
*/
|
||||
private int updateSourceResume(Map<String, Object> param, Map<String, Object> sourceResume) {
|
||||
replaceNullValues(param, sourceResume);
|
||||
// 更新投递时间为最新的 by zsy 20240704 待分配的投递时间要根据最新的去更新
|
||||
sourceResume.put("tdsj", DateUtil.getDateTime());
|
||||
// 处理操作人员、操作时间
|
||||
RecruitRecordSet.buildModeUpdateFields(sourceResume, 1);
|
||||
RecruitRecordSet.updateDataById(sourceResume, "uf_jcl_yppc");
|
||||
|
|
|
|||
|
|
@ -189,7 +189,7 @@ public class ResumeRecognitionServiceImpl extends Service implements ResumeRecog
|
|||
} else if("男".equals(xb)){
|
||||
dataMap.put("xb", 0);
|
||||
}else{
|
||||
dataMap.put("xb", "");
|
||||
dataMap.put("xb", null);
|
||||
}
|
||||
// 体重(KG)
|
||||
String tz = personalInformation.getString("体重");
|
||||
|
|
|
|||
Loading…
Reference in New Issue