记得上下班打卡 | git大法好,push需谨慎

Commit 3548ceb7 authored by 胡佳晨's avatar 胡佳晨

修改判断 从如果是会员 或者 用了券就可以走会员时间,改为如果是老会员或者会员券的情况下还得是会员购买逻辑才可以走会员时间

parent 633754be
......@@ -250,7 +250,7 @@ public class KylinOrderTicketsServiceImpl implements IKylinOrderTicketsOrderServ
}
}
if ((isOldMember || advanceMap != null) && memberType == 1) {
if (isOldMember || advanceMap != null) {
if (DateUtil.compareStrDay(DateUtil.getNowTime(), memberTimeStart) == -1) {
orderUtils.backAdvanceCoupon(payOrderParam.getAdvanceCode(), uid);
return ResponseDto.failure(ErrorMapping.get("20011"));//未开始
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment