修改--修改订单结束时间的计算方式

This commit is contained in:
haotian 2025-04-21 14:16:44 +08:00
parent 6c83a57bf0
commit 00ced7df1a

View File

@ -1141,9 +1141,9 @@ public class AppSystemController extends BaseController {
// 加上价格
tPrice += map.get("price");
// 结束时间
endTime = startTime.plusDays(days.intValue()-1);
endTime = startTime.plusDays(days.intValue());
// 新的结束时间
endTimeNew = startTimeNew.plusDays(days.intValue()-1);
endTimeNew = startTimeNew.plusDays(days.intValue());
break;
}