Эх сурвалжийг харах

[fix]
1、 用redis来判断该用户是否预定过该项目

chenchen 5 сар өмнө
parent
commit
48b30b7364

+ 13 - 2
application-webadmin/src/main/java/com/tourism/webadmin/app/website/service/impl/TourismProjectToWebServiceImpl.java

@@ -35,6 +35,8 @@ import jakarta.servlet.http.HttpServletRequest;
 import lombok.extern.slf4j.Slf4j;
 import org.apache.commons.collections4.CollectionUtils;
 import org.apache.commons.lang3.time.DateUtils;
+import org.redisson.api.RBucket;
+import org.redisson.api.RedissonClient;
 import org.springframework.beans.factory.annotation.Autowired;
 import org.springframework.stereotype.Service;
 import org.springframework.web.multipart.MultipartFile;
@@ -70,6 +72,8 @@ public class TourismProjectToWebServiceImpl implements TourismProjectToWebServic
     private TourUserService tourUserService;
     @Autowired
     private TourBookInfoService tourBookInfoService;
+    @Autowired
+    private RedissonClient redissonClient;
 
 
     @Override
@@ -195,11 +199,17 @@ public class TourismProjectToWebServiceImpl implements TourismProjectToWebServic
 
     @Override
     public Boolean bookProject(HttpServletRequest request, TourismBookProjectDto tourBookInfoDto) {
+
         //获取用户的手机号
         Long userId = TokenData.takeFromRequest().getUserId();
         TourUser tourUser = tourUserService.getById(userId);
         String mobile = tourUser.getMobile();
 
+        RBucket<Object> bucket = redissonClient.getBucket(tourBookInfoDto.getString().concat(mobile));
+        if(bucket.get() != null){
+            return false;
+        }
+
         if(tourBookInfoDto == null){
             throw new RuntimeException("预定参数为空!");
         }
@@ -226,7 +236,8 @@ public class TourismProjectToWebServiceImpl implements TourismProjectToWebServic
         tourBookInfo.setTotalPrice( tourismDatePriceOne.getAdultPrice().multiply(BigDecimal.valueOf(tourBookInfoDto.getAdultNumber()))
                 .add(tourismDatePriceOne.getChildrenPrice().multiply(BigDecimal.valueOf(tourBookInfoDto.getChildrenNumber()))));
         tourBookInfo.setBookIp(IpUtil.getRemoteIpAddress(request));
-
-        return tourBookInfoService.save(tourBookInfo);
+        tourBookInfoService.saveNew(tourBookInfo);
+        bucket.set("预约成功!");
+        return true;
     }
 }