|
@@ -7,6 +7,7 @@ import cn.hutool.core.util.StrUtil;
|
|
import com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper;
|
|
import com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper;
|
|
import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
|
|
import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
|
|
import com.baomidou.mybatisplus.core.conditions.update.LambdaUpdateWrapper;
|
|
import com.baomidou.mybatisplus.core.conditions.update.LambdaUpdateWrapper;
|
|
|
|
+import com.baomidou.mybatisplus.core.toolkit.StringUtils;
|
|
import com.baomidou.mybatisplus.core.toolkit.Wrappers;
|
|
import com.baomidou.mybatisplus.core.toolkit.Wrappers;
|
|
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
|
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
|
import com.zbkj.common.constants.DateConstants;
|
|
import com.zbkj.common.constants.DateConstants;
|
|
@@ -143,19 +144,19 @@ public class CartServiceImpl extends ServiceImpl<CartDao, Cart> implements CartS
|
|
for (CartShare cartShare : cartList) {
|
|
for (CartShare cartShare : cartList) {
|
|
HashMap<String, String> info = systemConfigService.info(58);
|
|
HashMap<String, String> info = systemConfigService.info(58);
|
|
String loseTime = info.get("loseTime");
|
|
String loseTime = info.get("loseTime");
|
|
-
|
|
|
|
- Date dt = cartShare.getStartTime();
|
|
|
|
- Calendar rightNow = Calendar.getInstance();
|
|
|
|
- rightNow.setTime(dt);
|
|
|
|
- rightNow.add(Calendar.HOUR, Integer.parseInt(loseTime));
|
|
|
|
- Date endTime = rightNow.getTime();
|
|
|
|
-
|
|
|
|
- Date date = new Date();
|
|
|
|
-
|
|
|
|
- if (date.after(endTime)) {
|
|
|
|
- cartShare.setIsInvalid(0);
|
|
|
|
- } else {
|
|
|
|
- cartShare.setIsInvalid(1);
|
|
|
|
|
|
+ if (StringUtils.isNotBlank(loseTime)){
|
|
|
|
+ Date dt = cartShare.getStartTime();
|
|
|
|
+ Calendar rightNow = Calendar.getInstance();
|
|
|
|
+ rightNow.setTime(dt);
|
|
|
|
+ rightNow.add(Calendar.HOUR, Integer.parseInt(loseTime));
|
|
|
|
+ Date endTime = rightNow.getTime();
|
|
|
|
+ Date date = new Date();
|
|
|
|
+
|
|
|
|
+ if (date.after(endTime)) {
|
|
|
|
+ cartShare.setIsInvalid(0);
|
|
|
|
+ } else {
|
|
|
|
+ cartShare.setIsInvalid(1);
|
|
|
|
+ }
|
|
}
|
|
}
|
|
cartShareService.updateByShareId(cartShare.getShareId(),cartShare.getIsInvalid());
|
|
cartShareService.updateByShareId(cartShare.getShareId(),cartShare.getIsInvalid());
|
|
}
|
|
}
|