Commit cd08f8b0 by songyinghui

Merge branch 'bugfix_20231219_weimo_order' into developer

parents a0bf0877 e39f7d9a
......@@ -187,8 +187,8 @@ public class MallOrderStatusChangeApiServiceImpl implements MallOrderStatusChang
if (memberOrderBo.getTimes() == null) {
memberOrderBo.setTimes(1);
}
if (memberOrderBo.getTimes() > 60) {
log.info("订单消费次数已经超出60次, 不再处理 {}", params);
if (memberOrderBo.getTimes() > 5) {
log.info("订单消费次数已经超出5次, 不再处理 {}", params);
return ServiceResponse.success();
}
memberOrderBo.setTimes(memberOrderBo.getTimes() + 1);
......@@ -197,7 +197,7 @@ public class MallOrderStatusChangeApiServiceImpl implements MallOrderStatusChang
/**
* @see com.gic.haoban.manage.api.service.content.MallOrderStatusChangeApiService#dealWeimoOrder(String)
*/
GICMQClientUtil.getClientInstance().sendMessage("dealWeimoOrderForInteractRecord", JSON.toJSONString(memberOrderBo), 60);
GICMQClientUtil.getClientInstance().sendMessage("dealWeimoOrderForInteractRecord", JSON.toJSONString(memberOrderBo), 120);
}catch (Exception ex) {
log.info("处理会员订单异常 ", ex);
}
......
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