Commit 630e860b authored by chenhao's avatar chenhao

添加身份证号为空的时候的数据

parent 72471be8
...@@ -117,9 +117,9 @@ public class OrgUsrServiceImpl extends BaseService<OrgUsrDto, OrgUsr, OrgUsrMapp ...@@ -117,9 +117,9 @@ public class OrgUsrServiceImpl extends BaseService<OrgUsrDto, OrgUsr, OrgUsrMapp
@Value("${auth-key-org-user:org_user_info}") @Value("${auth-key-org-user:org_user_info}")
private String authKey; private String authKey;
@Autowired @Autowired
OrgUsrServiceImpl iOrgUsrService; OrgUsrServiceImpl iOrgUsrService;
public static List<OrgMenuDto> buildTreeParallel(List<OrgUsr> list) { public static List<OrgMenuDto> buildTreeParallel(List<OrgUsr> list) {
...@@ -444,8 +444,10 @@ public class OrgUsrServiceImpl extends BaseService<OrgUsrDto, OrgUsr, OrgUsrMapp ...@@ -444,8 +444,10 @@ public class OrgUsrServiceImpl extends BaseService<OrgUsrDto, OrgUsr, OrgUsrMapp
if (null != result1.getResult()) { if (null != result1.getResult()) {
t.put("amosOrgCode", result1.getResult().getRealName()); t.put("amosOrgCode", result1.getResult().getRealName());
} }
String chargePersonId = iOrgUsrService.getIdNumberByAmosId(t.get("amosOrgId").toString()); String chargePersonId = iOrgUsrService.getIdNumberByAmosId(t.get("amosOrgId").toString());
t.put("chargePersonId", chargePersonId); t.put("chargePersonId", chargePersonId);
} else {
t.put("chargePersonId", null);
} }
}); });
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment