generated from dxfeng/secondev-chapanda-feishu
简历自动录入,待分配状态
This commit is contained in:
parent
5a816dc149
commit
16fe39b742
|
|
@ -173,7 +173,8 @@ public class ApplicantResumeServiceImpl extends Service implements ApplicantResu
|
|||
RecordSet rs = new RecordSet();
|
||||
try {
|
||||
int docId = createDocId(secCategory, imageFileId, user);
|
||||
rs.executeUpdate("update uf_jcl_yppc set ysjl=? where id = ?", docId, resumeId);
|
||||
// 更新原始简历信息,设置应聘状态未待分配
|
||||
rs.executeUpdate("update uf_jcl_yppc set ysjl=?,zt=? where id = ?", docId, 0, resumeId);
|
||||
|
||||
} catch (Exception e) {
|
||||
throw new RuntimeException(e);
|
||||
|
|
@ -276,6 +277,7 @@ public class ApplicantResumeServiceImpl extends Service implements ApplicantResu
|
|||
|
||||
/**
|
||||
* 原始简历imageFieldId生成docId
|
||||
*
|
||||
* @param secCategory
|
||||
* @param imageFieldId
|
||||
* @param user
|
||||
|
|
@ -331,7 +333,7 @@ public class ApplicantResumeServiceImpl extends Service implements ApplicantResu
|
|||
dm.setParentids("" + docId);
|
||||
dm.setUserid(user.getUID());
|
||||
DocCoder docCoder = new DocCoder();
|
||||
dm.setDocCode(docCoder.getDocCoder(""+secCategory));
|
||||
dm.setDocCode(docCoder.getDocCoder("" + secCategory));
|
||||
dm.setDocEditionId(dm.getNextEditionId(rs));
|
||||
dm.setDocEdition(1);
|
||||
dm.AddDocInfo();
|
||||
|
|
|
|||
Loading…
Reference in New Issue