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

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

@ -6,6 +6,8 @@ import lombok.RequiredArgsConstructor;
import jakarta.servlet.http.HttpServletResponse;
import jakarta.validation.constraints.*;
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.validation.annotation.Validated;
import org.dromara.common.idempotent.annotation.RepeatSubmit;
@ -124,4 +126,28 @@ public class ProdMaterialBomController extends BaseController {
//不是单纯的批量新增是新增BOM对话框参考结构BOM批量新增物料BOM
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 java.io.Serial;
import java.math.BigDecimal;
/**
* BOM prod_material_bom
@ -42,6 +43,11 @@ public class ProdMaterialBom extends TenantEntity {
*/
private String materialName;
/**
* ID
*/
private Long materialTypeId;
/**
* bom
*/
@ -60,7 +66,7 @@ public class ProdMaterialBom extends TenantEntity {
/**
*
*/
private Long standardAmount;
private BigDecimal standardAmount;
/**
* (1 0)

@ -9,6 +9,8 @@ import lombok.Data;
import lombok.EqualsAndHashCode;
import jakarta.validation.constraints.*;
import java.math.BigDecimal;
/**
* BOM prod_material_bom
*
@ -41,6 +43,11 @@ public class ProdMaterialBomBo extends BaseEntity {
*/
private String materialName;
/**
* ID
*/
private Long materialTypeId;
/**
* bom
*/
@ -59,7 +66,7 @@ public class ProdMaterialBomBo extends BaseEntity {
/**
*
*/
private Long standardAmount;
private BigDecimal standardAmount;
/**
* (1 0)
@ -101,5 +108,9 @@ public class ProdMaterialBomBo extends BaseEntity {
*/
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 = "更新时间")
private Date updateTime;
/** 子部门 */
/** 子物料类型结构bom */
private List<BaseStructureBomVo> children = new ArrayList<BaseStructureBomVo>();
private String materialTypeCode;//join字段

@ -7,11 +7,14 @@ import org.dromara.common.excel.annotation.ExcelDictFormat;
import org.dromara.common.excel.convert.ExcelDictConvert;
import io.github.linpeilie.annotations.AutoMapper;
import lombok.Data;
import org.dromara.mes.domain.bo.ProdMaterialBomBo;
import java.io.Serial;
import java.io.Serializable;
import java.math.BigDecimal;
import java.util.ArrayList;
import java.util.Date;
import java.util.List;
/**
@ -50,6 +53,11 @@ public class ProdMaterialBomVo implements Serializable {
@ExcelProperty(value = "物料名称")
private String materialName;
/**
* ID
*/
private Long materialTypeId;
/**
* bom
*/
@ -69,7 +77,7 @@ public class ProdMaterialBomVo implements Serializable {
*
*/
@ExcelProperty(value = "标准数量")
private Long standardAmount;
private BigDecimal standardAmount;
/**
* (1 0)
@ -154,4 +162,11 @@ public class ProdMaterialBomVo implements Serializable {
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;
import com.alibaba.excel.util.StringUtils;
import com.fasterxml.jackson.annotation.JsonInclude;
import java.io.Serializable;
@ -11,43 +12,74 @@ import java.util.stream.Collectors;
*
* @author ruoyi
*/
public class TreeSelect implements Serializable
{
public class TreeSelect implements Serializable {
private static final long serialVersionUID = 1L;
/** 节点ID */
/**
* ID
*/
private Long id;
/** 父级节点ID */
/**
* ID
*/
private Long parentId;
/** 节点名称 */
/**
*
*/
private String label;
/** 子节点 */
/**
*
*/
@JsonInclude(JsonInclude.Include.NON_EMPTY)
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.label = baseStructureBomVo.getMaterialTypeName();
this.parentId = baseStructureBomVo.getParentId();
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;
}
public void setId(Long id)
{
public void setId(Long id) {
this.id = id;
}
@ -59,23 +91,51 @@ public class TreeSelect implements Serializable
this.parentId = parentId;
}
public String getLabel()
{
public String getLabel() {
return label;
}
public void setLabel(String label)
{
public void setLabel(String label) {
this.label = label;
}
public List<TreeSelect> getChildren()
{
public List<TreeSelect> getChildren() {
return children;
}
public void setChildren(List<TreeSelect> children)
{
public void setChildren(List<TreeSelect> 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;
import org.dromara.mes.domain.ProdMaterialBom;
import org.dromara.mes.domain.bo.ProdMaterialBomBo;
import org.dromara.mes.domain.vo.ProdMaterialBomVo;
import org.dromara.common.mybatis.core.mapper.BaseMapperPlus;
import java.util.List;
/**
* BOMMapper
*
@ -12,4 +15,27 @@ import org.dromara.common.mybatis.core.mapper.BaseMapperPlus;
*/
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.vo.ProdMaterialBomVo;
import org.dromara.mes.domain.bo.ProdMaterialBomBo;
import org.dromara.mes.domain.vo.TreeSelect;
import java.util.Collection;
import java.util.List;
@ -63,4 +64,20 @@ public interface IProdMaterialBomService {
* @return true
*/
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;
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.StringUtils;
import com.github.yulichang.toolkit.JoinWrappers;
import com.github.yulichang.wrapper.MPJLambdaWrapper;
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.dromara.mes.domain.bo.ProdMaterialBomBo;
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.service.IProdMaterialBomService;
import java.util.List;
import java.util.Map;
import java.util.Collection;
import java.util.*;
import java.util.stream.Collectors;
import java.util.ArrayList;
import java.util.HashMap;
import org.springframework.transaction.annotation.Transactional;
import cn.hutool.core.collection.CollUtil;
@ -43,7 +44,7 @@ public class ProdMaterialBomServiceImpl implements IProdMaterialBomService {
* @return BOM
*/
@Override
public ProdMaterialBomVo queryById(Long materialBomId){
public ProdMaterialBomVo queryById(Long materialBomId) {
return baseMapper.selectVoById(materialBomId);
}
@ -63,23 +64,23 @@ public class ProdMaterialBomServiceImpl implements IProdMaterialBomService {
private MPJLambdaWrapper<ProdMaterialBom> buildQueryWrapper(ProdMaterialBomBo bo) {
Map<String, Object> params = bo.getParams();
MPJLambdaWrapper<ProdMaterialBom> lqw = JoinWrappers.lambda(ProdMaterialBom.class)
.selectAll(ProdMaterialBom.class)
.eq(bo.getMaterialBomId() != null, ProdMaterialBom::getMaterialBomId, bo.getMaterialBomId())
.eq(bo.getParentId() != null, ProdMaterialBom::getParentId, bo.getParentId())
.eq(bo.getMaterialId() != null, ProdMaterialBom::getMaterialId, bo.getMaterialId())
.like(StringUtils.isNotBlank(bo.getMaterialName()), ProdMaterialBom::getMaterialName, bo.getMaterialName())
.like(StringUtils.isNotBlank(bo.getMaterialBomDesc()), ProdMaterialBom::getMaterialBomDesc, bo.getMaterialBomDesc())
.like(StringUtils.isNotBlank(bo.getMaterialBomVersion()), ProdMaterialBom::getMaterialBomVersion, bo.getMaterialBomVersion())
.like(StringUtils.isNotBlank(bo.getAncestors()), ProdMaterialBom::getAncestors, bo.getAncestors())
.eq(bo.getStandardAmount() != null, ProdMaterialBom::getStandardAmount, bo.getStandardAmount())
.eq(bo.getTopFlag() != null, ProdMaterialBom::getTopFlag, bo.getTopFlag())
.eq(StringUtils.isNotBlank(bo.getCheckType()), ProdMaterialBom::getCheckType, bo.getCheckType())
.eq(bo.getProjectId() != null, ProdMaterialBom::getProjectId, bo.getProjectId())
.eq(bo.getAssembleTime() != null, ProdMaterialBom::getAssembleTime, bo.getAssembleTime())
.eq(StringUtils.isNotBlank(bo.getMaterialClassfication()), ProdMaterialBom::getMaterialClassfication, bo.getMaterialClassfication())
.eq(StringUtils.isNotBlank(bo.getAttachId()), ProdMaterialBom::getAttachId, bo.getAttachId())
.eq(StringUtils.isNotBlank(bo.getActiveFlag()), ProdMaterialBom::getActiveFlag, bo.getActiveFlag())
.orderByAsc(ProdMaterialBom::getCreateTime);
.selectAll(ProdMaterialBom.class)
.eq(bo.getMaterialBomId() != null, ProdMaterialBom::getMaterialBomId, bo.getMaterialBomId())
.eq(bo.getParentId() != null, ProdMaterialBom::getParentId, bo.getParentId())
.eq(bo.getMaterialId() != null, ProdMaterialBom::getMaterialId, bo.getMaterialId())
.like(StringUtils.isNotBlank(bo.getMaterialName()), ProdMaterialBom::getMaterialName, bo.getMaterialName())
.like(StringUtils.isNotBlank(bo.getMaterialBomDesc()), ProdMaterialBom::getMaterialBomDesc, bo.getMaterialBomDesc())
.like(StringUtils.isNotBlank(bo.getMaterialBomVersion()), ProdMaterialBom::getMaterialBomVersion, bo.getMaterialBomVersion())
.like(StringUtils.isNotBlank(bo.getAncestors()), ProdMaterialBom::getAncestors, bo.getAncestors())
.eq(bo.getStandardAmount() != null, ProdMaterialBom::getStandardAmount, bo.getStandardAmount())
.eq(bo.getTopFlag() != null, ProdMaterialBom::getTopFlag, bo.getTopFlag())
.eq(StringUtils.isNotBlank(bo.getCheckType()), ProdMaterialBom::getCheckType, bo.getCheckType())
.eq(bo.getProjectId() != null, ProdMaterialBom::getProjectId, bo.getProjectId())
.eq(bo.getAssembleTime() != null, ProdMaterialBom::getAssembleTime, bo.getAssembleTime())
.eq(StringUtils.isNotBlank(bo.getMaterialClassfication()), ProdMaterialBom::getMaterialClassfication, bo.getMaterialClassfication())
.eq(StringUtils.isNotBlank(bo.getAttachId()), ProdMaterialBom::getAttachId, bo.getAttachId())
.eq(StringUtils.isNotBlank(bo.getActiveFlag()), ProdMaterialBom::getActiveFlag, bo.getActiveFlag())
.orderByAsc(ProdMaterialBom::getCreateTime);
return lqw;
}
@ -115,11 +116,6 @@ public class ProdMaterialBomServiceImpl implements IProdMaterialBomService {
*/
@Override
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);
validEntityBeforeSave(update);
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 做一些数据校验,如唯一约束
}
@ -141,8 +137,15 @@ public class ProdMaterialBomServiceImpl implements IProdMaterialBomService {
*/
@Override
public Boolean deleteWithValidByIds(Collection<Long> ids, Boolean isValid) {
if(isValid){
//TODO 做一些业务上的校验,判断是否需要校验
if (isValid) {
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;
}
@ -163,9 +166,9 @@ public class ProdMaterialBomServiceImpl implements IProdMaterialBomService {
}
/**
* BOMBOM
*
* @param boList BOM
* @return true
*/
@ -175,76 +178,129 @@ public class ProdMaterialBomServiceImpl implements IProdMaterialBomService {
if (CollUtil.isEmpty(boList)) {
return false;
}
try {
// 按层级分组根据parentId分组
Map<Long, List<ProdMaterialBomBo>> levelMap = new HashMap<>();
// 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;
//获取materialbomid不为空的更新获取materialbomid为空materialid不为空的保存
for (ProdMaterialBomBo prodMaterialBomBo : boList) {
if (prodMaterialBomBo.getMaterialBomId() == null) {
if (prodMaterialBomBo.getMaterialId() != null) {
if (!insertByBo(prodMaterialBomBo)) {
throw new ServiceException("保存失败");
}
}
// 如果一轮循环没有处理任何节点,说明数据有问题
if (!processed && !childrenMap.isEmpty()) {
throw new ServiceException("存在无法处理的节点,可能是父节点丢失");
} else {
if (!updateByBo(prodMaterialBomBo)) {
throw new ServiceException("保存失败");
}
}
return true;
} catch (Exception e) {
throw new ServiceException("批量插入失败: " + e.getMessage());
}
return true;
}
/**
* 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());
}
ProdPlanInfo add = MapstructUtils.convert(bo, ProdPlanInfo.class);
add.setDispatchAmount(add.getPlanAmount());
validEntityBeforeSave(add);
String tableName = getPlanInfoTableName(bo.getWorkshopId());
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">
<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>

Loading…
Cancel
Save