Commit 7ce3711c88126ec5cc6ef5d94c504b5934306af0
1 parent
bc757e8488
Exists in
master
and in
6 other branches
秦皇岛-儿保检查-身长体重图增加建档数据
Showing 1 changed file with 8 additions and 0 deletions
platform-operate-api/src/main/java/com/lyms/platform/operate/web/facade/BabyCheckFacade.java
View file @
7ce3711
... | ... | @@ -3372,6 +3372,14 @@ |
3372 | 3372 | } |
3373 | 3373 | } |
3374 | 3374 | } |
3375 | + //秦皇岛需求 | |
3376 | + if(null!=babyModel&&"216".equals(babyModel.getHospitalId())){ | |
3377 | + Map<String,Object> buildRecord=new HashMap<>(); | |
3378 | + buildRecord.put("time", DateUtil.getBabyAgeMonth(babyModel.getBirth(), babyModel.getBuildDate())); | |
3379 | + buildRecord.put("height", babyModel.getBabyHeight()); | |
3380 | + buildRecord.put("weight", babyModel.getBabyWeight()); | |
3381 | + tables.add(buildRecord); | |
3382 | + } | |
3375 | 3383 | map.put("weightTitles", weightTitles); |
3376 | 3384 | map.put("weightValues", weightValues); |
3377 | 3385 |