|
|
|
|
@ -412,7 +412,6 @@ public class EntrustServiceImpl extends BaseServiceImpl<EntrustMapper, Entrust> |
|
|
|
|
default: |
|
|
|
|
currTemplate = DictBizCache.getKey(DictBizEnum.PRINT_URL.getName(), "print10"); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
List<ExamineResultVo> resultList = new ArrayList<>(); |
|
|
|
|
// 根据检验判断有几个name
|
|
|
|
|
for (int i = 1; i <= examineList.size(); i++) { |
|
|
|
|
@ -465,7 +464,7 @@ public class EntrustServiceImpl extends BaseServiceImpl<EntrustMapper, Entrust> |
|
|
|
|
resultVo.setNum(simple.getExperieNum()); |
|
|
|
|
resultVo.setIndex(i); |
|
|
|
|
resultVo.setValue(excel.getCtValue()); |
|
|
|
|
resultVo.setResult(excel.getValue()); |
|
|
|
|
resultVo.setResult(excel.getResult()); |
|
|
|
|
resultVo.setRecessiveNum(simple.getRecessiveNum()); |
|
|
|
|
resultList.add(resultVo); |
|
|
|
|
} |
|
|
|
|
@ -488,7 +487,7 @@ public class EntrustServiceImpl extends BaseServiceImpl<EntrustMapper, Entrust> |
|
|
|
|
resultVo.setNum(simple.getExperieNum()); |
|
|
|
|
resultVo.setIndex(i); |
|
|
|
|
resultVo.setValue(excel.getCtValue()); |
|
|
|
|
resultVo.setResult(excel.getValue()); |
|
|
|
|
resultVo.setResult(excel.getResult()); |
|
|
|
|
resultList.add(resultVo); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
@ -673,15 +672,14 @@ public class EntrustServiceImpl extends BaseServiceImpl<EntrustMapper, Entrust> |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
//给检测结果赋值 start
|
|
|
|
|
ItemAndAllList.forEach(item ->{ |
|
|
|
|
if (StringUtils.isNoneBlank(item.get("examineItem").toString()) && StringUtils.equals(examineItem.getName(),item.get("examineItem").toString())){ |
|
|
|
|
//遍历resultList 获取阴阳结果的数量
|
|
|
|
|
long yangNum = resultList.stream().filter(re -> StringUtils.equals("阳性" , re.getResult())).count(); |
|
|
|
|
long yinNum = resultList.stream().filter(re -> StringUtils.equals("阴性" , re.getResult())).count(); |
|
|
|
|
item.put("yangNum",yangNum); |
|
|
|
|
item.put("yinNum", yinNum); |
|
|
|
|
} |
|
|
|
|
}); |
|
|
|
|
// ItemAndAllList.forEach(item ->{
|
|
|
|
|
// if (StringUtils.isNoneBlank(item.get("examineItem").toString()) && StringUtils.equals(examineItem.getName(),item.get("examineItem").toString())){
|
|
|
|
|
// //遍历resultList 获取阴阳结果的数量
|
|
|
|
|
// long yangNum = resultList.stream().filter(re -> StringUtils.equals("阳性" , re.getResult())).count();
|
|
|
|
|
// long yinNum = resultList.stream().filter(re -> StringUtils.equals("阴性" , re.getResult())).count();
|
|
|
|
|
// item.put("examineResult", yangNum + "份为阳性," + yinNum + "份为阴性");
|
|
|
|
|
// }
|
|
|
|
|
// });
|
|
|
|
|
//给检验结果赋值 end
|
|
|
|
|
reportMainBody.put("list", resultList); |
|
|
|
|
} |
|
|
|
|
@ -1009,7 +1007,7 @@ public class EntrustServiceImpl extends BaseServiceImpl<EntrustMapper, Entrust> |
|
|
|
|
// 获取该仪器对象
|
|
|
|
|
Instrument instrument = instrumentService.getById(s); |
|
|
|
|
// 拼接仪器编号及名称
|
|
|
|
|
instrumentName += instrument.getCode() + " " + instrument.getName() + "," + "\\r"; |
|
|
|
|
instrumentName += instrument.getCode() + " " + instrument.getName() + "\r"; |
|
|
|
|
} |
|
|
|
|
result1.put("code", instrumentName); |
|
|
|
|
result1.put("experieDate", format3.format(taskBlueprint.getCreateTime())); |
|
|
|
|
@ -1115,7 +1113,31 @@ public class EntrustServiceImpl extends BaseServiceImpl<EntrustMapper, Entrust> |
|
|
|
|
map.put("examineBasis", byId2.getName()); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
map.put("examineResult", "符合标准"); |
|
|
|
|
// 检测结果
|
|
|
|
|
LambdaQueryWrapper<ExamineResult> wrapper = new LambdaQueryWrapper<>(); |
|
|
|
|
wrapper.eq(ExamineResult::getExamineId, examine.getId()); |
|
|
|
|
ExamineResult examineResult = examineResultService.getOne(wrapper); |
|
|
|
|
// json原始数据
|
|
|
|
|
List<ExamineResultVo> list = JSON.parseArray(examineResult.getExamineDataArr(), ExamineResultVo.class); |
|
|
|
|
int yangNum = 0; |
|
|
|
|
int yinNum = 0; |
|
|
|
|
int keyiNum = 0; |
|
|
|
|
for (ExamineResultVo vo : list) { |
|
|
|
|
if (vo.getResult() != null && !"".equals(vo.getResult())) { |
|
|
|
|
if (vo.getResult().contains("阳性")) { |
|
|
|
|
yangNum++; |
|
|
|
|
} else if ("阴性".equals(vo.getResult())) { |
|
|
|
|
yinNum++; |
|
|
|
|
} else if ("可疑".equals(vo.getResult())) { |
|
|
|
|
keyiNum++; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
String s = yangNum + "份为阳性," + yinNum + "份为阴性"; |
|
|
|
|
if (keyiNum > 0) { |
|
|
|
|
s += "," + keyiNum + "份为可疑"; |
|
|
|
|
} |
|
|
|
|
map.put("examineResult", s); |
|
|
|
|
ItemAndAllList.add(map); |
|
|
|
|
} |
|
|
|
|
return ItemAndAllList; |
|
|
|
|
@ -1233,7 +1255,7 @@ public class EntrustServiceImpl extends BaseServiceImpl<EntrustMapper, Entrust> |
|
|
|
|
if (i == (split2.length - 1)) { |
|
|
|
|
instrumentName += s2; |
|
|
|
|
} else { |
|
|
|
|
instrumentName += s2 + "," + "\\r"; |
|
|
|
|
instrumentName += s2 + "\r"; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
result.put("9", instrumentName); |
|
|
|
|
@ -1444,10 +1466,10 @@ public class EntrustServiceImpl extends BaseServiceImpl<EntrustMapper, Entrust> |
|
|
|
|
Map<String, Object> map = new HashMap<>(); |
|
|
|
|
map.put("num1", arrVOList.get(i).getExperieNum()); |
|
|
|
|
map.put("value1", replaceNullBySpace(arrVOList.get(i).getCtValue())); |
|
|
|
|
map.put("result1", arrVOList.get(i).getValue()); |
|
|
|
|
map.put("result1", arrVOList.get(i).getResult()); |
|
|
|
|
map.put("num2", arrVOList.get(arrVOList.size() / 2 + i).getExperieNum()); |
|
|
|
|
map.put("value2", replaceNullBySpace(arrVOList.get(arrVOList.size() / 2 + i).getCtValue())); |
|
|
|
|
map.put("result2", arrVOList.get(arrVOList.size() / 2 + i).getValue()); |
|
|
|
|
map.put("result2", arrVOList.get(arrVOList.size() / 2 + i).getResult()); |
|
|
|
|
resultList1.add(map); |
|
|
|
|
} |
|
|
|
|
} else { |
|
|
|
|
@ -1455,11 +1477,11 @@ public class EntrustServiceImpl extends BaseServiceImpl<EntrustMapper, Entrust> |
|
|
|
|
Map<String, Object> map = new HashMap<>(); |
|
|
|
|
map.put("num1", arrVOList.get(i).getExperieNum()); |
|
|
|
|
map.put("value1", replaceNullBySpace(arrVOList.get(i).getCtValue())); |
|
|
|
|
map.put("result1", arrVOList.get(i).getValue()); |
|
|
|
|
map.put("result1", arrVOList.get(i).getResult()); |
|
|
|
|
if (i < arrVOList.size() / 2) { |
|
|
|
|
map.put("num2", arrVOList.get(arrVOList.size() / 2 + i + 1).getExperieNum()); |
|
|
|
|
map.put("value2", replaceNullBySpace(arrVOList.get(arrVOList.size() / 2 + i + 1).getCtValue())); |
|
|
|
|
map.put("result2", arrVOList.get(arrVOList.size() / 2 + i + 1).getValue()); |
|
|
|
|
map.put("result2", arrVOList.get(arrVOList.size() / 2 + i + 1).getResult()); |
|
|
|
|
} |
|
|
|
|
resultList1.add(map); |
|
|
|
|
} |
|
|
|
|
@ -1574,13 +1596,13 @@ public class EntrustServiceImpl extends BaseServiceImpl<EntrustMapper, Entrust> |
|
|
|
|
Map<String, Object> map = new HashMap<>(); |
|
|
|
|
map.put("num1", arrVOList.get(i).getExperieNum()); |
|
|
|
|
map.put("value1", arrVOList.get(i).getCtValue()); |
|
|
|
|
map.put("result1", arrVOList.get(i).getValue()); |
|
|
|
|
map.put("result1", arrVOList.get(i).getResult()); |
|
|
|
|
map.put("num2", arrVOList.get(arrVOList.size() / 3 + i).getExperieNum()); |
|
|
|
|
map.put("value2", arrVOList.get(arrVOList.size() / 3 + i).getCtValue()); |
|
|
|
|
map.put("result2", arrVOList.get(arrVOList.size() / 3 + i).getValue()); |
|
|
|
|
map.put("result2", arrVOList.get(arrVOList.size() / 3 + i).getResult()); |
|
|
|
|
map.put("num3", arrVOList.get(arrVOList.size() / 3 * 2 + i).getExperieNum()); |
|
|
|
|
map.put("value3", arrVOList.get(arrVOList.size() / 3 * 2 + i).getCtValue()); |
|
|
|
|
map.put("result3", arrVOList.get(arrVOList.size() / 3 * 2 + i).getValue()); |
|
|
|
|
map.put("result3", arrVOList.get(arrVOList.size() / 3 * 2 + i).getResult()); |
|
|
|
|
resultList1.add(map); |
|
|
|
|
} |
|
|
|
|
} else { |
|
|
|
|
@ -1589,28 +1611,28 @@ public class EntrustServiceImpl extends BaseServiceImpl<EntrustMapper, Entrust> |
|
|
|
|
Map<String, Object> map = new HashMap<>(); |
|
|
|
|
map.put("num1", arrVOList.get(i).getExperieNum()); |
|
|
|
|
map.put("value1", arrVOList.get(i).getCtValue()); |
|
|
|
|
map.put("result1", arrVOList.get(i).getValue()); |
|
|
|
|
map.put("result1", arrVOList.get(i).getResult()); |
|
|
|
|
if (i < arrVOList.size() / 3) { |
|
|
|
|
map.put("num2", arrVOList.get(arrVOList.size() / 3 + i + 1).getExperieNum()); |
|
|
|
|
map.put("value2", arrVOList.get(arrVOList.size() / 3 + i + 1).getCtValue()); |
|
|
|
|
map.put("result2", arrVOList.get(arrVOList.size() / 3 + i + 1).getValue()); |
|
|
|
|
map.put("result2", arrVOList.get(arrVOList.size() / 3 + i + 1).getResult()); |
|
|
|
|
map.put("num3", arrVOList.get(arrVOList.size() / 3 * 2 + i + 1).getExperieNum()); |
|
|
|
|
map.put("value3", arrVOList.get(arrVOList.size() / 3 * 2 + i + 1).getCtValue()); |
|
|
|
|
map.put("result3", arrVOList.get(arrVOList.size() / 3 * 2 + i + 1).getValue()); |
|
|
|
|
map.put("result3", arrVOList.get(arrVOList.size() / 3 * 2 + i + 1).getResult()); |
|
|
|
|
} |
|
|
|
|
resultList1.add(map); |
|
|
|
|
} else if (arrVOList.size() % 3 == 2) { |
|
|
|
|
Map<String, Object> map = new HashMap<>(); |
|
|
|
|
map.put("num1", arrVOList.get(i).getExperieNum()); |
|
|
|
|
map.put("value1", arrVOList.get(i).getCtValue()); |
|
|
|
|
map.put("result1", arrVOList.get(i).getValue()); |
|
|
|
|
map.put("result1", arrVOList.get(i).getResult()); |
|
|
|
|
map.put("num2", arrVOList.get(arrVOList.size() / 3 + i + 1).getExperieNum()); |
|
|
|
|
map.put("value2", arrVOList.get(arrVOList.size() / 3 + i + 1).getCtValue()); |
|
|
|
|
map.put("result2", arrVOList.get(arrVOList.size() / 3 + i + 1).getValue()); |
|
|
|
|
map.put("result2", arrVOList.get(arrVOList.size() / 3 + i + 1).getResult()); |
|
|
|
|
if (i < arrVOList.size() / 3) { |
|
|
|
|
map.put("num3", arrVOList.get(arrVOList.size() / 3 * 2 + i + 2).getExperieNum()); |
|
|
|
|
map.put("value3", arrVOList.get(arrVOList.size() / 3 * 2 + i + 2).getCtValue()); |
|
|
|
|
map.put("result3", arrVOList.get(arrVOList.size() / 3 * 2 + i + 2).getValue()); |
|
|
|
|
map.put("result3", arrVOList.get(arrVOList.size() / 3 * 2 + i + 2).getResult()); |
|
|
|
|
} |
|
|
|
|
resultList1.add(map); |
|
|
|
|
} |
|
|
|
|
@ -1874,6 +1896,7 @@ public class EntrustServiceImpl extends BaseServiceImpl<EntrustMapper, Entrust> |
|
|
|
|
Map<String, Object> map = new HashMap<>(); |
|
|
|
|
if (j == 0) { |
|
|
|
|
map.put("1", s + "(" + startNum + "-" + endNum + ")"); |
|
|
|
|
map.put("0", "布板图"); |
|
|
|
|
} else if (j == 1) { |
|
|
|
|
map.put("0", " "); |
|
|
|
|
map.put("1", "1"); |
|
|
|
|
@ -2158,6 +2181,7 @@ public class EntrustServiceImpl extends BaseServiceImpl<EntrustMapper, Entrust> |
|
|
|
|
Map<String, Object> map = new HashMap<>(); |
|
|
|
|
if (j == 0) { |
|
|
|
|
map.put("1", s + "(" + startNum + "-" + endNum + ")"); |
|
|
|
|
map.put("0", "布板图"); |
|
|
|
|
} else if (j == 1) { |
|
|
|
|
map.put("0", " "); |
|
|
|
|
map.put("1", "1"); |
|
|
|
|
@ -2442,6 +2466,7 @@ public class EntrustServiceImpl extends BaseServiceImpl<EntrustMapper, Entrust> |
|
|
|
|
Map<String, Object> map = new HashMap<>(); |
|
|
|
|
if (j == 0) { |
|
|
|
|
map.put("1", s + "(" + startNum + "-" + endNum + ")"); |
|
|
|
|
map.put("0", "布板图"); |
|
|
|
|
} else if (j == 1) { |
|
|
|
|
map.put("0", " "); |
|
|
|
|
map.put("1", "1"); |
|
|
|
|
@ -2846,6 +2871,7 @@ public class EntrustServiceImpl extends BaseServiceImpl<EntrustMapper, Entrust> |
|
|
|
|
Map<String, Object> map = new HashMap<>(); |
|
|
|
|
if (j == 0) { |
|
|
|
|
map.put("1", s + "(" + startNum + "-" + endNum + ")"); |
|
|
|
|
map.put("0", "布板图"); |
|
|
|
|
} else if (j == 1) { |
|
|
|
|
map.put("0", " "); |
|
|
|
|
map.put("1", "1"); |
|
|
|
|
@ -2940,24 +2966,24 @@ public class EntrustServiceImpl extends BaseServiceImpl<EntrustMapper, Entrust> |
|
|
|
|
try { |
|
|
|
|
doc = WordExportUtil.exportWord07(url, result); |
|
|
|
|
/** ------------------尝试修改对齐方式 start ----------------------------**/ |
|
|
|
|
XWPFTable xwpfTable = doc.getTables().get(1);//获取第几个表格,从0开始
|
|
|
|
|
XWPFTableRow row = xwpfTable.getRow(2);//获取表格的数据行
|
|
|
|
|
|
|
|
|
|
XWPFTableCell cell11 = row.getCell(1); |
|
|
|
|
XWPFTableCell cell1 = row.getCell(2); |
|
|
|
|
|
|
|
|
|
XWPFTableCell cell22 = row.getCell(4); |
|
|
|
|
XWPFTableCell cell2 = row.getCell(5); |
|
|
|
|
|
|
|
|
|
XWPFParagraph sourcePara1 = cell1.getParagraphs().get(0);//获取每一行
|
|
|
|
|
XWPFParagraph sourcePara11 = cell11.getParagraphs().get(0); |
|
|
|
|
sourcePara11.setAlignment(StringUtils.equals("阳性",sourcePara1.getText()) ? ParagraphAlignment.LEFT : ParagraphAlignment.RIGHT ); |
|
|
|
|
sourcePara1.setAlignment(StringUtils.equals("阳性",sourcePara1.getText()) ? ParagraphAlignment.LEFT : ParagraphAlignment.RIGHT ); |
|
|
|
|
|
|
|
|
|
XWPFParagraph sourcePara2 = cell2.getParagraphs().get(0);//获取每一行
|
|
|
|
|
XWPFParagraph sourcePara22 = cell22.getParagraphs().get(0); |
|
|
|
|
sourcePara2.setAlignment(StringUtils.equals("阳性",sourcePara2.getText()) ? ParagraphAlignment.LEFT : ParagraphAlignment.RIGHT ); |
|
|
|
|
sourcePara22.setAlignment(StringUtils.equals("阳性",sourcePara2.getText()) ? ParagraphAlignment.LEFT : ParagraphAlignment.RIGHT ); |
|
|
|
|
// XWPFTable xwpfTable = doc.getTables().get(1);//获取第几个表格,从0开始
|
|
|
|
|
// XWPFTableRow row = xwpfTable.getRow(2);//获取表格的数据行
|
|
|
|
|
//
|
|
|
|
|
// XWPFTableCell cell11 = row.getCell(1);
|
|
|
|
|
// XWPFTableCell cell1 = row.getCell(2);
|
|
|
|
|
//
|
|
|
|
|
// XWPFTableCell cell22 = row.getCell(4);
|
|
|
|
|
// XWPFTableCell cell2 = row.getCell(5);
|
|
|
|
|
//
|
|
|
|
|
// XWPFParagraph sourcePara1 = cell1.getParagraphs().get(0);//获取每一行
|
|
|
|
|
// XWPFParagraph sourcePara11 = cell11.getParagraphs().get(0);
|
|
|
|
|
// sourcePara11.setAlignment(StringUtils.equals("阳性",sourcePara1.getText()) ? ParagraphAlignment.LEFT : ParagraphAlignment.RIGHT );
|
|
|
|
|
// sourcePara1.setAlignment(StringUtils.equals("阳性",sourcePara1.getText()) ? ParagraphAlignment.LEFT : ParagraphAlignment.RIGHT );
|
|
|
|
|
//
|
|
|
|
|
// XWPFParagraph sourcePara2 = cell2.getParagraphs().get(0);//获取每一行
|
|
|
|
|
// XWPFParagraph sourcePara22 = cell22.getParagraphs().get(0);
|
|
|
|
|
// sourcePara2.setAlignment(StringUtils.equals("阳性",sourcePara2.getText()) ? ParagraphAlignment.LEFT : ParagraphAlignment.RIGHT );
|
|
|
|
|
// sourcePara22.setAlignment(StringUtils.equals("阳性",sourcePara2.getText()) ? ParagraphAlignment.LEFT : ParagraphAlignment.RIGHT );
|
|
|
|
|
|
|
|
|
|
/** ------------------尝试修改对齐方式 end ------------------------------**/ |
|
|
|
|
// fos = new FileOutputStream("C://Users//AAA//Desktop//shuojin//dayin//检测报告2.docx");
|
|
|
|
|
@ -3004,7 +3030,7 @@ public class EntrustServiceImpl extends BaseServiceImpl<EntrustMapper, Entrust> |
|
|
|
|
for (int i = 0; i < split.length - 1; i++) { |
|
|
|
|
result += split[i] + "-"; |
|
|
|
|
} |
|
|
|
|
result = result.substring(0, result.length()-1); |
|
|
|
|
result = result.substring(0, result.length() - 1); |
|
|
|
|
} |
|
|
|
|
return result; |
|
|
|
|
} |
|
|
|
|
@ -3253,14 +3279,7 @@ public class EntrustServiceImpl extends BaseServiceImpl<EntrustMapper, Entrust> |
|
|
|
|
} |
|
|
|
|
String deptName = sysClient.getDeptName(eTask.getDeptId()).getData(); |
|
|
|
|
result.put("deptName", deptName); |
|
|
|
|
result.put("acceptanceNum", entrust.getAcceptanceNum()); |
|
|
|
|
|
|
|
|
|
/** *通过主表id到f_entruest_simple子表中获取experie_num的前缀作为检验编号 start **/ |
|
|
|
|
QueryWrapper<Simple> simpleWrapper = new QueryWrapper<>(); |
|
|
|
|
simpleWrapper.eq("entrustId" ,Long.valueOf(id)); |
|
|
|
|
Simple simple = simpleService.getOne(simpleWrapper); |
|
|
|
|
result.put("experieNo", simple.getExperieNum().split("-")[0]); |
|
|
|
|
/** *通过主表id到f_entruest_simple子表中获取experie_num的前缀作为检验编号 end **/ |
|
|
|
|
// result.put("acceptanceNum", entrust.getAcceptanceNum());
|
|
|
|
|
|
|
|
|
|
if (eTask != null) { |
|
|
|
|
// position1
|
|
|
|
|
@ -3312,10 +3331,10 @@ public class EntrustServiceImpl extends BaseServiceImpl<EntrustMapper, Entrust> |
|
|
|
|
result.put("flowTime", "/"); |
|
|
|
|
} |
|
|
|
|
//检测任务书交回日期
|
|
|
|
|
// result.put("backCrossTime", format.format(eTask.getBackCrossTime()));
|
|
|
|
|
// String name1 = userClient.userInfoById(Long.parseLong(eTask.getBackCrossRecipientBy())).getData().getName();
|
|
|
|
|
result.put("backCrossTime", format.format(eTask.getBackCrossTime())); |
|
|
|
|
String name1 = userClient.userInfoById(Long.parseLong(eTask.getBackCrossRecipientBy())).getData().getName(); |
|
|
|
|
//接收人
|
|
|
|
|
// result.put("backCrossRecipient", name1);
|
|
|
|
|
result.put("backCrossRecipient", name1); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
@ -3328,7 +3347,7 @@ public class EntrustServiceImpl extends BaseServiceImpl<EntrustMapper, Entrust> |
|
|
|
|
if (CollectionUtils.isNotEmpty(examineList)) { |
|
|
|
|
for (Examine examine : examineList) { |
|
|
|
|
Map<String, Object> map = new HashMap<>(); |
|
|
|
|
map.put("simpleName", examine.getSimpleName()); |
|
|
|
|
map.put("simpleName", StringUtils.remove(examine.getSimpleName(), "-")); |
|
|
|
|
map.put("simpleCount", examine.getSimpleCount()); |
|
|
|
|
// 获取当前检测对应的检测编号
|
|
|
|
|
String[] split = examine.getExperieNum().split(","); |
|
|
|
|
@ -3357,6 +3376,8 @@ public class EntrustServiceImpl extends BaseServiceImpl<EntrustMapper, Entrust> |
|
|
|
|
} |
|
|
|
|
resultList.add(map); |
|
|
|
|
} |
|
|
|
|
String s = examineList.get(0).getExperieNum().split(",")[0]; |
|
|
|
|
result.put("acceptanceNum", getExperieNumPrefix(s)); |
|
|
|
|
} |
|
|
|
|
result.put("resultList", resultList); |
|
|
|
|
|
|
|
|
|
@ -3594,7 +3615,7 @@ public class EntrustServiceImpl extends BaseServiceImpl<EntrustMapper, Entrust> |
|
|
|
|
map.put("originalNum", simple.getOriginalNum()); |
|
|
|
|
map.put("num", excel.getExperieNum()); |
|
|
|
|
map.put("value", excel.getCtValue()); |
|
|
|
|
map.put("result", excel.getValue()); |
|
|
|
|
map.put("result", excel.getResult()); |
|
|
|
|
resultList.add(map); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
@ -3615,7 +3636,7 @@ public class EntrustServiceImpl extends BaseServiceImpl<EntrustMapper, Entrust> |
|
|
|
|
map.put("originalNum", simple.getOriginalNum()); |
|
|
|
|
map.put("num", excel.getExperieNum()); |
|
|
|
|
map.put("value", excel.getCtValue()); |
|
|
|
|
map.put("result", excel.getValue()); |
|
|
|
|
map.put("result", excel.getResult()); |
|
|
|
|
resultList.add(map); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|