Commit 3649b2cbf6e05476514f445b5bf998956f55a277
1 parent
9fc334e5c6
Exists in
master
and in
8 other branches
修改新电子病历
Showing 2 changed files with 2 additions and 2 deletions
platform-operate-api/src/main/java/com/lyms/platform/operate/web/facade/SieveFacade.java
View file @
3649b2c
... | ... | @@ -220,7 +220,7 @@ |
220 | 220 | sieveListResult.convertToResult(sieveModel); |
221 | 221 | Patients patients= patientsService.findOnePatientById(sieveModel.getParentId()); |
222 | 222 | if(null!=patients){ |
223 | - sieveListResult.setIsGravida(patients.getType()==3?"0":"1"); | |
223 | + sieveListResult.setIsGravida(patients.getFmDate()!=null?"0":"1"); | |
224 | 224 | } |
225 | 225 | data.add(sieveListResult); |
226 | 226 | } |
platform-operate-api/src/main/java/com/lyms/platform/operate/web/result/MatDeliverListResult.java
View file @
3649b2c
... | ... | @@ -101,7 +101,7 @@ |
101 | 101 | /* if (null != patients.getBuildType()) { |
102 | 102 | setDueType(2 == patients.getBuildType() ? "1" : "0"); |
103 | 103 | }*/ |
104 | - setIsGravida(patients.getType()==3?"0":"1"); | |
104 | + setIsGravida(patients.getFmDate()!=null?"0":"1"); | |
105 | 105 | setName(patients.getUsername()); |
106 | 106 | setPhone(patients.getPhone()); |
107 | 107 | setRemarks(patients.getMremark()); |