|
@@ -101,7 +101,9 @@ public class AdminController implements AdminAPI {
|
|
|
List<String> checkOrg= Arrays.asList(record.getCheckOrg().split(","));
|
|
List<String> checkOrg= Arrays.asList(record.getCheckOrg().split(","));
|
|
|
for(int i=0;i<checkOrg.size();i++){
|
|
for(int i=0;i<checkOrg.size();i++){
|
|
|
Organization organization=organizationService.getById(checkOrg.get(i));
|
|
Organization organization=organizationService.getById(checkOrg.get(i));
|
|
|
- checkOrgList.add(organization);
|
|
|
|
|
|
|
+ if (organization!=null){
|
|
|
|
|
+ checkOrgList.add(organization);
|
|
|
|
|
+ }
|
|
|
}
|
|
}
|
|
|
adminVo.setCheckOrg(checkOrgList);
|
|
adminVo.setCheckOrg(checkOrgList);
|
|
|
}
|
|
}
|