Commit 2489746677bdaed078e19522941fc53cac62e089
1 parent
d86209acaa
Exists in
master
and in
6 other branches
产检节点统计
Showing 3 changed files with 4 additions and 9 deletions
platform-operate-api/src/main/java/com/lyms/platform/operate/web/facade/AreaCountFacade.java
View file @
2489746
... | ... | @@ -360,7 +360,7 @@ |
360 | 360 | } |
361 | 361 | else if (key.contains("num15")) |
362 | 362 | { |
363 | - num20.add(result.get(key)); | |
363 | + num15.add(result.get(key)); | |
364 | 364 | } |
365 | 365 | else if (key.contains("num20")) |
366 | 366 | { |
... | ... | @@ -372,7 +372,7 @@ |
372 | 372 | } |
373 | 373 | else if (key.contains("num27")) |
374 | 374 | { |
375 | - num24.add(result.get(key)); | |
375 | + num27.add(result.get(key)); | |
376 | 376 | } |
377 | 377 | else if (key.contains("num36")) |
378 | 378 | { |
platform-operate-api/src/main/java/com/lyms/platform/operate/web/worker/CheckPointCountWorker.java
View file @
2489746
... | ... | @@ -135,7 +135,7 @@ |
135 | 135 | int itemnum27 = result.get("itemnum27"); |
136 | 136 | int itemnum36 = result.get("itemnum36"); |
137 | 137 | int itemnum40 = result.get("itemnum40"); |
138 | - int cjNum = itemnum12+itemnum20+itemnum24+itemnum36+itemnum40; | |
138 | + int cjNum = itemnum12+itemnum15+itemnum20+itemnum24+itemnum27+itemnum36+itemnum40; | |
139 | 139 | if (buildCount == 0 && cjNum == 0) |
140 | 140 | { |
141 | 141 | continue; |
... | ... | @@ -144,7 +144,7 @@ |
144 | 144 | map.put("CJ_NUM", cjNum); |
145 | 145 | map.put("NUM_12", itemnum12); |
146 | 146 | map.put("NUM_15", itemnum15); |
147 | - map.put("NUM_16", itemnum20); | |
147 | + map.put("NUM_20", itemnum20); | |
148 | 148 | map.put("NUM_24", itemnum24); |
149 | 149 | map.put("NUM_27", itemnum27); |
150 | 150 | map.put("NUM_36", itemnum36); |
platform-operate-api/src/main/java/com/lyms/platform/operate/web/worker/CheckWeeksNumWorker.java
View file @
2489746