Commit b4ec813fa995d97ef0930755775aab08c9c1504d
1 parent
4fbb437ddd
Exists in
master
and in
6 other branches
筛查统计
Showing 1 changed file with 5 additions and 1 deletions
platform-common/src/main/java/com/lyms/platform/common/utils/ExcelUtil.java
View file @
b4ec813
... | ... | @@ -382,7 +382,7 @@ |
382 | 382 | ws.addCell(label1); |
383 | 383 | |
384 | 384 | int arrayIndex = 0; |
385 | - for (int i = 5, len = values.size()+5; i < len; i++, arrayIndex++) | |
385 | + for (int i = 6, len = values.size()+6; i < len; i++, arrayIndex++) | |
386 | 386 | { |
387 | 387 | |
388 | 388 | Set<String> sets = values.get(arrayIndex).keySet(); |
... | ... | @@ -407,6 +407,10 @@ |
407 | 407 | } |
408 | 408 | |
409 | 409 | } |
410 | + | |
411 | + ws.addCell(new Label(0, values.size()+6, "实际报出日期: 单位负责人签字: 填表人签名: ", contentFormt)); | |
412 | + | |
413 | + ws.mergeCells(0, values.size()+6, 29, values.size()+6); | |
410 | 414 | |
411 | 415 | book.write(); |
412 | 416 | book.close(); |