生产bom服务端完成
master
xs 1 month ago
parent 7c06d2187d
commit 7d6528e4d9

@ -127,7 +127,7 @@ public class BaseStructureBomController extends BaseController {
/** /**
* *
*/ */
@SaCheckPermission("mes:baseStructureBom:list") @SaCheckPermission("mes:baseStructureBom:list")
@GetMapping("/structureBomTree") @GetMapping("/structureBomTree")

@ -6,6 +6,8 @@ import lombok.RequiredArgsConstructor;
import jakarta.servlet.http.HttpServletResponse; import jakarta.servlet.http.HttpServletResponse;
import jakarta.validation.constraints.*; import jakarta.validation.constraints.*;
import cn.dev33.satoken.annotation.SaCheckPermission; import cn.dev33.satoken.annotation.SaCheckPermission;
import org.dromara.mes.domain.bo.BaseStructureBomBo;
import org.dromara.mes.domain.vo.TreeSelect;
import org.springframework.web.bind.annotation.*; import org.springframework.web.bind.annotation.*;
import org.springframework.validation.annotation.Validated; import org.springframework.validation.annotation.Validated;
import org.dromara.common.idempotent.annotation.RepeatSubmit; import org.dromara.common.idempotent.annotation.RepeatSubmit;
@ -124,4 +126,28 @@ public class ProdMaterialBomController extends BaseController {
//不是单纯的批量新增是新增BOM对话框参考结构BOM批量新增物料BOM //不是单纯的批量新增是新增BOM对话框参考结构BOM批量新增物料BOM
return toAjax(prodMaterialBomService.insertBatchByBoList(boList)); return toAjax(prodMaterialBomService.insertBatchByBoList(boList));
} }
/**
* bom
*/
@SaCheckPermission("mes:materialBom:list")
@GetMapping("/materialBomTree")
public R<List<TreeSelect>> materialBomTree(ProdMaterialBomBo prodMaterialBomBo) {
return R.ok(prodMaterialBomService.selectMaterialBomTreeList(prodMaterialBomBo));
}
/**
* BOM
*/
@SaCheckPermission("mes:materialBom:list")
@GetMapping("/joinStructureList")
public R<List<ProdMaterialBomVo>> joinStructureList(ProdMaterialBomBo bo) {
List<ProdMaterialBomVo> list = prodMaterialBomService.queryJoinStructureList(bo);
return R.ok(list);
}
} }

@ -6,6 +6,7 @@ import lombok.Data;
import lombok.EqualsAndHashCode; import lombok.EqualsAndHashCode;
import java.io.Serial; import java.io.Serial;
import java.math.BigDecimal;
/** /**
* BOM prod_material_bom * BOM prod_material_bom
@ -42,6 +43,11 @@ public class ProdMaterialBom extends TenantEntity {
*/ */
private String materialName; private String materialName;
/**
* ID
*/
private Long materialTypeId;
/** /**
* bom * bom
*/ */
@ -60,7 +66,7 @@ public class ProdMaterialBom extends TenantEntity {
/** /**
* *
*/ */
private Long standardAmount; private BigDecimal standardAmount;
/** /**
* (1 0) * (1 0)

@ -9,6 +9,8 @@ import lombok.Data;
import lombok.EqualsAndHashCode; import lombok.EqualsAndHashCode;
import jakarta.validation.constraints.*; import jakarta.validation.constraints.*;
import java.math.BigDecimal;
/** /**
* BOM prod_material_bom * BOM prod_material_bom
* *
@ -41,6 +43,11 @@ public class ProdMaterialBomBo extends BaseEntity {
*/ */
private String materialName; private String materialName;
/**
* ID
*/
private Long materialTypeId;
/** /**
* bom * bom
*/ */
@ -59,7 +66,7 @@ public class ProdMaterialBomBo extends BaseEntity {
/** /**
* *
*/ */
private Long standardAmount; private BigDecimal standardAmount;
/** /**
* (1 0) * (1 0)
@ -101,5 +108,9 @@ public class ProdMaterialBomBo extends BaseEntity {
*/ */
private String remark; private String remark;
private String materialTypeCode;//join查询字段
private String materialTypeName;//join查询字段
private Long bomStructureParentId;//结构树的parentId
} }

@ -133,7 +133,7 @@ public class BaseStructureBomVo implements Serializable {
@ExcelProperty(value = "更新时间") @ExcelProperty(value = "更新时间")
private Date updateTime; private Date updateTime;
/** 子部门 */ /** 子物料类型结构bom */
private List<BaseStructureBomVo> children = new ArrayList<BaseStructureBomVo>(); private List<BaseStructureBomVo> children = new ArrayList<BaseStructureBomVo>();
private String materialTypeCode;//join字段 private String materialTypeCode;//join字段

@ -7,11 +7,14 @@ import org.dromara.common.excel.annotation.ExcelDictFormat;
import org.dromara.common.excel.convert.ExcelDictConvert; import org.dromara.common.excel.convert.ExcelDictConvert;
import io.github.linpeilie.annotations.AutoMapper; import io.github.linpeilie.annotations.AutoMapper;
import lombok.Data; import lombok.Data;
import org.dromara.mes.domain.bo.ProdMaterialBomBo;
import java.io.Serial; import java.io.Serial;
import java.io.Serializable; import java.io.Serializable;
import java.math.BigDecimal;
import java.util.ArrayList;
import java.util.Date; import java.util.Date;
import java.util.List;
/** /**
@ -50,6 +53,11 @@ public class ProdMaterialBomVo implements Serializable {
@ExcelProperty(value = "物料名称") @ExcelProperty(value = "物料名称")
private String materialName; private String materialName;
/**
* ID
*/
private Long materialTypeId;
/** /**
* bom * bom
*/ */
@ -69,7 +77,7 @@ public class ProdMaterialBomVo implements Serializable {
* *
*/ */
@ExcelProperty(value = "标准数量") @ExcelProperty(value = "标准数量")
private Long standardAmount; private BigDecimal standardAmount;
/** /**
* (1 0) * (1 0)
@ -154,4 +162,11 @@ public class ProdMaterialBomVo implements Serializable {
private Date updateTime; private Date updateTime;
/** 子物料类型结构bom */
private List<ProdMaterialBomVo> children = new ArrayList<ProdMaterialBomVo>();
private String materialTypeCode;//join字段
private String materialTypeName;//join字段
} }

@ -1,5 +1,6 @@
package org.dromara.mes.domain.vo; package org.dromara.mes.domain.vo;
import com.alibaba.excel.util.StringUtils;
import com.fasterxml.jackson.annotation.JsonInclude; import com.fasterxml.jackson.annotation.JsonInclude;
import java.io.Serializable; import java.io.Serializable;
@ -11,43 +12,74 @@ import java.util.stream.Collectors;
* *
* @author ruoyi * @author ruoyi
*/ */
public class TreeSelect implements Serializable public class TreeSelect implements Serializable {
{
private static final long serialVersionUID = 1L; private static final long serialVersionUID = 1L;
/** 节点ID */ /**
* ID
*/
private Long id; private Long id;
/** 父级节点ID */ /**
* ID
*/
private Long parentId; private Long parentId;
/** 节点名称 */ /**
*
*/
private String label; private String label;
/** 子节点 */ /**
*
*/
@JsonInclude(JsonInclude.Include.NON_EMPTY) @JsonInclude(JsonInclude.Include.NON_EMPTY)
private List<TreeSelect> children; private List<TreeSelect> children;
public TreeSelect()
{ private String materialName;
/**
* ID
*/
private Long materialTypeId;
private String materialTypeName;
private String materialBomVersion;
public TreeSelect() {
} }
public TreeSelect(BaseStructureBomVo baseStructureBomVo) public TreeSelect(BaseStructureBomVo baseStructureBomVo) {
{
this.id = baseStructureBomVo.getMaterialTypeId(); this.id = baseStructureBomVo.getMaterialTypeId();
this.label = baseStructureBomVo.getMaterialTypeName(); this.label = baseStructureBomVo.getMaterialTypeName();
this.parentId = baseStructureBomVo.getParentId(); this.parentId = baseStructureBomVo.getParentId();
this.children = baseStructureBomVo.getChildren().stream().map(TreeSelect::new).collect(Collectors.toList()); this.children = baseStructureBomVo.getChildren().stream().map(TreeSelect::new).collect(Collectors.toList());
} }
public Long getId() public TreeSelect(ProdMaterialBomVo prodMaterialBomVo) {
{ this.id = prodMaterialBomVo.getMaterialBomId();
if (prodMaterialBomVo.getParentId() == null) {
this.label = prodMaterialBomVo.getMaterialName();
} else {
this.label = "[" + prodMaterialBomVo.getMaterialBomVersion() + "][" + prodMaterialBomVo.getMaterialTypeName() + "]" +
prodMaterialBomVo.getMaterialName();
}
this.parentId = prodMaterialBomVo.getParentId();
this.children = prodMaterialBomVo.getChildren().stream().map(TreeSelect::new).collect(Collectors.toList());
this.materialName = prodMaterialBomVo.getMaterialName();
this.materialTypeId = prodMaterialBomVo.getMaterialTypeId();
this.materialTypeName = prodMaterialBomVo.getMaterialTypeName();
this.materialBomVersion = prodMaterialBomVo.getMaterialBomVersion();
}
public Long getId() {
return id; return id;
} }
public void setId(Long id) public void setId(Long id) {
{
this.id = id; this.id = id;
} }
@ -59,23 +91,51 @@ public class TreeSelect implements Serializable
this.parentId = parentId; this.parentId = parentId;
} }
public String getLabel() public String getLabel() {
{
return label; return label;
} }
public void setLabel(String label) public void setLabel(String label) {
{
this.label = label; this.label = label;
} }
public List<TreeSelect> getChildren() public List<TreeSelect> getChildren() {
{
return children; return children;
} }
public void setChildren(List<TreeSelect> children) public void setChildren(List<TreeSelect> children) {
{
this.children = children; this.children = children;
} }
public String getMaterialName() {
return materialName;
}
public void setMaterialName(String materialName) {
this.materialName = materialName;
}
public Long getMaterialTypeId() {
return materialTypeId;
}
public void setMaterialTypeId(Long materialTypeId) {
this.materialTypeId = materialTypeId;
}
public String getMaterialTypeName() {
return materialTypeName;
}
public void setMaterialTypeName(String materialTypeName) {
this.materialTypeName = materialTypeName;
}
public String getMaterialBomVersion() {
return materialBomVersion;
}
public void setMaterialBomVersion(String materialBomVersion) {
this.materialBomVersion = materialBomVersion;
}
} }

@ -1,9 +1,12 @@
package org.dromara.mes.mapper; package org.dromara.mes.mapper;
import org.dromara.mes.domain.ProdMaterialBom; import org.dromara.mes.domain.ProdMaterialBom;
import org.dromara.mes.domain.bo.ProdMaterialBomBo;
import org.dromara.mes.domain.vo.ProdMaterialBomVo; import org.dromara.mes.domain.vo.ProdMaterialBomVo;
import org.dromara.common.mybatis.core.mapper.BaseMapperPlus; import org.dromara.common.mybatis.core.mapper.BaseMapperPlus;
import java.util.List;
/** /**
* BOMMapper * BOMMapper
* *
@ -12,4 +15,27 @@ import org.dromara.common.mybatis.core.mapper.BaseMapperPlus;
*/ */
public interface ProdMaterialBomMapper extends BaseMapperPlus<ProdMaterialBom, ProdMaterialBomVo> { public interface ProdMaterialBomMapper extends BaseMapperPlus<ProdMaterialBom, ProdMaterialBomVo> {
/**
* bom,join materialmaterialtype
*
* @param podMaterialBomBo
* @return bom
*/
// @DataPermission({
// @DataColumn(key = "deptName", value = "dept_id")
// })
List<ProdMaterialBomVo> selectMaterialBomJoinList(ProdMaterialBomBo podMaterialBomBo);
/**
* bom,join materialmaterialtypebomstructure
*
* @param podMaterialBomBo
* @return bom
*/
// @DataPermission({
// @DataColumn(key = "deptName", value = "dept_id")
// })
List<ProdMaterialBomVo> selectMaterialBomJoinStructureList(ProdMaterialBomBo podMaterialBomBo);
} }

@ -3,6 +3,7 @@ package org.dromara.mes.service;
import org.dromara.mes.domain.ProdMaterialBom; import org.dromara.mes.domain.ProdMaterialBom;
import org.dromara.mes.domain.vo.ProdMaterialBomVo; import org.dromara.mes.domain.vo.ProdMaterialBomVo;
import org.dromara.mes.domain.bo.ProdMaterialBomBo; import org.dromara.mes.domain.bo.ProdMaterialBomBo;
import org.dromara.mes.domain.vo.TreeSelect;
import java.util.Collection; import java.util.Collection;
import java.util.List; import java.util.List;
@ -63,4 +64,20 @@ public interface IProdMaterialBomService {
* @return true * @return true
*/ */
Boolean insertBatchByBoList(List<ProdMaterialBomBo> boList); Boolean insertBatchByBoList(List<ProdMaterialBomBo> boList);
/**
* BOMjoin materialtype,material,structurebom
*
* @param bo
* @return BOM
*/
public List<ProdMaterialBomVo> queryJoinStructureList(ProdMaterialBomBo bo);
/**
* bom
*
* @param bo bom
* @return bom
*/
public List<TreeSelect> selectMaterialBomTreeList(ProdMaterialBomBo bo);
} }

@ -1,10 +1,15 @@
package org.dromara.mes.service.impl; package org.dromara.mes.service.impl;
import com.alibaba.csp.sentinel.util.StringUtil;
import com.baomidou.mybatisplus.core.toolkit.Wrappers;
import org.dromara.common.core.utils.MapstructUtils; import org.dromara.common.core.utils.MapstructUtils;
import org.dromara.common.core.utils.StringUtils; import org.dromara.common.core.utils.StringUtils;
import com.github.yulichang.toolkit.JoinWrappers; import com.github.yulichang.toolkit.JoinWrappers;
import com.github.yulichang.wrapper.MPJLambdaWrapper; import com.github.yulichang.wrapper.MPJLambdaWrapper;
import lombok.RequiredArgsConstructor; import lombok.RequiredArgsConstructor;
import org.dromara.mes.domain.BaseStructureBom;
import org.dromara.mes.domain.vo.BaseStructureBomVo;
import org.dromara.mes.domain.vo.TreeSelect;
import org.springframework.stereotype.Service; import org.springframework.stereotype.Service;
import org.dromara.mes.domain.bo.ProdMaterialBomBo; import org.dromara.mes.domain.bo.ProdMaterialBomBo;
import org.dromara.mes.domain.vo.ProdMaterialBomVo; import org.dromara.mes.domain.vo.ProdMaterialBomVo;
@ -12,12 +17,8 @@ import org.dromara.mes.domain.ProdMaterialBom;
import org.dromara.mes.mapper.ProdMaterialBomMapper; import org.dromara.mes.mapper.ProdMaterialBomMapper;
import org.dromara.mes.service.IProdMaterialBomService; import org.dromara.mes.service.IProdMaterialBomService;
import java.util.List; import java.util.*;
import java.util.Map;
import java.util.Collection;
import java.util.stream.Collectors; import java.util.stream.Collectors;
import java.util.ArrayList;
import java.util.HashMap;
import org.springframework.transaction.annotation.Transactional; import org.springframework.transaction.annotation.Transactional;
import cn.hutool.core.collection.CollUtil; import cn.hutool.core.collection.CollUtil;
@ -43,7 +44,7 @@ public class ProdMaterialBomServiceImpl implements IProdMaterialBomService {
* @return BOM * @return BOM
*/ */
@Override @Override
public ProdMaterialBomVo queryById(Long materialBomId){ public ProdMaterialBomVo queryById(Long materialBomId) {
return baseMapper.selectVoById(materialBomId); return baseMapper.selectVoById(materialBomId);
} }
@ -115,11 +116,6 @@ public class ProdMaterialBomServiceImpl implements IProdMaterialBomService {
*/ */
@Override @Override
public Boolean updateByBo(ProdMaterialBomBo bo) { public Boolean updateByBo(ProdMaterialBomBo bo) {
isTopFlag(bo);
ProdMaterialBomVo info = baseMapper.selectVoById(bo.getParentId());
if (StringUtils.isNotNull(info)) {
bo.setAncestors(info.getAncestors() + "," + bo.getParentId());
}
ProdMaterialBom update = MapstructUtils.convert(bo, ProdMaterialBom.class); ProdMaterialBom update = MapstructUtils.convert(bo, ProdMaterialBom.class);
validEntityBeforeSave(update); validEntityBeforeSave(update);
return baseMapper.updateById(update) > 0; return baseMapper.updateById(update) > 0;
@ -128,7 +124,7 @@ public class ProdMaterialBomServiceImpl implements IProdMaterialBomService {
/** /**
* *
*/ */
private void validEntityBeforeSave(ProdMaterialBom entity){ private void validEntityBeforeSave(ProdMaterialBom entity) {
//TODO 做一些数据校验,如唯一约束 //TODO 做一些数据校验,如唯一约束
} }
@ -141,8 +137,15 @@ public class ProdMaterialBomServiceImpl implements IProdMaterialBomService {
*/ */
@Override @Override
public Boolean deleteWithValidByIds(Collection<Long> ids, Boolean isValid) { public Boolean deleteWithValidByIds(Collection<Long> ids, Boolean isValid) {
if(isValid){ if (isValid) {
//TODO 做一些业务上的校验,判断是否需要校验 ids.forEach(materialBomId -> {
//判断是否有子级物料
ProdMaterialBom query = new ProdMaterialBom();
query.setParentId(materialBomId);
if (baseMapper.selectCount(Wrappers.lambdaQuery(query)) > 0) {
throw new ServiceException("生产BOM编号为[" + materialBomId + "]有子级物料,不能删除");
}
});
} }
return baseMapper.deleteByIds(ids) > 0; return baseMapper.deleteByIds(ids) > 0;
} }
@ -163,9 +166,9 @@ public class ProdMaterialBomServiceImpl implements IProdMaterialBomService {
} }
/** /**
* BOMBOM * BOMBOM
*
* @param boList BOM * @param boList BOM
* @return true * @return true
*/ */
@ -175,76 +178,129 @@ public class ProdMaterialBomServiceImpl implements IProdMaterialBomService {
if (CollUtil.isEmpty(boList)) { if (CollUtil.isEmpty(boList)) {
return false; return false;
} }
//获取materialbomid不为空的更新获取materialbomid为空materialid不为空的保存
for (ProdMaterialBomBo prodMaterialBomBo : boList) {
if (prodMaterialBomBo.getMaterialBomId() == null) {
if (prodMaterialBomBo.getMaterialId() != null) {
if (!insertByBo(prodMaterialBomBo)) {
throw new ServiceException("保存失败");
}
}
try { } else {
// 按层级分组根据parentId分组 if (!updateByBo(prodMaterialBomBo)) {
Map<Long, List<ProdMaterialBomBo>> levelMap = new HashMap<>(); throw new ServiceException("保存失败");
// 1. 首先找出所有顶级节点
List<ProdMaterialBomBo> topNodes = boList.stream()
.filter(bo -> bo.getParentId() == null || bo.getParentId() == 0)
.collect(Collectors.toList());
// 2. 其他节点按parentId分组
Map<Long, List<ProdMaterialBomBo>> childrenMap = boList.stream()
.filter(bo -> bo.getParentId() != null && bo.getParentId() != 0)
.collect(Collectors.groupingBy(bo -> Math.abs(bo.getParentId())));
// 存储临时ID到实际ID的映射
Map<Long, Long> idMapping = new HashMap<>();
// 3. 优先处理顶级节点,设置基础数据并插入
for (ProdMaterialBomBo topNode : topNodes) {
Long tempId = Math.abs(topNode.getMaterialBomId());
topNode.setMaterialBomId(null); // 清除临时ID
topNode.setParentId(0L); // 确保顶级节点parentId为0
topNode.setAncestors("0"); // 顶级节点的ancestors为"0"
topNode.setTopFlag(1L); // 设置顶级节点的topFlag为1
// 插入顶级节点
ProdMaterialBom add = MapstructUtils.convert(topNode, ProdMaterialBom.class);
if (baseMapper.insert(add) <= 0) {
throw new ServiceException("插入顶级节点失败");
}
// 记录映射关系
idMapping.put(tempId, add.getMaterialBomId());
}
// 4. 处理子节点,直到所有节点都处理完
while (!childrenMap.isEmpty()) {
// 找出当前可以处理的节点父节点已经在idMapping中的节点
List<Long> processableParentIds = new ArrayList<>(childrenMap.keySet());
boolean processed = false;// 标记本轮是否有节点被处理
for (Long parentTempId : processableParentIds) {
// 检查父节点是否已处理
if (idMapping.containsKey(parentTempId)) {
List<ProdMaterialBomBo> children = childrenMap.remove(parentTempId);
// 处理同一父节点的所有子节点
for (ProdMaterialBomBo child : children) {
Long childTempId = Math.abs(child.getMaterialBomId());
// 设置实际的父节点ID
child.setMaterialBomId(null);// 清除临时ID
child.setTopFlag(0L); // 设置非顶级节点的topFlag为0
Long actualParentId = idMapping.get(parentTempId);
child.setParentId(actualParentId);
// 设置祖级列表
ProdMaterialBom parent = baseMapper.selectById(actualParentId);
child.setAncestors(parent.getAncestors() + "," + actualParentId);
// 插入子节点
ProdMaterialBom add = MapstructUtils.convert(child, ProdMaterialBom.class);
if (baseMapper.insert(add) <= 0) {
throw new ServiceException("插入子节点失败");
}
// 记录映射关系
idMapping.put(childTempId, add.getMaterialBomId());
}
processed = true;
}
}
// 如果一轮循环没有处理任何节点,说明数据有问题
if (!processed && !childrenMap.isEmpty()) {
throw new ServiceException("存在无法处理的节点,可能是父节点丢失");
} }
} }
}
return true; return true;
} catch (Exception e) {
throw new ServiceException("批量插入失败: " + e.getMessage()); }
/**
* BOMjoin materialtype,material,structurebom
*
* @param bo
* @return BOM
*/
@Override
public List<ProdMaterialBomVo> queryJoinStructureList(ProdMaterialBomBo bo) {
return baseMapper.selectMaterialBomJoinStructureList(bo);
}
/**
* bom
*
* @param bo bom
* @return bom
*/
@Override
public List<TreeSelect> selectMaterialBomTreeList(ProdMaterialBomBo bo) {
List<ProdMaterialBomVo> prodMaterialBomVos = baseMapper.selectMaterialBomJoinList(bo);
return buildMaterialBomTreeSelect(prodMaterialBomVos);
}
/**
*
*
* @param prodMaterialBomVos
* @return
*/
private List<ProdMaterialBomVo> buildMaterialBomTree(List<ProdMaterialBomVo> prodMaterialBomVos) {
List<ProdMaterialBomVo> returnList = new ArrayList<ProdMaterialBomVo>();
ProdMaterialBomVo topProdMaterialBomVo = new ProdMaterialBomVo();
topProdMaterialBomVo.setMaterialBomId(0L);
topProdMaterialBomVo.setMaterialName("生产BOM");
topProdMaterialBomVo.setMaterialTypeId(-1L);
prodMaterialBomVos.add(topProdMaterialBomVo);
List<Long> tempList = prodMaterialBomVos.stream().map(ProdMaterialBomVo::getMaterialBomId).collect(Collectors.toList());
for (ProdMaterialBomVo prodMaterialBomVo : prodMaterialBomVos) {
// 如果是顶级节点, 遍历该父节点的所有子节点
if (!tempList.contains(prodMaterialBomVo.getParentId())) {
recursionFn(prodMaterialBomVos, prodMaterialBomVo);
returnList.add(prodMaterialBomVo);
}
}
if (returnList.isEmpty()) {
returnList = prodMaterialBomVos;
}
return returnList;
} }
/**
*
*
* @param prodMaterialBomVos bom
* @return
*/
private List<TreeSelect> buildMaterialBomTreeSelect(List<ProdMaterialBomVo> prodMaterialBomVos) {
List<ProdMaterialBomVo> materialBomTrees = buildMaterialBomTree(prodMaterialBomVos);
return materialBomTrees.stream().map(TreeSelect::new).collect(Collectors.toList());
} }
/**
*
*/
private void recursionFn(List<ProdMaterialBomVo> list, ProdMaterialBomVo t) {
// 得到子节点列表
List<ProdMaterialBomVo> childList = getChildList(list, t);
t.setChildren(childList);
for (ProdMaterialBomVo tChild : childList) {
if (hasChild(list, tChild)) {
recursionFn(list, tChild);
}
}
}
/**
*
*/
private List<ProdMaterialBomVo> getChildList(List<ProdMaterialBomVo> list, ProdMaterialBomVo t) {
List<ProdMaterialBomVo> tlist = new ArrayList<ProdMaterialBomVo>();
Iterator<ProdMaterialBomVo> it = list.iterator();
while (it.hasNext()) {
ProdMaterialBomVo n = (ProdMaterialBomVo) it.next();
if(StringUtils.isNotBlank(t.getMaterialBomVersion())){
n.setMaterialBomVersion(t.getMaterialBomVersion());
}
if (StringUtils.isNotNull(n.getParentId()) && n.getParentId().longValue() == t.getMaterialBomId().longValue()) {
tlist.add(n);
}
}
return tlist;
}
/**
*
*/
private boolean hasChild(List<ProdMaterialBomVo> list, ProdMaterialBomVo t) {
return getChildList(list, t).size() > 0 ? true : false;
}
} }

@ -131,6 +131,7 @@ public class ProdPlanInfoServiceImpl implements IProdPlanInfoService {
bo.setPlanCode(getDispatchCode()); bo.setPlanCode(getDispatchCode());
} }
ProdPlanInfo add = MapstructUtils.convert(bo, ProdPlanInfo.class); ProdPlanInfo add = MapstructUtils.convert(bo, ProdPlanInfo.class);
add.setDispatchAmount(add.getPlanAmount());
validEntityBeforeSave(add); validEntityBeforeSave(add);
String tableName = getPlanInfoTableName(bo.getWorkshopId()); String tableName = getPlanInfoTableName(bo.getWorkshopId());
boolean flag = dynamicBaseSqlMapper.dynamicInsert(tableName, DatabaseConstants.TABLE_NAME_PROD_PLAN_INFO_PREFIX, add) > 0; boolean flag = dynamicBaseSqlMapper.dynamicInsert(tableName, DatabaseConstants.TABLE_NAME_PROD_PLAN_INFO_PREFIX, add) > 0;

@ -4,4 +4,64 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
"http://mybatis.org/dtd/mybatis-3-mapper.dtd"> "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="org.dromara.mes.mapper.ProdMaterialBomMapper"> <mapper namespace="org.dromara.mes.mapper.ProdMaterialBomMapper">
<select id="selectMaterialBomJoinList" parameterType="ProdMaterialBomBo" resultType="ProdMaterialBomVo">
select
pmb.material_bom_id,
pmb.material_id,
pmb.parent_id,
pmb.material_type_id,
pmb.material_bom_version,
bmi.material_name,
bmt.matrial_type_name as material_type_name
from prod_material_bom pmb
left join base_material_info bmi on pmb.material_id=bmi.material_id
left join base_material_type bmt on bmi.material_type_id = bmt.matrial_type_id
<where>
<if test="materialTypeCode != null and materialTypeCode != ''">and bmt.matrial_type_code like concat('%', #{materialTypeCode},
'%')
</if>
<if test="materialTypeName != null and materialTypeName != ''">and bmt.matrial_type_name like concat('%', #{materialTypeName},
'%')
</if>
<if test="parentId != null ">and pmb.parent_id = #{parentId}</if>
</where>
order by pmb.material_bom_id desc
</select>
<select id="selectMaterialBomJoinStructureList" parameterType="ProdMaterialBomBo" resultType="ProdMaterialBomVo">
select
pmb.material_bom_id,
pmb.material_id,
pmb.parent_id,
pmb.material_bom_version,
pmb.standard_amount,
bmi.material_name,
bsb.material_type_id,
bmt.matrial_type_code as material_type_code,
bmt.matrial_type_name as material_type_name
from base_structure_bom bsb
left join prod_material_bom pmb on pmb.material_type_id = bsb.material_type_id and pmb.parent_id = #{parentId}
left join base_material_info bmi on pmb.material_id=bmi.material_id
left join base_material_type bmt on bsb.material_type_id = bmt.matrial_type_id
<where>
<if test="materialTypeCode != null and materialTypeCode != ''">and bmt.matrial_type_code like concat('%', #{materialTypeCode},
'%')
</if>
<if test="materialTypeName != null and materialTypeName != ''">and bmt.matrial_type_name like concat('%', #{materialTypeName},
'%')
</if>
<if test="materialName != null and materialName != ''">and bmi.material_name like concat('%', #{materialName},
'%')
</if>
<if test="bomStructureParentId != null ">and bsb.parent_id = #{bomStructureParentId}</if>
</where>
order by bsb.structure_bom_id desc
</select>
</mapper> </mapper>

Loading…
Cancel
Save