Commit 9daae3d2 by 周晓航

预约单 按照正常订单的消息推送流程走

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