|
@@ -5,6 +5,7 @@ import java.util.HashSet;
|
|
|
import java.util.List;
|
|
|
|
|
|
import cn.hutool.core.util.StrUtil;
|
|
|
+import com.ruoyi.common.core.domain.TreeSelect;
|
|
|
import com.ruoyi.common.utils.DateUtils;
|
|
|
import com.ruoyi.common.utils.SecurityUtils;
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
@@ -82,6 +83,51 @@ public class TbLocationServiceImpl implements ITbLocationService
|
|
|
return locations;
|
|
|
}
|
|
|
|
|
|
+ @Override
|
|
|
+ public List<TreeSelect> selectTreeSelect(Long id) {
|
|
|
+ ArrayList<TreeSelect> treeSelects = new ArrayList<>();
|
|
|
+ if (id != null) {
|
|
|
+ TbLocation location = selectTbLocationById(id);
|
|
|
+ TreeSelect treeSelect = new TreeSelect();
|
|
|
+ treeSelect.setId(location.getId());
|
|
|
+ treeSelect.setLabel(location.getName());
|
|
|
+ treeSelects.add(treeSelect);
|
|
|
+ } else {
|
|
|
+ TbLocation location = new TbLocation();
|
|
|
+ location.setParentId(0L);
|
|
|
+ List<TbLocation> locations = selectTbLocationList(location);
|
|
|
+ for (TbLocation tbLocation : locations) {
|
|
|
+ TreeSelect treeSelect = new TreeSelect();
|
|
|
+ treeSelect.setId(tbLocation.getId());
|
|
|
+ treeSelect.setLabel(tbLocation.getName());
|
|
|
+ treeSelects.add(treeSelect);
|
|
|
+ }
|
|
|
+ }
|
|
|
+ for (TreeSelect treeSelect : treeSelects) {
|
|
|
+ List<TreeSelect> treeSelectList = buildChildrenSelect(treeSelect);
|
|
|
+ treeSelect.setChildren(treeSelectList);
|
|
|
+ }
|
|
|
+ return treeSelects;
|
|
|
+ }
|
|
|
+
|
|
|
+ private List<TreeSelect> buildChildrenSelect(TreeSelect treeSelect) {
|
|
|
+ TbLocation sunLocation = new TbLocation();
|
|
|
+ sunLocation.setParentId(treeSelect.getId());
|
|
|
+ List<TbLocation> locations = selectTbLocationList(sunLocation);
|
|
|
+ ArrayList<TreeSelect> treeSelects = new ArrayList<>();
|
|
|
+ if (locations != null && !locations.isEmpty()) {
|
|
|
+ for (TbLocation tbLocation : locations) {
|
|
|
+ TreeSelect childrenTreeSelect = new TreeSelect();
|
|
|
+ childrenTreeSelect.setId(tbLocation.getId());
|
|
|
+ childrenTreeSelect.setLabel(tbLocation.getName());
|
|
|
+ List<TreeSelect> treeSelectList = buildChildrenSelect(childrenTreeSelect);
|
|
|
+ childrenTreeSelect.setChildren(treeSelectList);
|
|
|
+ treeSelects.add(childrenTreeSelect);
|
|
|
+ }
|
|
|
+ }
|
|
|
+ return treeSelects;
|
|
|
+ }
|
|
|
+
|
|
|
/**
|
|
|
* 新增所属位置
|
|
|
*
|