|
@ -1,6 +1,7 @@ |
|
|
package com.epmet.service.impl; |
|
|
package com.epmet.service.impl; |
|
|
|
|
|
|
|
|
import com.epmet.commons.tools.constant.NumConstant; |
|
|
import com.epmet.commons.tools.constant.NumConstant; |
|
|
|
|
|
import com.epmet.commons.tools.constant.StrConstant; |
|
|
import com.epmet.commons.tools.dto.result.CustomerStaffInfoCacheResult; |
|
|
import com.epmet.commons.tools.dto.result.CustomerStaffInfoCacheResult; |
|
|
import com.epmet.commons.tools.exception.EpmetErrorCode; |
|
|
import com.epmet.commons.tools.exception.EpmetErrorCode; |
|
|
import com.epmet.commons.tools.exception.RenException; |
|
|
import com.epmet.commons.tools.exception.RenException; |
|
@ -229,6 +230,15 @@ public class StaffServiceImpl implements StaffService { |
|
|
//用户所属机关名称
|
|
|
//用户所属机关名称
|
|
|
result.setMyAgencyName(customerAgencyDTO.getOrganizationName()); |
|
|
result.setMyAgencyName(customerAgencyDTO.getOrganizationName()); |
|
|
} |
|
|
} |
|
|
|
|
|
//2021.08.27 zhaoqf start
|
|
|
|
|
|
//获取根组织
|
|
|
|
|
|
CustomerAgencyDTO agency = customerAgencyService.get(customerStaffAgency.getAgencyId()); |
|
|
|
|
|
if (StringUtils.isNotBlank(agency.getPids())) { |
|
|
|
|
|
result.setRootAgencyId(agency.getPids().split(StrConstant.COLON)[0]); |
|
|
|
|
|
} else { |
|
|
|
|
|
result.setRootAgencyId(customerStaffAgency.getAgencyId()); |
|
|
|
|
|
} |
|
|
|
|
|
//2021.08.27 zhaoqf end
|
|
|
return result; |
|
|
return result; |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|