Commit 9f061e40 by 周晓航

bug修复

Signed-off-by: 周晓航 <xiaohang.zhou@freemud.com>
parent d77decc7
...@@ -39,7 +39,8 @@ public class OrderCheckAdapter { ...@@ -39,7 +39,8 @@ public class OrderCheckAdapter {
return; return;
} }
// 预定单 不校验 下面的预约单 // 预定单 不校验 下面的预约单
if (BizTypeEnum.ADVANCE_ORDER.getBizType().compareTo(vo.getBizType()) == 0) { if (Objects.nonNull(vo.getBizType())
&& BizTypeEnum.ADVANCE_ORDER.getBizType().compareTo(vo.getBizType()) == 0) {
return; return;
} }
StoreResponse.Configuration configuration = storeResponse.getBizVO().getStoreConfig(); StoreResponse.Configuration configuration = storeResponse.getBizVO().getStoreConfig();
......
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