|
@@ -17,28 +17,31 @@ package me.zhengjie.modules.dm.foodCate.service.impl;
|
|
|
|
|
|
import cn.hutool.core.lang.Snowflake;
|
|
|
import cn.hutool.core.util.IdUtil;
|
|
|
+import cn.hutool.core.util.ObjectUtil;
|
|
|
import lombok.RequiredArgsConstructor;
|
|
|
+import me.zhengjie.exception.BadRequestException;
|
|
|
import me.zhengjie.modules.dm.foodCate.domain.DmFoodCate;
|
|
|
import me.zhengjie.modules.dm.foodCate.repository.DmFoodCateRepository;
|
|
|
import me.zhengjie.modules.dm.foodCate.service.DmFoodCateService;
|
|
|
import me.zhengjie.modules.dm.foodCate.service.dto.DmFoodCateDto;
|
|
|
import me.zhengjie.modules.dm.foodCate.service.dto.DmFoodCateQueryCriteria;
|
|
|
import me.zhengjie.modules.dm.foodCate.service.mapstruct.DmFoodCateMapper;
|
|
|
-import me.zhengjie.utils.FileUtil;
|
|
|
-import me.zhengjie.utils.PageUtil;
|
|
|
-import me.zhengjie.utils.QueryHelp;
|
|
|
-import me.zhengjie.utils.ValidationUtil;
|
|
|
+import me.zhengjie.modules.system.domain.Menu;
|
|
|
+import me.zhengjie.modules.system.domain.Role;
|
|
|
+import me.zhengjie.modules.system.domain.User;
|
|
|
+import me.zhengjie.modules.system.service.dto.MenuDto;
|
|
|
+import me.zhengjie.utils.*;
|
|
|
import org.springframework.data.domain.Page;
|
|
|
import org.springframework.data.domain.Pageable;
|
|
|
+import org.springframework.data.domain.Sort;
|
|
|
import org.springframework.stereotype.Service;
|
|
|
import org.springframework.transaction.annotation.Transactional;
|
|
|
|
|
|
import javax.servlet.http.HttpServletResponse;
|
|
|
import java.io.IOException;
|
|
|
-import java.util.ArrayList;
|
|
|
-import java.util.LinkedHashMap;
|
|
|
-import java.util.List;
|
|
|
-import java.util.Map;
|
|
|
+import java.lang.reflect.Field;
|
|
|
+import java.util.*;
|
|
|
+import java.util.stream.Collectors;
|
|
|
|
|
|
/**
|
|
|
* @website https://el-admin.vip
|
|
@@ -50,50 +53,163 @@ import java.util.Map;
|
|
|
@RequiredArgsConstructor
|
|
|
public class DmFoodCateServiceImpl implements DmFoodCateService {
|
|
|
|
|
|
- private final DmFoodCateRepository dmFoodRepository;
|
|
|
- private final DmFoodCateMapper dmFoodMapper;
|
|
|
+ private final DmFoodCateRepository dmFoodCateRepository;
|
|
|
+ private final DmFoodCateMapper dmFoodCateMapper;
|
|
|
|
|
|
@Override
|
|
|
public Map<String,Object> queryAll(DmFoodCateQueryCriteria criteria, Pageable pageable){
|
|
|
- Page<DmFoodCate> page = dmFoodRepository.findAll((root, criteriaQuery, criteriaBuilder) -> QueryHelp.getPredicate(root,criteria,criteriaBuilder),pageable);
|
|
|
- return PageUtil.toPage(page.map(dmFoodMapper::toDto));
|
|
|
+ Page<DmFoodCate> page = dmFoodCateRepository.findAll((root, criteriaQuery, criteriaBuilder) -> QueryHelp.getPredicate(root,criteria,criteriaBuilder),pageable);
|
|
|
+ return PageUtil.toPage(page.map(dmFoodCateMapper::toDto));
|
|
|
+ }
|
|
|
+
|
|
|
+ @Override
|
|
|
+ public Map<String,Object> queryAll(DmFoodCateQueryCriteria criteria, Boolean isQuery, Pageable pageable) throws Exception {
|
|
|
+// Sort sort = new Sort(Sort.Direction.ASC, "dmFoodCateSort");
|
|
|
+ if(isQuery){
|
|
|
+ criteria.setPidIsNull(true);
|
|
|
+ List<Field> fields = QueryHelp.getAllFields(criteria.getClass(), new ArrayList<>());
|
|
|
+ for (Field field : fields) {
|
|
|
+ //设置对象的访问权限,保证对private的属性的访问
|
|
|
+ field.setAccessible(true);
|
|
|
+ Object val = field.get(criteria);
|
|
|
+ if("pidIsNull".equals(field.getName())){
|
|
|
+ continue;
|
|
|
+ }
|
|
|
+ if (ObjectUtil.isNotNull(val)) {
|
|
|
+ criteria.setPidIsNull(null);
|
|
|
+ break;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ Page<DmFoodCate> page = dmFoodCateRepository.findAll((root, criteriaQuery, criteriaBuilder) -> QueryHelp.getPredicate(root,criteria,criteriaBuilder),pageable);
|
|
|
+ return PageUtil.toPage(page.map(dmFoodCateMapper::toDto));
|
|
|
}
|
|
|
|
|
|
@Override
|
|
|
public List<DmFoodCateDto> queryAll(DmFoodCateQueryCriteria criteria){
|
|
|
- return dmFoodMapper.toDto(dmFoodRepository.findAll((root, criteriaQuery, criteriaBuilder) -> QueryHelp.getPredicate(root,criteria,criteriaBuilder)));
|
|
|
+ return dmFoodCateMapper.toDto(dmFoodCateRepository.findAll((root, criteriaQuery, criteriaBuilder) -> QueryHelp.getPredicate(root,criteria,criteriaBuilder)));
|
|
|
}
|
|
|
|
|
|
@Override
|
|
|
@Transactional
|
|
|
public DmFoodCateDto findById(Integer id) {
|
|
|
- DmFoodCate dmFood = dmFoodRepository.findById(id).orElseGet(DmFoodCate::new);
|
|
|
+ DmFoodCate dmFood = dmFoodCateRepository.findById(id).orElseGet(DmFoodCate::new);
|
|
|
ValidationUtil.isNull(dmFood.getId(),"DmFood","id",id);
|
|
|
- return dmFoodMapper.toDto(dmFood);
|
|
|
+ return dmFoodCateMapper.toDto(dmFood);
|
|
|
+ }
|
|
|
+
|
|
|
+ @Override
|
|
|
+ public List<DmFoodCateDto> getSuperior(DmFoodCateDto dto, List<DmFoodCate> objects) {
|
|
|
+ if(dto.getPid() == null){
|
|
|
+ objects.addAll(dmFoodCateRepository.findByPidIsNull());
|
|
|
+ return dmFoodCateMapper.toDto(objects);
|
|
|
+ }
|
|
|
+ objects.addAll(dmFoodCateRepository.findByPid(dto.getPid()));
|
|
|
+ return getSuperior(findById(dto.getPid()), objects);
|
|
|
+ }
|
|
|
+
|
|
|
+ @Override
|
|
|
+ public List<DmFoodCateDto> buildTree(List<DmFoodCateDto> menuDtos) {
|
|
|
+ List<DmFoodCateDto> trees = new ArrayList<>();
|
|
|
+ Set<Integer> ids = new HashSet<>();
|
|
|
+ for (DmFoodCateDto menuDTO : menuDtos) {
|
|
|
+ if (menuDTO.getPid() == null) {
|
|
|
+ trees.add(menuDTO);
|
|
|
+ }
|
|
|
+ for (DmFoodCateDto it : menuDtos) {
|
|
|
+ if (menuDTO.getId().equals(it.getPid())) {
|
|
|
+ if (menuDTO.getChildren() == null) {
|
|
|
+ menuDTO.setChildren(new ArrayList<>());
|
|
|
+ }
|
|
|
+ menuDTO.getChildren().add(it);
|
|
|
+ ids.add(it.getId());
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ if(trees.size() == 0){
|
|
|
+ trees = menuDtos.stream().filter(s -> !ids.contains(s.getId())).collect(Collectors.toList());
|
|
|
+ }
|
|
|
+ return trees;
|
|
|
}
|
|
|
|
|
|
@Override
|
|
|
@Transactional(rollbackFor = Exception.class)
|
|
|
- public DmFoodCateDto create(DmFoodCate resources) {
|
|
|
+ public void create(DmFoodCate resources) {
|
|
|
// Snowflake snowflake = IdUtil.createSnowflake(1, 1);
|
|
|
// resources.setId((int) snowflake.nextId());
|
|
|
- return dmFoodMapper.toDto(dmFoodRepository.save(resources));
|
|
|
+ if(resources.getPid().equals(0)){
|
|
|
+ resources.setPid(null);
|
|
|
+ }
|
|
|
+ dmFoodCateRepository.save(resources);
|
|
|
+ // 计算子节点数目
|
|
|
+ resources.setSubCount(0);
|
|
|
+ // 更新父节点菜单数目
|
|
|
+ updateSubCnt(resources.getPid());
|
|
|
}
|
|
|
|
|
|
@Override
|
|
|
@Transactional(rollbackFor = Exception.class)
|
|
|
public void update(DmFoodCate resources) {
|
|
|
- DmFoodCate dmFood = dmFoodRepository.findById(resources.getId()).orElseGet(DmFoodCate::new);
|
|
|
+ if(resources.getId().equals(resources.getPid())) {
|
|
|
+ throw new BadRequestException("上级不能为自己");
|
|
|
+ }
|
|
|
+ DmFoodCate dmFood = dmFoodCateRepository.findById(resources.getId()).orElseGet(DmFoodCate::new);
|
|
|
ValidationUtil.isNull( dmFood.getId(),"DmFood","id",resources.getId());
|
|
|
+
|
|
|
+ if(resources.getPid().equals(0)){
|
|
|
+ resources.setPid(null);
|
|
|
+ }
|
|
|
+
|
|
|
+ // 记录的父节点ID
|
|
|
+ Integer oldPid = dmFood.getPid();
|
|
|
+ Integer newPid = resources.getPid();
|
|
|
+
|
|
|
dmFood.copy(resources);
|
|
|
- dmFoodRepository.save(dmFood);
|
|
|
+ dmFoodCateRepository.save(dmFood);
|
|
|
+ // 计算父级菜单节点数目
|
|
|
+ updateSubCnt(oldPid);
|
|
|
+ updateSubCnt(newPid);
|
|
|
+ }
|
|
|
+
|
|
|
+ @Override
|
|
|
+ public void deleteAll(Set<DmFoodCate> dmFoodCates) {
|
|
|
+ for (DmFoodCate foodCate : dmFoodCates) {
|
|
|
+ dmFoodCateRepository.deleteById(foodCate.getId());
|
|
|
+ updateSubCnt(foodCate.getPid());
|
|
|
+ }
|
|
|
}
|
|
|
|
|
|
@Override
|
|
|
- public void deleteAll(Integer[] ids) {
|
|
|
- for (Integer id : ids) {
|
|
|
- dmFoodRepository.deleteById(id);
|
|
|
+ public List<DmFoodCateDto> getMenus(Integer pid) {
|
|
|
+ List<DmFoodCate> dmFoodCates;
|
|
|
+ if (pid.equals(0)){
|
|
|
+ pid = null;
|
|
|
}
|
|
|
+ if(pid != null && !pid.equals(0)){
|
|
|
+ dmFoodCates = dmFoodCateRepository.findByPid(pid);
|
|
|
+ } else {
|
|
|
+ dmFoodCates = dmFoodCateRepository.findByPidIsNull();
|
|
|
+ }
|
|
|
+ return dmFoodCateMapper.toDto(dmFoodCates);
|
|
|
+ }
|
|
|
+
|
|
|
+ @Override
|
|
|
+ public DmFoodCate findOne(Integer id) {
|
|
|
+ DmFoodCate menu = dmFoodCateRepository.findById(id).orElseGet(DmFoodCate::new);
|
|
|
+ ValidationUtil.isNull(menu.getId(),"DmFoodCate","id",id);
|
|
|
+ return menu;
|
|
|
+ }
|
|
|
+
|
|
|
+ @Override
|
|
|
+ public Set<DmFoodCate> getChildMenus(List<DmFoodCate> menuList, Set<DmFoodCate> menuSet) {
|
|
|
+ for (DmFoodCate menu : menuList) {
|
|
|
+ menuSet.add(menu);
|
|
|
+ List<DmFoodCate> menus = dmFoodCateRepository.findByPid(menu.getId());
|
|
|
+ if(menus!=null && menus.size()!=0){
|
|
|
+ getChildMenus(menus, menuSet);
|
|
|
+ }
|
|
|
+ }
|
|
|
+ return menuSet;
|
|
|
}
|
|
|
|
|
|
@Override
|
|
@@ -113,4 +229,12 @@ public class DmFoodCateServiceImpl implements DmFoodCateService {
|
|
|
}
|
|
|
FileUtil.downloadExcel(list, response);
|
|
|
}
|
|
|
+
|
|
|
+ private void updateSubCnt(Integer cateId){
|
|
|
+ if(cateId != null){
|
|
|
+ int count = dmFoodCateRepository.countByPid(cateId);
|
|
|
+ dmFoodCateRepository.updateSubCntById(count, cateId);
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
}
|