Commit 91da1548 authored by lcl's avatar lcl

u

parent 68a45a60
...@@ -79,9 +79,9 @@ public class DataAnalysisComponent { ...@@ -79,9 +79,9 @@ public class DataAnalysisComponent {
List<CbQuantitySummary> quantitySummaryList = importList.stream().parallel() List<CbQuantitySummary> quantitySummaryList = importList.stream().parallel()
.filter(item -> !ObjectUtils.isEmpty(item.getCbName())) .filter(item -> !ObjectUtils.isEmpty(item.getCbName()))
.peek(item -> { .peek(item -> {
item.setProjectId(1L); item.setProjectId(bo.getProjectId());
item.setCbStage(0); item.setCbStage(bo.getCbStage());
item.setCbProjectFileId(1L); item.setCbProjectFileId(file.getId());
}).collect(Collectors.toList()); }).collect(Collectors.toList());
if (quantitySummaryList.isEmpty()) { if (quantitySummaryList.isEmpty()) {
throw new ServiceException("表格中不存在有效数据数据!"); throw new ServiceException("表格中不存在有效数据数据!");
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment