Commit 50702e77 by jiangxuming

fix(core): 更新commons-io版本并修正写错的列表引用

parent 59590dee
......@@ -89,7 +89,7 @@ dependencies {
compile("com.itextpdf:itextpdf:5.5.13")
compile("com.google.zxing:core:3.3.3")
compile("org.codehaus.jackson:jackson-mapper-asl:1.9.13")
compile("commons-io:commons-io:2.5")
compile("commons-io:commons-io:2.15.0")
compile("commons-fileupload:commons-fileupload:1.3.3")
compile("org.antlr:antlr4-runtime:4.7.1")
compile("org.dom4j:dom4j:2.1.1")
......
......@@ -656,13 +656,13 @@ public class EntrustSampleServiceImpl extends BaseServiceImpl<EntrustSampleMappe
sheet.getRow(1).getCell(m + 7).setCellValue(voList3001.size() > 6 ? voList3001.get(6) : "");
sheet.getRow(1).getCell(m + 8).setCellValue(voList3001.size() > 7 ? voList3001.get(7) : "");
sheet.getRow(1).getCell(m + 9).setCellValue(voList3001.size() > 8 ? voList3001.get(8) : "");
sheet.getRow(1).getCell(m + 10).setCellValue(voList4001.size() > 9 ? voList3001.get(9) : "");
sheet.getRow(1).getCell(m + 11).setCellValue(voList4001.size() > 10 ? voList3001.get(10) : "");
sheet.getRow(1).getCell(m + 12).setCellValue(voList4001.size() > 11 ? voList3001.get(11) : "");
sheet.getRow(1).getCell(m + 13).setCellValue(voList4001.size() > 12 ? voList3001.get(12) : "");
sheet.getRow(1).getCell(m + 14).setCellValue(voList4001.size() > 13 ? voList3001.get(13) : "");
sheet.getRow(1).getCell(m + 15).setCellValue(voList4001.size() > 14 ? voList3001.get(14) : "");
sheet.getRow(1).getCell(m + 16).setCellValue(voList4001.size() > 15 ? voList3001.get(15) : "");
sheet.getRow(1).getCell(m + 10).setCellValue(voList3001.size() > 9 ? voList3001.get(9) : "");
sheet.getRow(1).getCell(m + 11).setCellValue(voList3001.size() > 10 ? voList3001.get(10) : "");
sheet.getRow(1).getCell(m + 12).setCellValue(voList3001.size() > 11 ? voList3001.get(11) : "");
sheet.getRow(1).getCell(m + 13).setCellValue(voList3001.size() > 12 ? voList3001.get(12) : "");
sheet.getRow(1).getCell(m + 14).setCellValue(voList3001.size() > 13 ? voList3001.get(13) : "");
sheet.getRow(1).getCell(m + 15).setCellValue(voList3001.size() > 14 ? voList3001.get(14) : "");
sheet.getRow(1).getCell(m + 16).setCellValue(voList3001.size() > 15 ? voList3001.get(15) : "");
m += 17;
}
}
......
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