|
@@ -36,49 +36,49 @@ public class UserPlanSubscriptionServiceImpl
|
|
|
@Resource private ISubscribePlanService subscribePlanService;
|
|
|
|
|
|
@Override
|
|
|
- public Result<?> addSeoPlanSubscription(
|
|
|
- UserPlanSubscription seoPurchaseHistory, LoginUser sysUser) {
|
|
|
+ public Result<?> addUserPlanSubscription(
|
|
|
+ UserPlanSubscription userPlanSubscription, LoginUser sysUser) {
|
|
|
boolean result = false;
|
|
|
|
|
|
- SubscribePlan marketPlan = subscribePlanService.getById(seoPurchaseHistory.getPlanId());
|
|
|
+ SubscribePlan marketPlan = subscribePlanService.getById(userPlanSubscription.getPlanId());
|
|
|
if (marketPlan == null) {
|
|
|
return Result.error("此套餐不存在");
|
|
|
}
|
|
|
|
|
|
if (sysUser != null) {
|
|
|
- seoPurchaseHistory.setCreateBy(sysUser.getId());
|
|
|
+ userPlanSubscription.setCreateBy(sysUser.getId());
|
|
|
} else {
|
|
|
- seoPurchaseHistory.setCreateBy("system_auto");
|
|
|
+ userPlanSubscription.setCreateBy("system_auto");
|
|
|
}
|
|
|
|
|
|
// 如果不是续费客户(就是新客户)的话,直接入库,套餐开启时间即是现在
|
|
|
- if (seoPurchaseHistory.getIsRenew() == null || seoPurchaseHistory.getIsRenew() == 0) {
|
|
|
+ if (userPlanSubscription.getIsRenew() == null || userPlanSubscription.getIsRenew() == 0) {
|
|
|
LambdaQueryWrapper<UserPlanSubscription> queryWrapper = new LambdaQueryWrapper<>();
|
|
|
- queryWrapper.eq(UserPlanSubscription::getSiteId, seoPurchaseHistory.getSiteId());
|
|
|
+ queryWrapper.eq(UserPlanSubscription::getSiteId, userPlanSubscription.getSiteId());
|
|
|
queryWrapper.eq(UserPlanSubscription::getStatus, 1);
|
|
|
- List<UserPlanSubscription> seoPurchaseHistoryList = this.list(queryWrapper);
|
|
|
- if (!CollectionUtils.isEmpty(seoPurchaseHistoryList)) {
|
|
|
+ List<UserPlanSubscription> userPlanSubscriptionList = this.list(queryWrapper);
|
|
|
+ if (!CollectionUtils.isEmpty(userPlanSubscriptionList)) {
|
|
|
return Result.error("站点存在使用中套餐,请到期后绑定!");
|
|
|
}
|
|
|
- result = this.addNewSubscription(seoPurchaseHistory, marketPlan);
|
|
|
+ result = this.addNewSubscription(userPlanSubscription, marketPlan);
|
|
|
} else { // 续费
|
|
|
// 判断是否有正在使用的套餐,如果没有,新建status为1的套餐
|
|
|
LambdaQueryWrapper<UserPlanSubscription> oldQueryWrapper = new LambdaQueryWrapper<>();
|
|
|
- oldQueryWrapper.eq(UserPlanSubscription::getSiteId, seoPurchaseHistory.getSiteId());
|
|
|
+ oldQueryWrapper.eq(UserPlanSubscription::getSiteId, userPlanSubscription.getSiteId());
|
|
|
oldQueryWrapper.eq(UserPlanSubscription::getStatus, 1);
|
|
|
List<UserPlanSubscription> oldHistoryList = this.list(oldQueryWrapper);
|
|
|
if (CollectionUtils.isEmpty(oldHistoryList)) {
|
|
|
return Result.error("站点不存在使用中套餐,请先新增套餐");
|
|
|
} else {
|
|
|
LambdaQueryWrapper<UserPlanSubscription> queryWrapper = new LambdaQueryWrapper<>();
|
|
|
- queryWrapper.eq(UserPlanSubscription::getSiteId, seoPurchaseHistory.getSiteId());
|
|
|
+ queryWrapper.eq(UserPlanSubscription::getSiteId, userPlanSubscription.getSiteId());
|
|
|
queryWrapper.eq(UserPlanSubscription::getStatus, 2);
|
|
|
- List<UserPlanSubscription> seoPurchaseHistoryList = this.list(queryWrapper);
|
|
|
- if (!CollectionUtils.isEmpty(seoPurchaseHistoryList)) {
|
|
|
+ List<UserPlanSubscription> userPlanSubscriptionList = this.list(queryWrapper);
|
|
|
+ if (!CollectionUtils.isEmpty(userPlanSubscriptionList)) {
|
|
|
return Result.error("同一站点不能同时续费多个相同类型的套餐!");
|
|
|
}
|
|
|
|
|
|
- if (seoPurchaseHistory.getIsCustom() == 0) {
|
|
|
+ if (userPlanSubscription.getIsCustom() == 0) {
|
|
|
// ->不是自定义服务开启时间 需找到多个套餐服务结束时间最大的那个
|
|
|
// 此站点所有对应的套餐的最大服务结束时间
|
|
|
UserPlanSubscription history =
|
|
@@ -86,7 +86,7 @@ public class UserPlanSubscriptionServiceImpl
|
|
|
new LambdaQueryWrapper<UserPlanSubscription>()
|
|
|
.eq(
|
|
|
UserPlanSubscription::getSiteId,
|
|
|
- seoPurchaseHistory.getSiteId())
|
|
|
+ userPlanSubscription.getSiteId())
|
|
|
.and(
|
|
|
wrapper ->
|
|
|
wrapper.eq(
|
|
@@ -106,25 +106,25 @@ public class UserPlanSubscriptionServiceImpl
|
|
|
} else {
|
|
|
maxEndTime = history.getServiceEndTime();
|
|
|
}
|
|
|
- seoPurchaseHistory.setCreateTime(new Date());
|
|
|
- seoPurchaseHistory.setPlanStartTime(maxEndTime);
|
|
|
- seoPurchaseHistory.setStatus(2);
|
|
|
- seoPurchaseHistory.setPlanName(marketPlan.getPlanName());
|
|
|
- seoPurchaseHistory.setPlanCode(marketPlan.getPlanCode());
|
|
|
- seoPurchaseHistory.setPlanPrice(marketPlan.getPrice());
|
|
|
- seoPurchaseHistory.setPlanType(marketPlan.getMarketType());
|
|
|
- seoPurchaseHistory.setServiceMonth(marketPlan.getServiceTime());
|
|
|
- result = this.save(seoPurchaseHistory);
|
|
|
- } else if (seoPurchaseHistory.getIsCustom() == 1) { // 是自定义套餐开启时间
|
|
|
- seoPurchaseHistory.setCreateTime(new Date());
|
|
|
- seoPurchaseHistory.setPlanName(marketPlan.getPlanName());
|
|
|
- seoPurchaseHistory.setPlanCode(marketPlan.getPlanCode());
|
|
|
- seoPurchaseHistory.setPlanPrice(marketPlan.getPrice());
|
|
|
- seoPurchaseHistory.setPlanType(marketPlan.getMarketType());
|
|
|
+ userPlanSubscription.setCreateTime(new Date());
|
|
|
+ userPlanSubscription.setPlanStartTime(maxEndTime);
|
|
|
+ userPlanSubscription.setStatus(2);
|
|
|
+ userPlanSubscription.setPlanName(marketPlan.getPlanName());
|
|
|
+ userPlanSubscription.setPlanCode(marketPlan.getPlanCode());
|
|
|
+ userPlanSubscription.setPlanPrice(marketPlan.getPrice());
|
|
|
+ userPlanSubscription.setPlanType(marketPlan.getMarketType());
|
|
|
+ userPlanSubscription.setServiceMonth(marketPlan.getServiceTime());
|
|
|
+ result = this.save(userPlanSubscription);
|
|
|
+ } else if (userPlanSubscription.getIsCustom() == 1) { // 是自定义套餐开启时间
|
|
|
+ userPlanSubscription.setCreateTime(new Date());
|
|
|
+ userPlanSubscription.setPlanName(marketPlan.getPlanName());
|
|
|
+ userPlanSubscription.setPlanCode(marketPlan.getPlanCode());
|
|
|
+ userPlanSubscription.setPlanPrice(marketPlan.getPrice());
|
|
|
+ userPlanSubscription.setPlanType(marketPlan.getMarketType());
|
|
|
DateTime today = cn.hutool.core.date.DateUtil.date();
|
|
|
long betweenTime =
|
|
|
cn.hutool.core.date.DateUtil.between(
|
|
|
- seoPurchaseHistory.getPlanStartTime(),
|
|
|
+ userPlanSubscription.getPlanStartTime(),
|
|
|
today,
|
|
|
DateUnit.DAY,
|
|
|
false);
|
|
@@ -132,10 +132,10 @@ public class UserPlanSubscriptionServiceImpl
|
|
|
return Result.error("自定义时间请选择于今天之后!");
|
|
|
} else {
|
|
|
// 如果有正在使用的套餐,才能设置为2,否则设置为1
|
|
|
- seoPurchaseHistory.setStatus(2);
|
|
|
+ userPlanSubscription.setStatus(2);
|
|
|
}
|
|
|
- seoPurchaseHistory.setServiceMonth(marketPlan.getServiceTime());
|
|
|
- result = this.save(seoPurchaseHistory);
|
|
|
+ userPlanSubscription.setServiceMonth(marketPlan.getServiceTime());
|
|
|
+ result = this.save(userPlanSubscription);
|
|
|
}
|
|
|
}
|
|
|
}
|
|
@@ -150,28 +150,28 @@ public class UserPlanSubscriptionServiceImpl
|
|
|
|
|
|
@Override
|
|
|
public boolean addNewSubscription(
|
|
|
- UserPlanSubscription seoPurchaseHistory, SubscribePlan marketPlan) {
|
|
|
+ UserPlanSubscription userPlanSubscription, SubscribePlan subscribePlan) {
|
|
|
boolean result = false;
|
|
|
try {
|
|
|
Date startTime = new Date();
|
|
|
- seoPurchaseHistory.setCreateTime(startTime);
|
|
|
- seoPurchaseHistory.setPlanStartTime(startTime);
|
|
|
- seoPurchaseHistory.setStatus(1); // 使用中
|
|
|
- seoPurchaseHistory.setPlanName(marketPlan.getPlanName());
|
|
|
- seoPurchaseHistory.setPlanCode(marketPlan.getPlanCode());
|
|
|
- seoPurchaseHistory.setPlanPrice(marketPlan.getPrice());
|
|
|
- seoPurchaseHistory.setPlanType(marketPlan.getMarketType());
|
|
|
- seoPurchaseHistory.setServiceMonth(marketPlan.getServiceTime());
|
|
|
- result = this.save(seoPurchaseHistory);
|
|
|
+ userPlanSubscription.setCreateTime(startTime);
|
|
|
+ userPlanSubscription.setPlanStartTime(startTime);
|
|
|
+ userPlanSubscription.setStatus(1); // 使用中
|
|
|
+ userPlanSubscription.setPlanName(subscribePlan.getPlanName());
|
|
|
+ userPlanSubscription.setPlanCode(subscribePlan.getPlanCode());
|
|
|
+ userPlanSubscription.setPlanPrice(subscribePlan.getPrice());
|
|
|
+ userPlanSubscription.setPlanType(subscribePlan.getMarketType());
|
|
|
+ userPlanSubscription.setServiceMonth(subscribePlan.getServiceTime());
|
|
|
+ result = this.save(userPlanSubscription);
|
|
|
} catch (Exception e) {
|
|
|
log.error("站点新绑定套餐失败", e);
|
|
|
}
|
|
|
return result;
|
|
|
}
|
|
|
|
|
|
- /** 获取正在使用中的SEO套餐,如果没有使用中的SEO和建站套餐,则查询过期的SEO和建站套餐 */
|
|
|
+ /** 获取正在使用中的AdWeb套餐,如果没有使用中的SEO和建站套餐,则查询过期的套餐 */
|
|
|
@Override
|
|
|
- public UserPlanSubscription getCurrentSeoAndSiteSubscription(Integer siteId) {
|
|
|
+ public UserPlanSubscription getCurrentSubscription(Integer siteId) {
|
|
|
LambdaQueryWrapper<UserPlanSubscription> queryWrapper = new LambdaQueryWrapper<>();
|
|
|
queryWrapper.eq(UserPlanSubscription::getSiteId, siteId);
|
|
|
queryWrapper.and(
|