Commit b7b52a71 by xiaoer.li@freemud.com

fix:int->string

parent 66e7ca93
...@@ -240,7 +240,7 @@ public class OrderAdapterServiceImpl implements OrderAdapterService { ...@@ -240,7 +240,7 @@ public class OrderAdapterServiceImpl implements OrderAdapterService {
} }
Integer client = OrderSourceType.getClientByCode(orderBean.getSource()); Integer client = OrderSourceType.getClientByCode(orderBean.getSource());
//若是app订单超时回调了 订单已取消则做退款处理 //若是app订单超时回调了 订单已取消则做退款处理
if (OrderStatus.CALCEL.getCode().equals(orderBean.getStatus()) && Arrays.asList(autoRefundClient.split(",")).contains(client)) { if (OrderStatus.CALCEL.getCode().equals(orderBean.getStatus()) && Arrays.asList(autoRefundClient.split(",")).contains(client.toString())) {
orderService.timeOutRefund(orderBean); orderService.timeOutRefund(orderBean);
return orderAdapter.sendPaySuccessNoticeMessage(); return orderAdapter.sendPaySuccessNoticeMessage();
} }
......
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