Commit 722d389757523fc2eee468bcc93abdaa1d115eaf
1 parent
a12d011f92
Exists in
master
and in
6 other branches
智能建档
Showing 2 changed files with 16 additions and 0 deletions
platform-operate-api/src/main/java/com/lyms/platform/operate/web/facade/BookbuildingFacade.java
View file @
722d389
... | ... | @@ -1317,7 +1317,11 @@ |
1317 | 1317 | List<Patients> patients = yunBookbuildingService.queryPregnantWithQuery(patientsQuery); |
1318 | 1318 | if (patients != null && patients.size() > 0) { |
1319 | 1319 | Patients p = patients.get(0); |
1320 | + | |
1321 | + FilePathModel filePath = yunBookbuildingService.findFilePath(p.getId()); | |
1322 | + | |
1320 | 1323 | result = getResult(p); |
1324 | + result.setFilePath(filePath); | |
1321 | 1325 | /** 末次月经和纠正末次月经反起来返回 */ |
1322 | 1326 | if (p.getFuckLastMens() != null) { |
1323 | 1327 | result.setFuckLastMens(DateUtil.getyyyy_MM_dd(p.getLastMenses())); |
platform-operate-api/src/main/java/com/lyms/platform/operate/web/result/PregnantInfoResult.java
View file @
722d389
1 | 1 | package com.lyms.platform.operate.web.result; |
2 | 2 | |
3 | +import com.lyms.platform.pojo.FilePathModel; | |
4 | + | |
3 | 5 | import java.util.List; |
4 | 6 | import java.util.Map; |
5 | 7 | |
... | ... | @@ -28,6 +30,16 @@ |
28 | 30 | private List<Map<String,String>> serInfos; |
29 | 31 | //显示服务信息 |
30 | 32 | private List<PatientSerResult> patientSerResults; |
33 | + | |
34 | + private FilePathModel filePath; | |
35 | + | |
36 | + public FilePathModel getFilePath() { | |
37 | + return filePath; | |
38 | + } | |
39 | + | |
40 | + public void setFilePath(FilePathModel filePath) { | |
41 | + this.filePath = filePath; | |
42 | + } | |
31 | 43 | |
32 | 44 | public String getSendCareMan() { |
33 | 45 | return sendCareMan; |