新增监管端和机构端首页数据
parent
6c04b3056c
commit
9c5d4f2c54
|
|
@ -425,6 +425,10 @@ public class ComplianceCheckUtil {
|
||||||
personCapabilityMap.computeIfAbsent(pc.getPersonnelId(), k -> new HashSet<>())
|
personCapabilityMap.computeIfAbsent(pc.getPersonnelId(), k -> new HashSet<>())
|
||||||
.add(pc.getProfessionalCapabilityCode());
|
.add(pc.getProfessionalCapabilityCode());
|
||||||
IndustryProfessionalPersonCo co = personnelMap.get(pc.getPersonnelId());
|
IndustryProfessionalPersonCo co = personnelMap.get(pc.getPersonnelId());
|
||||||
|
if (co == null || co.getProfessionalCapabilityCode() == null) {
|
||||||
|
// 该人员无学科专业能力配置(如 basic_discipline_major 关联缺失),仅以证书专业能力参与校验
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
// 人员学科能力
|
// 人员学科能力
|
||||||
Set<String> pdcSet = Arrays.stream(co.getProfessionalCapabilityCode().split(CommonUtil.COMMA))
|
Set<String> pdcSet = Arrays.stream(co.getProfessionalCapabilityCode().split(CommonUtil.COMMA))
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue