Commit 38c6a57ae2fe924570baae6a2934a18d5d8788f4
1 parent
ad93cf19f3
Exists in
master
and in
1 other branch
update
Showing 1 changed file with 6 additions and 2 deletions
platform-operate-api/src/main/java/com/lyms/platform/operate/web/facade/SieveFacade.java
View file @
38c6a57
| ... | ... | @@ -1175,7 +1175,9 @@ |
| 1175 | 1175 | result.put("patientID", sieveApply.getPatientID()); |
| 1176 | 1176 | result.put("applicationNo", sieveApply.getApplicationNo()); |
| 1177 | 1177 | result.put("smoking", sieveApply.getSmoking()); |
| 1178 | - result.put("insulin", sieveApply.getInsulin()); | |
| 1178 | + if(sieveApply.getInsulin()!=null){ | |
| 1179 | + result.put("insulin", sieveApply.getInsulin().toString()); | |
| 1180 | + } | |
| 1179 | 1181 | result.put("hC", sieveApply.gethC()); |
| 1180 | 1182 | result.put("mannualEntry", sieveApply.getMannualEntry()); |
| 1181 | 1183 | result.put("nT", sieveApply.getnT()); |
| ... | ... | @@ -1188,7 +1190,9 @@ |
| 1188 | 1190 | result.put("transferDate", DateUtil.getyyyy_MM_dd(sieveApply.getTransferDate())); |
| 1189 | 1191 | result.put("donorBirthDate", DateUtil.getyyyy_MM_dd(sieveApply.getDonorBirthDate())); |
| 1190 | 1192 | result.put("nasalBone", sieveApply.getNasalBone()); |
| 1191 | - result.put("monozygous", sieveApply.getMonozygous()); | |
| 1193 | + if(sieveApply.getMonozygous()!=null){ | |
| 1194 | + result.put("monozygous", sieveApply.getMonozygous().toString()); | |
| 1195 | + } | |
| 1192 | 1196 | result.put("patientType", sieveApply.getPatientType()); |
| 1193 | 1197 | if( pat!= null && StringUtils.isEmpty(sieveApply.getCaiyangyunzhou())){ |
| 1194 | 1198 | yunZhouMth(sieveApply,pat); |