Commit 3f40babe by hongzhong

历史bug修复,增加非空判断

parent 96d3c777
...@@ -2744,7 +2744,7 @@ public class PractitionerServiceImpl implements com.yd.api.practitioner.service. ...@@ -2744,7 +2744,7 @@ public class PractitionerServiceImpl implements com.yd.api.practitioner.service.
List<String> leaveOfficeList = aclPractitionerDALService.findLeaveOfficeByPractitionerId(practitionerId); List<String> leaveOfficeList = aclPractitionerDALService.findLeaveOfficeByPractitionerId(practitionerId);
for (String m : leaveOfficeList) { for (String m : leaveOfficeList) {
SubordinateSystemMemberInfo subordinateSystemMemberInfo = memberInfoMap.get(m); SubordinateSystemMemberInfo subordinateSystemMemberInfo = memberInfoMap.get(m);
if (CommonUtil.isNullOrZero(subordinateSystemMemberInfo.getCount())){ if (null != subordinateSystemMemberInfo && CommonUtil.isNullOrZero(subordinateSystemMemberInfo.getCount())){
memberInfoMap.remove(m); memberInfoMap.remove(m);
} }
} }
......
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