Commit 14ce90e1 by 周晓航

Merge branch 'KA-2.0.41-爱马哥预订单开发-zxh111111111111' into qa

parents 77ec5f75 9daae3d2
...@@ -223,12 +223,14 @@ public class OrderSdkAdapter { ...@@ -223,12 +223,14 @@ public class OrderSdkAdapter {
// 双重判断,防止前端乱传参搞事情 // 双重判断,防止前端乱传参搞事情
if (Objects.nonNull(bizType) && BizTypeEnum.ADVANCE_ORDER.getBizType().compareTo(bizType) == 0) { if (Objects.nonNull(bizType) && BizTypeEnum.ADVANCE_ORDER.getBizType().compareTo(bizType) == 0) {
request.setBizType(BizTypeEnum.ADVANCE_ORDER.getBizType()); request.setBizType(BizTypeEnum.ADVANCE_ORDER.getBizType());
// 按照正常单走后续推送消息通知流程
request.setOrderType(1);
} else { } else {
// 20210730之前 默认设置为1 // 20210730之前 默认设置为1
request.setBizType(CommonConstant.INTEGER_ONE); request.setBizType(CommonConstant.INTEGER_ONE);
request.setOrderType(getNewOrderType(requestVO.getOrderType(), requestVO.getGmtExpect()));
} }
request.setNote(requestVO.getRemark()); request.setNote(requestVO.getRemark());
request.setOrderType(getNewOrderType(requestVO.getOrderType(), requestVO.getGmtExpect()));
request.setBarCounter(requestVO.getBarCounter()); request.setBarCounter(requestVO.getBarCounter());
//订单market类型 //订单market类型
......
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