Commit 627239b3 by 徐高华

自提截止时间

parent adbd5c41
......@@ -255,7 +255,7 @@ public class GicOrderController {
return RestResponse.failure("9999", "核销订单不存在");
}
Date pickOverTime = detail.getOrderInfo().getPickUpOverTime() ;
if(null != pickOverTime && pickOverTime.after(new Date())) {
if(null != pickOverTime && pickOverTime.before(new Date())) {
return RestResponse.failure("9999", "此订单自提时间已截止");
}
return RestResponse.successResult(orderDetailVO);
......
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