Commit 6c8124366862c87a8da7c780e0ebf22169da0b60
1 parent
4eee5042f3
Exists in
master
and in
8 other branches
增加设置parentid
Showing 1 changed file with 5 additions and 0 deletions
platform-operate-api/src/main/java/com/lyms/platform/operate/web/facade/ApplyOrderFacade.java
View file @
6c81243
| ... | ... | @@ -132,6 +132,11 @@ |
| 132 | 132 | referralApplyOrderModel.setType(type); |
| 133 | 133 | referralApplyOrderModel.setOutHospitalId(hospital); |
| 134 | 134 | applyOrderService.addOneReferralApplyOrder(referralApplyOrderModel); |
| 135 | + | |
| 136 | + referralApplyOrderModel.setOutHospitalId(referralApplyOrderModel.getTransferredHospital()); | |
| 137 | + referralApplyOrderModel.setTransferredHospital(hospital); | |
| 138 | + | |
| 139 | + applyOrderService.addOneReferralApplyOrder(referralApplyOrderModel); | |
| 135 | 140 | } |
| 136 | 141 | |
| 137 | 142 | return new BaseResponse().setErrorcode(ErrorCodeConstants.SUCCESS).setErrormsg("成功"); |