Commit 0f7dbad1 by huiyang.chen

fix

parent 8a666ce3
...@@ -1285,7 +1285,7 @@ public class OrderServiceImpl implements Orderservice { ...@@ -1285,7 +1285,7 @@ public class OrderServiceImpl implements Orderservice {
QueryOrderResponseVo queryOrderResponseVo = queryOrderResponseVos.get(0); QueryOrderResponseVo queryOrderResponseVo = queryOrderResponseVos.get(0);
//麦咖啡 预约外卖单重新封装取餐时间 //麦咖啡 预约外卖单重新封装取餐时间
if (OrderType.TAKE_OUT.getCode().equals(queryOrderResponseVo.getOrderType()) && queryOrderResponseVo.getTakeMealType() == 1 && StringUtils.isNotEmpty(queryOrderResponseVo.getReserveDeliveryTime())) { if (OrderType.TAKE_OUT.getCode().equals(queryOrderResponseVo.getOrderType()) && StringUtils.isNotEmpty(queryOrderResponseVo.getReserveDeliveryTime())) {
Date reserveDeliveryTime = DateUtil.convert2Date(queryOrderResponseVo.getReserveDeliveryTime(), "yyyy-MM-dd HH:mm:ss"); Date reserveDeliveryTime = DateUtil.convert2Date(queryOrderResponseVo.getReserveDeliveryTime(), "yyyy-MM-dd HH:mm:ss");
queryOrderResponseVo.setReserveDeliveryTime(formatSpecialDate(reserveDeliveryTime)); queryOrderResponseVo.setReserveDeliveryTime(formatSpecialDate(reserveDeliveryTime));
} }
......
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