Commit c532781ef6375b8d8841c6275409029ef25b33e2
1 parent
2480712d05
Exists in
master
and in
6 other branches
承德分娩
Showing 1 changed file with 1 additions and 1 deletions
platform-operate-api/src/main/java/com/lyms/hospitalapi/lpfy/LpfyFmService.java
View file @
c532781
... | ... | @@ -414,7 +414,7 @@ |
414 | 414 | deliverAddRequest.setDueWeek(week); |
415 | 415 | } |
416 | 416 | |
417 | - deliverAddRequest.setTireNumber(allFm.getFETUS_NUM() != null ? allFm.getFETUS_NUM() : 1);// 胎数(之前赋值为死值1) | |
417 | + deliverAddRequest.setTireNumber(StringUtils.isNotEmpty(allFm.getSFETUS_NUM()) ? Integer.parseInt( allFm.getSFETUS_NUM()) : 1);// 胎数(之前赋值为死值1) | |
418 | 418 | Integer placenta_Num = allFm.getPLACENTA_NUM(); |
419 | 419 | if(placenta_Num!=null){ |
420 | 420 | deliverAddRequest.setPlacenta(allFm.getPLACENTA_NUM().toString());// 胎盘(之前赋值为死值1) |