Commit 47fd4816a502a4d60222e4d3de924928f6e681ea
1 parent
5f6c1350c7
Exists in
master
and in
8 other branches
修改新电子病历
Showing 1 changed file with 2 additions and 2 deletions
platform-operate-api/src/main/java/com/lyms/platform/operate/web/facade/AntenatalExaminationFacade.java
View file @
47fd481
| ... | ... | @@ -265,7 +265,7 @@ |
| 265 | 265 | Object idObj = map.get("fxpf"); |
| 266 | 266 | if (null != idObj && !"null".equals(idObj.toString()) && !"".equals(idObj.toString())) { |
| 267 | 267 | BasicConfig basicConfig = basicConfigService.getOneBasicConfigById(idObj.toString()); |
| 268 | - score +=basicConfig.getScore(); | |
| 268 | + score +=NumberUtils.toInt(basicConfig.getName(), 0); | |
| 269 | 269 | } |
| 270 | 270 | } |
| 271 | 271 | } catch (Exception e) { |
| ... | ... | @@ -318,7 +318,7 @@ |
| 318 | 318 | Object idObj = map.get("fxpf"); |
| 319 | 319 | if (null != idObj && !"null".equals(idObj.toString()) && !"".equals(idObj.toString())) { |
| 320 | 320 | BasicConfig basicConfig = basicConfigService.getOneBasicConfigById(idObj.toString()); |
| 321 | - score +=basicConfig.getScore(); | |
| 321 | + score +=NumberUtils.toInt(basicConfig.getName(),0); | |
| 322 | 322 | } |
| 323 | 323 | } |
| 324 | 324 | } catch (Exception e) { |