|
@@ -83,16 +83,8 @@ public class SettleRelaConfigLogic {
|
|
|
return bean;
|
|
|
}
|
|
|
|
|
|
- public List<AdminWebsit> querySubWebsit(String websitId, String websitName) {
|
|
|
+ public Page<AdminWebsit> querySubWebsit(String websitId, String websitName, Integer pageNum, Integer pageSize) {
|
|
|
AdminUserCom adminUser = commonLogic.getAdminUser();
|
|
|
- final List<AdminWebsit> websitList = adminWebsitService.lambdaQuery()
|
|
|
- .eq(AdminWebsit::getCompanyWechatId, adminUser.getCompanyWechatId())
|
|
|
- .eq(AdminWebsit::getLevel, 2)
|
|
|
- .like(StringUtils.isNotBlank(websitId), AdminWebsit::getWebsitId, websitId)
|
|
|
- .like(StringUtils.isNotBlank(websitName), AdminWebsit::getName, websitName)
|
|
|
- .orderByAsc(AdminWebsit::getBelongCompanyCode)
|
|
|
- .orderByAsc(AdminWebsit::getWebsitId)
|
|
|
- .list();
|
|
|
|
|
|
final List<WebsitFollowConfigItem> items = websitFollowConfigItemService.lambdaQuery()
|
|
|
.eq(WebsitFollowConfigItem::getCompanyWechatId, adminUser.getCompanyWechatId())
|
|
@@ -100,14 +92,17 @@ public class SettleRelaConfigLogic {
|
|
|
|
|
|
final List<String> useList = items.stream().map(WebsitFollowConfigItem::getSubWebsitId).collect(Collectors.toList());
|
|
|
|
|
|
- List<AdminWebsit> list = new ArrayList<>();
|
|
|
- for (AdminWebsit websit : websitList) {
|
|
|
- if (!useList.contains(websit.getWebsitId())) {
|
|
|
- list.add(websit);
|
|
|
- }
|
|
|
- }
|
|
|
+ final Page<AdminWebsit> websitList = adminWebsitService.lambdaQuery()
|
|
|
+ .eq(AdminWebsit::getCompanyWechatId, adminUser.getCompanyWechatId())
|
|
|
+ .eq(AdminWebsit::getLevel, 2)
|
|
|
+ .like(StringUtils.isNotBlank(websitId), AdminWebsit::getWebsitId, websitId)
|
|
|
+ .like(StringUtils.isNotBlank(websitName), AdminWebsit::getName, websitName)
|
|
|
+ .notIn(CollectionUtil.isNotEmpty(useList), AdminWebsit::getWebsitId, useList)
|
|
|
+ .orderByAsc(AdminWebsit::getBelongCompanyCode)
|
|
|
+ .orderByAsc(AdminWebsit::getWebsitId)
|
|
|
+ .page(new Page<>(pageNum, pageSize));
|
|
|
|
|
|
- return list;
|
|
|
+ return websitList;
|
|
|
}
|
|
|
|
|
|
@Transactional
|