|
@@ -1,5 +1,6 @@
|
|
package org.jeecg.modules.aa.service.impl;
|
|
package org.jeecg.modules.aa.service.impl;
|
|
|
|
|
|
|
|
+import com.google.common.base.Strings;
|
|
import org.jeecg.common.exception.JeecgBootException;
|
|
import org.jeecg.common.exception.JeecgBootException;
|
|
import org.jeecg.common.util.oConvertUtils;
|
|
import org.jeecg.common.util.oConvertUtils;
|
|
import org.jeecg.modules.aa.entity.AaCommodityFl;
|
|
import org.jeecg.modules.aa.entity.AaCommodityFl;
|
|
@@ -39,7 +40,7 @@ public class AaCommodityFlServiceImpl extends ServiceImpl<AaCommodityFlMapper, A
|
|
}
|
|
}
|
|
baseMapper.insert(aaCommodityFl);
|
|
baseMapper.insert(aaCommodityFl);
|
|
}
|
|
}
|
|
-
|
|
|
|
|
|
+
|
|
@Override
|
|
@Override
|
|
public void updateAaCommodityFl(AaCommodityFl aaCommodityFl) {
|
|
public void updateAaCommodityFl(AaCommodityFl aaCommodityFl) {
|
|
AaCommodityFl entity = this.getById(aaCommodityFl.getId());
|
|
AaCommodityFl entity = this.getById(aaCommodityFl.getId());
|
|
@@ -59,7 +60,7 @@ public class AaCommodityFlServiceImpl extends ServiceImpl<AaCommodityFlMapper, A
|
|
}
|
|
}
|
|
baseMapper.updateById(aaCommodityFl);
|
|
baseMapper.updateById(aaCommodityFl);
|
|
}
|
|
}
|
|
-
|
|
|
|
|
|
+
|
|
@Override
|
|
@Override
|
|
@Transactional(rollbackFor = Exception.class)
|
|
@Transactional(rollbackFor = Exception.class)
|
|
public void deleteAaCommodityFl(String id) throws JeecgBootException {
|
|
public void deleteAaCommodityFl(String id) throws JeecgBootException {
|
|
@@ -97,7 +98,7 @@ public class AaCommodityFlServiceImpl extends ServiceImpl<AaCommodityFlMapper, A
|
|
baseMapper.deleteById(id);
|
|
baseMapper.deleteById(id);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
-
|
|
|
|
|
|
+
|
|
@Override
|
|
@Override
|
|
public List<AaCommodityFl> queryTreeListNoPage(QueryWrapper<AaCommodityFl> queryWrapper) {
|
|
public List<AaCommodityFl> queryTreeListNoPage(QueryWrapper<AaCommodityFl> queryWrapper) {
|
|
List<AaCommodityFl> dataList = baseMapper.selectList(queryWrapper);
|
|
List<AaCommodityFl> dataList = baseMapper.selectList(queryWrapper);
|
|
@@ -118,8 +119,47 @@ public class AaCommodityFlServiceImpl extends ServiceImpl<AaCommodityFlMapper, A
|
|
}
|
|
}
|
|
return mapList;
|
|
return mapList;
|
|
}
|
|
}
|
|
-
|
|
|
|
- /**
|
|
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * 查询父节点下的所有子节点,并设置到 org.jeecg.modules.aa.entity.AaCommodityFl#children 属性上
|
|
|
|
+ * @param parent 父节点
|
|
|
|
+ * @return 字节点列表
|
|
|
|
+ */
|
|
|
|
+ @Override
|
|
|
|
+ public List<AaCommodityFl> findAllChild(AaCommodityFl parent) {
|
|
|
|
+ if (Strings.isNullOrEmpty(parent.getHasChild()) || parent.getHasChild().equals("0")) {
|
|
|
|
+ return new ArrayList<>();
|
|
|
|
+ }
|
|
|
|
+ QueryWrapper<AaCommodityFl> queryWrapper = new QueryWrapper<>();
|
|
|
|
+ queryWrapper.eq( "pid", parent.getId());
|
|
|
|
+ List<AaCommodityFl> child = this.list( queryWrapper );
|
|
|
|
+ parent.setChildren(child);
|
|
|
|
+ if (child !=null && !child.isEmpty()) {
|
|
|
|
+ child.forEach(this::findAllChild);
|
|
|
|
+ }
|
|
|
|
+ return child;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ *
|
|
|
|
+ * @param id
|
|
|
|
+ * @return
|
|
|
|
+ */
|
|
|
|
+ @Override
|
|
|
|
+ public AaCommodityFl findTopNode(String id) {
|
|
|
|
+ AaCommodityFl byId = getById(id);
|
|
|
|
+ if (byId == null) {
|
|
|
|
+ return null;
|
|
|
|
+ }
|
|
|
|
+ if ("0".equals(byId.getPid())) {
|
|
|
|
+ // 自己就是顶级
|
|
|
|
+ return byId;
|
|
|
|
+ } else {
|
|
|
|
+ return this.findTopNode(byId.getPid());
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ /**
|
|
* 根据所传pid查询旧的父级节点的子节点并修改相应状态值
|
|
* 根据所传pid查询旧的父级节点的子节点并修改相应状态值
|
|
* @param pid
|
|
* @param pid
|
|
*/
|
|
*/
|