|
@@ -111,8 +111,9 @@ public class AdminDeptLogic {
|
|
|
IPage<AdminDeptWebsitVO> adminDeptWebsitVOIPage = adminMapper.list(page, zfireParam);
|
|
|
if (isAll && CollectionUtil.isEmpty(adminDeptWebsitVOIPage.getRecords())) {
|
|
|
final AdminDept adminDept = adminDeptService.getById(zfireParam.getCurDeptId());
|
|
|
+ String companyId = Objects.nonNull(adminDept) ? adminDept.getCompanyWechatId() : null;
|
|
|
final List<AdminWebsit> websitList = adminWebsitService.lambdaQuery()
|
|
|
- .eq(Objects.nonNull(adminDept), AdminWebsit::getCompanyWechatId, adminDept.getCompanyWechatId())
|
|
|
+ .eq(StringUtils.isNotBlank(companyId), AdminWebsit::getCompanyWechatId, companyId)
|
|
|
.list();
|
|
|
if (CollectionUtil.isNotEmpty(websitList)) {
|
|
|
List<AdminDeptWebsitVO> voList = new ArrayList<>();
|