Commit 980d3e1f2538c946aa75dad9795088e1752858ba
1 parent
d463c72a96
Exists in
master
and in
6 other branches
区域围产儿统计
Showing 1 changed file with 4 additions and 4 deletions
platform-common/src/main/java/com/lyms/platform/common/utils/ExcelUtil.java
View file @
980d3e1
| ... | ... | @@ -461,7 +461,7 @@ |
| 461 | 461 | ws.addCell(label1); |
| 462 | 462 | |
| 463 | 463 | int arrayIndex = 0; |
| 464 | - for (int i = 6, len = values.size()+6; i < len; i++, arrayIndex++) | |
| 464 | + for (int i = 5, len = values.size()+5; i < len; i++, arrayIndex++) | |
| 465 | 465 | { |
| 466 | 466 | |
| 467 | 467 | Set<String> sets = values.get(arrayIndex).keySet(); |
| 468 | 468 | |
| 469 | 469 | |
| ... | ... | @@ -488,14 +488,14 @@ |
| 488 | 488 | |
| 489 | 489 | |
| 490 | 490 | int arrayIndex1 = 0; |
| 491 | - for (int i = 5, len = values.size()+5; i < len; i++, arrayIndex1++) | |
| 491 | + for (int i = 4, len = qkValues.size()+4; i < len; i++, arrayIndex1++) | |
| 492 | 492 | { |
| 493 | 493 | |
| 494 | - Set<String> sets = values.get(arrayIndex1).keySet(); | |
| 494 | + Set<String> sets = qkValues.get(arrayIndex1).keySet(); | |
| 495 | 495 | int j = 13; |
| 496 | 496 | for (String key : sets) |
| 497 | 497 | { |
| 498 | - String value = values.get(arrayIndex1).get(key); | |
| 498 | + String value = qkValues.get(arrayIndex1).get(key); | |
| 499 | 499 | if (StringUtils.isNotEmpty(value) && StringUtils.isNum(value)) |
| 500 | 500 | { |
| 501 | 501 | WritableCellFormat wcfN = new WritableCellFormat(contentFont); |