修复缴费记录逾期天数问题

This commit is contained in:
2026-07-01 19:13:42 +08:00
parent dbeacbc3a3
commit de7ae7fb7c

View File

@@ -408,7 +408,8 @@ public class PaymentController extends BaseController {
order.setCurrPeriods(parentOrder.getCurrPeriods()); order.setCurrPeriods(parentOrder.getCurrPeriods());
order.setBatteryRent(parentOrder.getBatteryRent()); order.setBatteryRent(parentOrder.getBatteryRent());
order.setExpirationTime(DateUtil.offset(order.getExpirationTime(), DateField.MONTH, 1)); // order.setExpirationTime(DateUtil.offset(order.getExpirationTime(), DateField.MONTH, 1));
order.setExpirationTime(order.getExpirationTime());
orderPayService.updateById(order); orderPayService.updateById(order);
orderService.updateById(parentOrder); orderService.updateById(parentOrder);