|
@@ -1,6 +1,7 @@
|
|
|
package com.ims.eval.service.impl;
|
|
|
|
|
|
import cn.hutool.core.collection.CollectionUtil;
|
|
|
+import com.baomidou.mybatisplus.core.metadata.IPage;
|
|
|
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
|
|
|
import com.ims.eval.entity.Indicator;
|
|
|
import com.ims.eval.entity.MultipleBrand;
|
|
@@ -11,7 +12,6 @@ import org.springframework.stereotype.Service;
|
|
|
|
|
|
import java.util.ArrayList;
|
|
|
import java.util.List;
|
|
|
-import java.util.stream.Collectors;
|
|
|
|
|
|
/**
|
|
|
* <p>
|
|
@@ -25,11 +25,14 @@ import java.util.stream.Collectors;
|
|
|
public class MultipleBrandServiceImpl extends ServiceImpl<MultipleBrandMapper, MultipleBrand> implements IMultipleBrandService {
|
|
|
|
|
|
@Override
|
|
|
- public List<MultipleBrand> getMultipleBranTree(Integer pageNum, Integer pageSize,String id, String parentId,String binSection,String checkCycle,String year,String month) {
|
|
|
+ public IPage<MultipleBrand> getMultipleBranTree(Integer pageNum, Integer pageSize,String id, String parentId,String binSection,String checkCycle,String year,String month) {
|
|
|
Page<Indicator> page = new Page<>(pageNum, pageSize);
|
|
|
- List<MultipleBrand> list = baseMapper.selectMultipleBranTree(page,id,parentId,binSection,checkCycle,year,month);
|
|
|
- List<MultipleBrand> tree = convert(list);
|
|
|
- return tree;
|
|
|
+ IPage<MultipleBrand> list = baseMapper.selectMultipleBranTree(page,id,"0",binSection,checkCycle,year,month);
|
|
|
+ List<MultipleBrand> list2 = baseMapper.selectMultipleBranList(id,parentId,binSection,checkCycle,year,month);
|
|
|
+
|
|
|
+ List<MultipleBrand> tree = convert(list.getRecords(),list2);
|
|
|
+ list.setRecords(tree);
|
|
|
+ return list;
|
|
|
}
|
|
|
|
|
|
@Override
|
|
@@ -48,19 +51,11 @@ public class MultipleBrandServiceImpl extends ServiceImpl<MultipleBrandMapper, M
|
|
|
* @param brands 源数据所有数据
|
|
|
* @return
|
|
|
*/
|
|
|
- public List<MultipleBrand> convert(List<MultipleBrand> brands) {
|
|
|
+ public List<MultipleBrand> convert(List<MultipleBrand> result,List<MultipleBrand> brands) {
|
|
|
if (CollectionUtil.isEmpty(brands)) {
|
|
|
return new ArrayList<>();
|
|
|
}
|
|
|
- List<MultipleBrand> result = new ArrayList<>();
|
|
|
- List<String> idList = brands.stream().map(MultipleBrand::getOrganizationId).collect(Collectors.toList());
|
|
|
- // 设置最外层顶级
|
|
|
- for (MultipleBrand brandsVO : brands) {
|
|
|
- // 判断所有列表里面父级未在集合中放置到一级
|
|
|
- if (!idList.contains(brandsVO.getParentId())) {
|
|
|
- result.add(brandsVO);
|
|
|
- }
|
|
|
- }
|
|
|
+
|
|
|
for (MultipleBrand brandsVO : result) {
|
|
|
// 循环一级之后子级
|
|
|
getChildren(brands, brandsVO);
|