Commit ad92be70 by xiaoer.li@freemud.com

fix

parent 4619fcb7
...@@ -1121,7 +1121,7 @@ public class OrderAdapter { ...@@ -1121,7 +1121,7 @@ public class OrderAdapter {
responseVo.setOrderPayType(PayChannelType.WECHAT.getName()); responseVo.setOrderPayType(PayChannelType.WECHAT.getName());
} }
} }
else if (ordersBean.getOrderPayItem().size()>0) { else if (ordersBean.getOrderPayItem()!=null && ordersBean.getOrderPayItem().size()>0) {
responseVo.setOrderPayType(PayChannelType.COMB.getName()); responseVo.setOrderPayType(PayChannelType.COMB.getName());
} }
else { else {
......
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