Commit bd9ceac9451dc97b0e907628921aebe5c674509b
1 parent
90987fc99b
Exists in
master
and in
8 other branches
增加是否通知
Showing 1 changed file with 2 additions and 2 deletions
platform-operate-api/src/main/java/com/lyms/platform/operate/web/facade/ApplyOrderFacade.java
View file @
bd9ceac
| ... | ... | @@ -270,12 +270,12 @@ |
| 270 | 270 | referralApplyOrderQuery.setLimit(applyOrderQueryRequest.getLimit()); |
| 271 | 271 | referralApplyOrderQuery.setType(applyOrderQueryRequest.getType()); |
| 272 | 272 | //1 转入 0转出 |
| 273 | - if ("1".equals(applyOrderQueryRequest.getType())) { | |
| 273 | + if ("1".equals(applyOrderQueryRequest.getAction())) { | |
| 274 | 274 | List data = autoMatchFacade.matchOrgId(userId); |
| 275 | 275 | if (CollectionUtils.isNotEmpty(data)) { |
| 276 | 276 | referralApplyOrderQuery.setTransferredHospital(data.get(0) + ""); |
| 277 | 277 | } |
| 278 | - } else if ("0".equals(applyOrderQueryRequest.getType())) { | |
| 278 | + } else if ("0".equals(applyOrderQueryRequest.getAction())) { | |
| 279 | 279 | List data = autoMatchFacade.matchOrgId(userId); |
| 280 | 280 | if (CollectionUtils.isNotEmpty(data)) { |
| 281 | 281 | referralApplyOrderQuery.setOutHospitalId(data.get(0) + ""); |