Commit e22a3403 by jianan

20210714:&&改||

parent 33c290d2
......@@ -446,7 +446,7 @@ public class PractitionerBasicInfoServiceImpl implements PractitionerBasicInfoSe
String mobileNo = aclPractitionerDALService.findMobileNoByPractitionerId(practitionerId);
Staff staff = n22StaffService.queryN22StaffByMobileNo(mobileNo);
if (staff == null && StringUtils.isBlank(staff.getAgent_id())) {
if (staff == null || StringUtils.isBlank(staff.getAgent_id())) {
throw new Exception("未查询到N22LoginName");
}
......
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