Commit bedcf372fd3b2894f935eb3b54f02afd3487363e
1 parent
794b3a15c0
Exists in
master
and in
6 other branches
分娩作废产检劵
Showing 1 changed file with 4 additions and 4 deletions
platform-operate-api/src/main/java/com/lyms/platform/operate/web/facade/BabyStatisticsManagerFacade.java
View file @
bedcf37
| ... | ... | @@ -778,16 +778,16 @@ |
| 778 | 778 | Integer check30 = 0; |
| 779 | 779 | Integer check36 = 0; |
| 780 | 780 | for (Map<String, Object> other : list) { |
| 781 | - if ("18".equals(other.get("examineMonth").toString())) { | |
| 781 | + if (null!=other.get("examineMonth")&&"18".equals(other.get("examineMonth").toString())) { | |
| 782 | 782 | check18 = Integer.valueOf(other.get("cnt").toString()); |
| 783 | 783 | } |
| 784 | - if ("24".equals(other.get("examineMonth").toString())) { | |
| 784 | + if (null!=other.get("examineMonth")&&"24".equals(other.get("examineMonth").toString())) { | |
| 785 | 785 | check24 = Integer.valueOf(other.get("cnt").toString()); |
| 786 | 786 | } |
| 787 | - if ("30".equals(other.get("examineMonth").toString())) { | |
| 787 | + if (null!=other.get("examineMonth")&&"30".equals(other.get("examineMonth").toString())) { | |
| 788 | 788 | check30 = Integer.valueOf(other.get("cnt").toString()); |
| 789 | 789 | } |
| 790 | - if ("36".equals(other.get("examineMonth").toString())) { | |
| 790 | + if (null!=other.get("examineMonth")&&"36".equals(other.get("examineMonth").toString())) { | |
| 791 | 791 | check36 = Integer.valueOf(other.get("cnt").toString()); |
| 792 | 792 | } |
| 793 | 793 | } |