|
|
@@ -148,7 +148,8 @@ public class AppBookingAction extends ActionSupport implements ServletRequestAwa
|
|
|
|
|
|
// 对订单时间进行累加
|
|
|
String lockTime = TimeExchange.TimeRangeM(booking.getCreateTime(),Func.parseInt(booking.getLockTime()));
|
|
|
- boolean flag = TimeExchange.CompareDate(lockTime,TimeExchange.getDate());
|
|
|
+ // 当前时间 大于 锁定时间 为true
|
|
|
+ boolean flag = TimeExchange.CompareDate(lockTime, TimeExchange.getDate());
|
|
|
if (flag)
|
|
|
{
|
|
|
// 如果超时,则将订单状态修改为已超时
|