Commit 5b1eef3bd2fdc6c85acc2e4c7528dd810644fc12
1 parent
904c74189a
Exists in
master
and in
6 other branches
产后方式管理
Showing 2 changed files with 13 additions and 2 deletions
platform-operate-api/src/main/java/com/lyms/platform/operate/web/facade/MatDeliverFacade.java
View file @
5b1eef3
... | ... | @@ -1881,7 +1881,18 @@ |
1881 | 1881 | |
1882 | 1882 | // 访视列表无需加上分娩医院,因此注释 |
1883 | 1883 | //matDeliverQuery.setFmHospitalList(hospitalList); |
1884 | - matDeliverQuery.setFsHospitalId(hospitalId); | |
1884 | + if (StringUtils.isNotEmpty(matdeliverFollowRequest.getIsArea())) | |
1885 | + { | |
1886 | + if (StringUtils.isNotEmpty(matdeliverFollowRequest.getFsHospitalId())) | |
1887 | + { | |
1888 | + matDeliverQuery.setFsHospitalId(matdeliverFollowRequest.getFsHospitalId()); | |
1889 | + } | |
1890 | + } | |
1891 | + else | |
1892 | + { | |
1893 | + matDeliverQuery.setFsHospitalId(hospitalId); | |
1894 | + } | |
1895 | + | |
1885 | 1896 | |
1886 | 1897 | matDeliverQuery.setContactResult(matdeliverFollowRequest.getContactResult()); |
1887 | 1898 | if (matdeliverFollowRequest.getContactReason() != null) { |
platform-operate-api/src/main/java/com/lyms/platform/operate/web/session/strategy/LocalCacheSessionStrategy.java
View file @
5b1eef3