|
|
|
@ -25,6 +25,10 @@ import org.apache.commons.lang3.StringUtils; |
|
|
|
|
import org.springframework.beans.factory.annotation.Autowired; |
|
|
|
|
import org.springframework.stereotype.Service; |
|
|
|
|
|
|
|
|
|
import java.text.SimpleDateFormat; |
|
|
|
|
import java.time.LocalDate; |
|
|
|
|
import java.time.ZoneId; |
|
|
|
|
import java.time.temporal.ChronoUnit; |
|
|
|
|
import java.util.*; |
|
|
|
|
|
|
|
|
|
/** |
|
|
|
@ -121,36 +125,71 @@ public class OrderOtherServiceImpl extends ServiceImpl<OrderOtherMapper, OrderOt |
|
|
|
|
return update > 0; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
public static void main(String[] args) { |
|
|
|
|
LocalDate currentDate = LocalDate.now(); |
|
|
|
|
System.out.println(currentDate); |
|
|
|
|
|
|
|
|
|
// 使用 SimpleDateFormat 解析字符串日期
|
|
|
|
|
SimpleDateFormat dateFormat = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss"); |
|
|
|
|
try { |
|
|
|
|
Date date = dateFormat.parse("2024-12-19 01:00:01"); |
|
|
|
|
|
|
|
|
|
// 将 Date 转换为 LocalDate
|
|
|
|
|
LocalDate endDate = date.toInstant().atZone(ZoneId.systemDefault()).toLocalDate(); |
|
|
|
|
|
|
|
|
|
// 计算两个日期之间的天数
|
|
|
|
|
long daysBetween = ChronoUnit.DAYS.between(currentDate, endDate); |
|
|
|
|
System.out.println(daysBetween); |
|
|
|
|
} catch (Exception e) { |
|
|
|
|
e.printStackTrace(); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
* 根据起止日期以及当前日期设置剩余期限 |
|
|
|
|
*/ |
|
|
|
|
@Override |
|
|
|
|
public void remainingPeriod() { |
|
|
|
|
// List<OrderOtherResp> orderOtherList = baseMapper.remainingDay();
|
|
|
|
|
//查询所有订单产品
|
|
|
|
|
List<OrderOther> orderOtherList = baseMapper.selectList(null); |
|
|
|
|
orderOtherList.forEach(orderOther -> { |
|
|
|
|
if (orderOther.getShip().equals(OrderConstant.SHIPPED)) { |
|
|
|
|
if (orderOther.getRemainingPeriod() > 0) { |
|
|
|
|
//用于将负数全部修正,判断隔天可以删除
|
|
|
|
|
if (orderOther.getRemainingPeriod() < 0) { |
|
|
|
|
orderOther.setRemainingPeriod(0); |
|
|
|
|
} |
|
|
|
|
//修改订单剩余期限,当前时间在产品时间内进行扣除
|
|
|
|
|
long start = orderOther.getStartTime().getTime(); |
|
|
|
|
long now = DateUtil.date().getTime(); |
|
|
|
|
long end = orderOther.getEndTime().getTime(); |
|
|
|
|
if (now >= start && now <= end){ |
|
|
|
|
orderOther.setRemainingPeriod(orderOther.getRemainingPeriod()-1); |
|
|
|
|
baseMapper.updateById(orderOther); |
|
|
|
|
} |
|
|
|
|
}else { |
|
|
|
|
//关闭产品
|
|
|
|
|
orderOther.setIsEnable(0); |
|
|
|
|
baseMapper.updateById(orderOther); |
|
|
|
|
} |
|
|
|
|
QueryWrapper<OrderOther> queryWrapper = new QueryWrapper<>(); |
|
|
|
|
queryWrapper.eq("ship","1"); |
|
|
|
|
List<OrderOther> orderOtherList = baseMapper.selectList(queryWrapper); |
|
|
|
|
|
|
|
|
|
LocalDate currentDate = LocalDate.now(); |
|
|
|
|
|
|
|
|
|
for (OrderOther orderOther : orderOtherList) { |
|
|
|
|
LocalDate endDate = orderOther.getEndTime().toInstant().atZone(ZoneId.systemDefault()).toLocalDate(); |
|
|
|
|
if (currentDate.isAfter(endDate)) { |
|
|
|
|
orderOther.setRemainingPeriod(0); |
|
|
|
|
orderOther.setIsEnable(0); |
|
|
|
|
} else { |
|
|
|
|
long daysBetween = ChronoUnit.DAYS.between(currentDate, endDate); |
|
|
|
|
orderOther.setRemainingPeriod((int) daysBetween); |
|
|
|
|
} |
|
|
|
|
}); |
|
|
|
|
baseMapper.updateById(orderOther); |
|
|
|
|
} |
|
|
|
|
// orderOtherList.forEach(orderOther -> {
|
|
|
|
|
// if (orderOther.getShip().equals(OrderConstant.SHIPPED)) {
|
|
|
|
|
// if (orderOther.getRemainingPeriod() > 0) {
|
|
|
|
|
// //用于将负数全部修正,判断隔天可以删除
|
|
|
|
|
// if (orderOther.getRemainingPeriod() < 0) {
|
|
|
|
|
// orderOther.setRemainingPeriod(0);
|
|
|
|
|
// }
|
|
|
|
|
// //修改订单剩余期限,当前时间在产品时间内进行扣除
|
|
|
|
|
// long start = orderOther.getStartTime().getTime();
|
|
|
|
|
// long now = DateUtil.date().getTime();
|
|
|
|
|
// long end = orderOther.getEndTime().getTime();
|
|
|
|
|
// if (now >= start && now <= end){
|
|
|
|
|
// orderOther.setRemainingPeriod(orderOther.getRemainingPeriod()-1);
|
|
|
|
|
// baseMapper.updateById(orderOther);
|
|
|
|
|
// }
|
|
|
|
|
// }else {
|
|
|
|
|
// //关闭产品
|
|
|
|
|
// orderOther.setIsEnable(0);
|
|
|
|
|
// baseMapper.updateById(orderOther);
|
|
|
|
|
// }
|
|
|
|
|
// }
|
|
|
|
|
// });
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
@Override |
|
|
|
|