根据职等职级字段,补充人员信息

pull/102/head
dxfeng 3 years ago
parent ebe5003df9
commit 434dbacb64

@ -51,6 +51,10 @@ public class JclOrgServiceImpl extends Service implements JclOrgService {
if (rs.next()) {
zdzjFieldValue = rs.getString(zdzjFieldName);
}
// 职等职级为空时不处理
if (StringUtils.isBlank(zdzjFieldValue)) {
return;
}
sql = "select xlid, zjid, zdid from v_jcl_zdzjs where fid='" + zdzjFieldValue.substring(zdzjFieldValue.indexOf("_") + 1) + "'";
rs.execute(sql);
if (rs.next()) {

Loading…
Cancel
Save