|
|
@ -246,7 +246,10 @@ public class SysStaffOrgService extends MybatisBaseService<SysStaffOrgMapper, Sy |
|
|
|
|
|
|
|
public String getOrgByOrgSid(String orgSid) { |
|
|
|
SysOrganization sysOrganization = sysOrganizationService.fetchBySid(orgSid); |
|
|
|
if ("0".equals(sysOrganization.getPsid()) || sysOrganization == null) { |
|
|
|
if(sysOrganization == null){ |
|
|
|
return "0"; |
|
|
|
} |
|
|
|
if ("0".equals(sysOrganization.getPsid())) { |
|
|
|
return "0"; |
|
|
|
} |
|
|
|
if (sysOrganization.getIsDept() == 0) { |
|
|
|