Commit 9e6a6269c345bfffebb45c6f3cacd9b477c2b0b1
1 parent
062cc1f577
Exists in
master
and in
6 other branches
update
Showing 2 changed files with 7 additions and 8 deletions
platform-biz-service/src/main/java/com/lyms/platform/permission/service/impl/CouponServiceImpl.java
View file @
9e6a626
... | ... | @@ -457,13 +457,13 @@ |
457 | 457 | return RespBuilder.buildErro(ResponseCode.COUPON_AREA_NO_USE, patientsInfo); |
458 | 458 | } |
459 | 459 | |
460 | - //验证优惠劵是否临时使用了 该功能属于秦皇岛区域 | |
461 | - if (couponInfo.getTempStatus() != null && couponInfo.getTempStatus() == 1) { | |
462 | - //验证临时使用的医院是不是当前登陆的医院 | |
463 | - if (StringUtils.isNotEmpty(couponInfo.getTempHospitalId()) && !couponInfo.getTempHospitalId().equals(hospitalId)) { | |
464 | - return RespBuilder.buildErro(ResponseCode.COUPON_IS_USED); | |
465 | - } | |
466 | - } | |
460 | +// //验证优惠劵是否临时使用了 该功能属于秦皇岛区域 | |
461 | +// if (couponInfo.getTempStatus() != null && couponInfo.getTempStatus() == 1) { | |
462 | +// //验证临时使用的医院是不是当前登陆的医院 | |
463 | +// if (StringUtils.isNotEmpty(couponInfo.getTempHospitalId()) && !couponInfo.getTempHospitalId().equals(hospitalId)) { | |
464 | +// return RespBuilder.buildErro(ResponseCode.COUPON_IS_USED); | |
465 | +// } | |
466 | +// } | |
467 | 467 | |
468 | 468 | |
469 | 469 | return RespBuilder.buildSuccess(patientsInfo); |
platform-operate-api/src/main/java/com/lyms/platform/operate/web/facade/BookbuildingFacade.java
View file @
9e6a626