Browse Source

no message

FengChaoYu 3 weeks ago
parent
commit
c002e65bd1

+ 2 - 1
src/main/java/com/gree/mall/manager/logic/admin/AdminDeptLogic.java

@@ -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<>();