Commit d6a31c19 by 周晓航

拦截数字转化异常

Signed-off-by: 周晓航 <xiaohang.zhou@freemud.com>
parent a1a111fd
...@@ -333,7 +333,7 @@ public class CheckOrder { ...@@ -333,7 +333,7 @@ public class CheckOrder {
//校验预约时间 --> //校验预约时间 -->
checkOrderExpectTime(createOrderVo, storeResponseDto, takeMealDateTime); checkOrderExpectTime(createOrderVo, storeResponseDto, takeMealDateTime);
//重新赋值为yyyy-MM-dd HH:mm:ss格式字符串时间 //重新赋值为yyyy-MM-dd HH:mm:ss格式字符串时间
createOrderVo.setExpectTime(DateUtil.convert2String(takeMealDateTime, "yyyy-MM-dd HH:mm:ss")); createOrderVo.setExpectTime(DateUtil.convert2String(takeMealDateTime, DateUtil.FORMAT_YYYY_MM_DD_HHMMSS));
}else { }else {
if (isAdvanceOrder) { if (isAdvanceOrder) {
//fisherman-ka 预定单校验是否在预计开业时间范围内, 2. 校验 营业结束前十分钟,不允许下预约单(上面有代码,可以复用) //fisherman-ka 预定单校验是否在预计开业时间范围内, 2. 校验 营业结束前十分钟,不允许下预约单(上面有代码,可以复用)
...@@ -346,7 +346,7 @@ public class CheckOrder { ...@@ -346,7 +346,7 @@ public class CheckOrder {
throw new ServiceException(ResponseResult.ORDER_CREATE_TAKEMEALTIME_ERROR); throw new ServiceException(ResponseResult.ORDER_CREATE_TAKEMEALTIME_ERROR);
} }
this.checkAdvanceOrderExpectTime(businessInfoDto, storeResponseDto, date); this.checkAdvanceOrderExpectTime(businessInfoDto, storeResponseDto, date);
createOrderVo.setExpectTime(DateUtil.convert2String(date, "yyyy-MM-dd HH:mm:ss")); createOrderVo.setExpectTime(DateUtil.convert2String(date, DateUtil.FORMAT_YYYY_MM_DD_HHMMSS));
} }
} }
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment