package com.ruoyi.production.service.impl;
import com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper;
import com.baomidou.mybatisplus.core.metadata.IPage;
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
import com.ruoyi.common.exception.ServiceException;
import com.ruoyi.common.utils.StringUtils;
import com.ruoyi.common.utils.poi.ExcelUtil;
import com.ruoyi.framework.web.domain.AjaxResult;
import com.ruoyi.production.dto.BomImportDto;
import com.ruoyi.production.dto.ProductBomDto;
import com.ruoyi.production.dto.ProductStructureDto;
import com.ruoyi.production.mapper.ProductBomMapper;
import com.ruoyi.production.pojo.ProductBom;
import com.ruoyi.production.pojo.ProductProcess;
import com.ruoyi.production.pojo.ProductStructure;
import com.ruoyi.production.service.*;
import com.ruoyi.project.system.domain.SysDictData;
import com.ruoyi.project.system.mapper.SysDictDataMapper;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import org.springframework.transaction.annotation.Transactional;
import org.springframework.web.multipart.MultipartFile;
import javax.servlet.http.HttpServletResponse;
import java.math.BigDecimal;
import java.util.*;
import java.util.stream.Collectors;
/**
*
* BOM主表 服务实现类
*
*
* @author 芯导软件(江苏)有限公司
* @since 2026-01-15 09:59:27
*/
@Service
public class ProductBomServiceImpl extends ServiceImpl implements ProductBomService {
@Autowired
private ProductBomMapper productBomMapper;
@Autowired
private ProductStructureService productStructureService;
@Autowired
private ProductProcessService productProcessService;
@Autowired
private SysDictDataMapper sysDictDataMapper;
@Override
public IPage listPage(Page page, ProductBomDto productBomDto) {
return productBomMapper.listPage(page, productBomDto);
}
@Override
@Transactional(rollbackFor = Exception.class)
public AjaxResult add(ProductBom productBom) {
if (productBom == null || productBom.getDictCode() == null) {
throw new ServiceException("新增失败,产品类型不能为空");
}
SysDictData sysDictData = sysDictDataMapper.selectDictDataById(productBom.getDictCode());
if (sysDictData == null) {
throw new ServiceException("新增失败,产品类型不存在");
}
boolean save = productBomMapper.insert(productBom) > 0;
if (save) {
String no = "BM." + String.format("%05d", productBom.getId());
productBom.setBomNo(no);
productBomMapper.updateById(productBom);
return AjaxResult.success();
}
return AjaxResult.error();
}
@Override
@Transactional(rollbackFor = Exception.class)
public AjaxResult uploadBom(MultipartFile file, Long dictCode) {
if (dictCode == null) {
return AjaxResult.error("导入失败,产品类型不能为空");
}
SysDictData sysDictData = sysDictDataMapper.selectDictDataById(dictCode);
if (sysDictData == null) {
return AjaxResult.error("导入失败,产品类型不存在");
}
ExcelUtil util = new ExcelUtil<>(BomImportDto.class);
List list;
try {
list = util.importExcel(file.getInputStream());
} catch (Exception e) {
return AjaxResult.error("Excel解析失败");
}
if (list == null || list.isEmpty()) return AjaxResult.error("数据为空");
// 处理字段清理
list.forEach(dto -> {
dto.setParentCode(clean(dto.getParentCode()));
dto.setCode(clean(dto.getCode()));
});
handleProcess(list);
Map processMap = productProcessService.list().stream()
.collect(Collectors.toMap(ProductProcess::getName, ProductProcess::getId, (k1, k2) -> k1));
// 创建 BOM 数据
ProductBom bom = new ProductBom();
bom.setVersion("1.0");
bom.setDictCode(dictCode);
productBomMapper.insert(bom);
bom.setBomNo("BM." + String.format("%05d", bom.getId()));
productBomMapper.updateById(bom);
// 记录已经插入结构的节点:Key = "编码", Value = structure_id
Map treePathMap = new HashMap<>();
for (int i = 0; i < list.size(); i++) {
BomImportDto dto = list.get(i);
String currentCode = dto.getCode();
String parentCode = dto.getParentCode();
// 处理根节点:一般指第一行且没有父项编号
if (i == 0 && StringUtils.isBlank(parentCode)) {
ProductStructure rootNode = new ProductStructure();
rootNode.setBomId(bom.getId());
rootNode.setParentId(null); // 顶层没有父节点
if (processMap.containsKey(dto.getProcess())) {
rootNode.setProcessId(processMap.get(dto.getProcess()));
}
rootNode.setUnitQuantity(BigDecimal.ONE);
productStructureService.save(rootNode);
treePathMap.put(currentCode, rootNode.getId());
continue;
}
// 处理子层级节点
// 找到父节点在数据库里的 ID
Long parentStructureId = treePathMap.get(parentCode);
if (parentStructureId == null) {
// 如果 Map 里找不到,说明 Excel 顺序乱了或者数据有误
throw new ServiceException("导入失败: 父项[" + parentCode + "]必须在其子项之前定义");
}
// 插入结构表
ProductStructure node = new ProductStructure();
node.setBomId(bom.getId());
node.setParentId(parentStructureId); // 父节点ID
node.setUnitQuantity(dto.getUnitQty());
if (processMap.containsKey(dto.getProcess())) {
node.setProcessId(processMap.get(dto.getProcess()));
}
productStructureService.save(node);
// 把当前项记录到 Map, 作为以后更深层级的父项查找依据
treePathMap.put(currentCode, node.getId());
}
return AjaxResult.success("BOM导入成功");
}
@Override
public void exportBom(HttpServletResponse response, Integer bomId) {
if (bomId == null) {
return;
}
List treeData = productStructureService.listByBomId(bomId);
if (treeData == null || treeData.isEmpty()) {
return;
}
// 将树形结构扁平化 使用 BFS算法 导出,按层级顺序
List exportList = new ArrayList<>();
// Map idMap 用于查找父节点
Map idMap = new HashMap<>();
populateMap(treeData, idMap);
// treeData 的第一个是根节点
for (ProductStructureDto root : treeData) {
// 添加根节点
BomImportDto rootRow = new BomImportDto();
rootRow.setCode(root.getId().toString());
rootRow.setUnitQty(root.getUnitQuantity());
rootRow.setRemark("");
exportList.add(rootRow);
// BFS 遍历-队列
Queue queue = new LinkedList<>();
if (root.getChildren() != null) {
queue.addAll(root.getChildren());
}
while (!queue.isEmpty()) {
ProductStructureDto child = queue.poll();
// 查找父节点
ProductStructureDto parent = idMap.get(child.getParentId());
if (parent == null) {
// 除了最外层节点,其他节点的父类肯定是不会为空的
continue;
}
BomImportDto row = new BomImportDto();
// 父类编号
row.setParentCode(parent.getId().toString());
// 本身编号
row.setCode(child.getId().toString());
row.setUnitQty(child.getUnitQuantity());
row.setProcess(child.getProcessName());
// row.setProcess();
row.setRemark("");
exportList.add(row);
// 将子节点的子节点加入队列-下一层
if (child.getChildren() != null && !child.getChildren().isEmpty()) {
queue.addAll(child.getChildren());
}
}
}
ExcelUtil util = new ExcelUtil<>(BomImportDto.class);
util.exportExcel(response, exportList, "BOM结构导出");
}
private void populateMap(List nodes, Map map) {
if (nodes == null || nodes.isEmpty()) {
return;
}
for (ProductStructureDto node : nodes) {
map.put(node.getId(), node);
populateMap(node.getChildren(), map);
}
}
private void handleProcess(List list) {
Set processNames = list.stream()
.map(BomImportDto::getProcess)
.filter(StringUtils::isNotBlank)
.collect(Collectors.toSet());
if (processNames.isEmpty()) {
return;
}
List exists = productProcessService.list(
new LambdaQueryWrapper().in(ProductProcess::getName, processNames)
);
Set existNames = exists.stream()
.map(ProductProcess::getName)
.collect(Collectors.toSet());
List needSave = processNames.stream()
.filter(n -> !existNames.contains(n))
.map(n -> {
ProductProcess p = new ProductProcess();
p.setName(n);
return p;
})
.collect(Collectors.toList());
if (!needSave.isEmpty()) {
productProcessService.saveBatch(needSave);
needSave.forEach(p -> p.setNo("GX" + String.format("%08d", p.getId())));
productProcessService.updateBatchById(needSave);
}
}
private String clean(String s) {
if (s == null) return null;
return s.replaceAll("[\\u00A0\\u3000]", "").trim();
}
}