mirror of
https://gitee.com/hhyykk/ipms-sjy.git
synced 2025-07-27 09:25:09 +08:00
修复优惠券回收后,领取数量和剩余数量不更新的问题
This commit is contained in:
@ -140,8 +140,8 @@ public class CouponServiceImpl implements CouponService {
|
|||||||
if (deleteCount == 0) {
|
if (deleteCount == 0) {
|
||||||
throw exception(COUPON_DELETE_FAIL_USED);
|
throw exception(COUPON_DELETE_FAIL_USED);
|
||||||
}
|
}
|
||||||
// 减少优惠劵模板的领取数量 -1
|
// 传入优惠券模板ID,减少优惠劵模板的领取数量 -1
|
||||||
couponTemplateService.updateCouponTemplateTakeCount(id, -1);
|
couponTemplateService.updateCouponTemplateTakeCount(couponMapper.selectById(id).getTemplateId(), -1);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
Reference in New Issue
Block a user