From 437a74c950f626398edd13025c654286280e7bbc Mon Sep 17 00:00:00 2001
From: liujie <1793218484@qq.com>
Date: 星期一, 01 九月 2025 18:01:30 +0800
Subject: [PATCH] bug修改
---
cloud-server-account/src/main/java/com/dsh/account/service/impl/VipPaymentServiceImpl.java | 11 ++++++-----
1 files changed, 6 insertions(+), 5 deletions(-)
diff --git a/cloud-server-account/src/main/java/com/dsh/account/service/impl/VipPaymentServiceImpl.java b/cloud-server-account/src/main/java/com/dsh/account/service/impl/VipPaymentServiceImpl.java
index fab2ff4..73654b5 100644
--- a/cloud-server-account/src/main/java/com/dsh/account/service/impl/VipPaymentServiceImpl.java
+++ b/cloud-server-account/src/main/java/com/dsh/account/service/impl/VipPaymentServiceImpl.java
@@ -250,16 +250,16 @@
switch (vip.getTimeType()) {
case 1:
// 天
- localDateTime.plusDays(time);
+ localDateTime = localDateTime.plusDays(time);
break;
case 2:
// 月
- localDateTime.plusMonths(time);
+ localDateTime = localDateTime.plusMonths(time);
break;
case 3:
// 年
- localDateTime.plusYears(time);
+ localDateTime = localDateTime.plusYears(time);
break;
}
appUser.setIsVip(1);
@@ -272,9 +272,10 @@
if (StringUtils.hasLength(couponJson)) {
grantCoupon.setCouponJson(couponJson);
- grantCoupon.setUserId(vipPayment1.getAppUserId());
- grantCoupon.setVipPaymentId(vipPayment1.getId());
}
+ grantCoupon.setVipId(vipPayment1.getVipId());
+ grantCoupon.setUserId(vipPayment1.getAppUserId());
+ grantCoupon.setVipPaymentId(vipPayment1.getId());
String ticketJson = vipPayment1.getTicketJson();
if (StringUtils.hasLength(ticketJson)) {
grantCoupon.setTicketJson(ticketJson);
--
Gitblit v1.7.1