Commit 566d1c591b49c42c1cf36a70b30b98689fc60c3e
1 parent
775be8d8ef
Exists in
master
and in
8 other branches
孕妇分娩后 变成产妇
Showing 1 changed file with 4 additions and 0 deletions
platform-operate-api/src/main/java/com/lyms/platform/operate/web/facade/AntenatalExaminationFacade.java
View file @
566d1c5
... | ... | @@ -225,6 +225,9 @@ |
225 | 225 | if (CollectionUtils.isNotEmpty(list)) { |
226 | 226 | antexListResult.convertToResult(null, list.get(0), null); |
227 | 227 | for (Patients patients : list) { |
228 | + HighScoreResult highScoreResult = findLastRisk(patients.getId()); | |
229 | + antexListResult.setRiskFactor(highScoreResult.getHighRisk()); | |
230 | + antexListResult.setRiskScore(highScoreResult.getScore()+""); | |
228 | 231 | List<StopPregModel> stopPregs = null; |
229 | 232 | List<AntData> data = new ArrayList<>(); |
230 | 233 | MatDeliverQuery matDeliverQuery = new MatDeliverQuery(); |
... | ... | @@ -271,6 +274,7 @@ |
271 | 274 | data.add(new AntData(an, null != organization ? organization.getName() : "")); |
272 | 275 | } |
273 | 276 | } |
277 | + | |
274 | 278 | //复诊记录 |
275 | 279 | AntExQuery antExQuery = new AntExQuery(); |
276 | 280 | antExQuery.setYn(YnEnums.YES.getId()); |