Commit 9c05df6a472f59def5adb6d970cd7898e26dc398

Authored by liquanyu
1 parent 249a72b073

update

Showing 2 changed files with 11 additions and 2 deletions

platform-common/src/main/java/com/lyms/platform/common/enums/CheckMonthEnums.java View file @ 9c05df6
... ... @@ -17,7 +17,8 @@
17 17 NIGHT(36, "3岁"),
18 18 TEN(48, "4岁"),
19 19 ELEVEN(60, "5岁"),
20   - TWELVE(72, "6岁");
  20 + TWELVE(72, "6岁"),
  21 + D(73, ">6岁");
21 22  
22 23 private Integer id;
23 24 private String name;
platform-operate-api/src/main/java/com/lyms/platform/operate/web/service/impl/BabyEyeCheckServiceImpl.java View file @ 9c05df6
... ... @@ -589,7 +589,15 @@
589 589 positive.append("手持眼光仪(医生判定)");
590 590 }
591 591 if ("yang".equals(babyEyeCheck.getRefraction2())) {
592   - positive.append("屈光(医生判定)");
  592 + if ("197".equals(babyEyeCheck.getHospitalId()))
  593 + {
  594 + positive.append("屈光不正");
  595 + }
  596 + else
  597 + {
  598 + positive.append("屈光(医生判定)");
  599 + }
  600 +
593 601 }
594 602  
595 603 if ("ruoyang".equals(babyEyeCheck.getRedRightReflex()))