Fixiaobai
2023-11-07 940f06f6d8e5508f39bd7f8ce7791d60bfc0686c
mes-technology/src/main/java/com/chinaztt/mes/technology/controller/BomController.java
@@ -21,9 +21,7 @@
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
import com.chinaztt.mes.common.wrapper.QueryWrapperUtil;
import com.chinaztt.mes.technology.dto.BomDTO;
import com.chinaztt.mes.technology.dto.StructureTree;
import com.chinaztt.mes.technology.entity.Bom;
import com.chinaztt.mes.technology.entity.Operation;
import com.chinaztt.mes.technology.entity.Structure;
import com.chinaztt.mes.technology.excel.BomData;
import com.chinaztt.mes.technology.excel.BomUploadListener;
@@ -42,8 +40,6 @@
import java.io.IOException;
import java.util.List;
import java.util.Map;
import java.util.stream.Collectors;
/**
@@ -199,6 +195,7 @@
   public R addByStructure() {
      // 获取需要进行构建BOM的产品结构
      List<Structure> structures = structureService.getBuildBom();
      structures.forEach(System.out::println);
      return bomService.saveALLBom(structures);
   }
}