Commit 7090e259 by 胡敬轩

微商城订单处理 因为没有appid不上报

parent 6a5971fe
......@@ -496,6 +496,10 @@ public class OrderAdapterServiceImpl {
ApiLog.printLog("sendLowCarbonToWeixin",message,orderBean,null);
BaseResponse response = null;
try {
// 微商城订单处理 因为没有appid
if (Objects.equals(BizTypeEnum.MALL.getBizType(), orderBean.getBizType())) {
return;
}
//先判断有没有微信支付
List<OrderPayItemResp> orderPayItem = orderBean.getOrderPayItem();
boolean hasWeixinPay = Objects.equals(orderBean.getPayChannelType(), String.valueOf(PayChannelType.WECHAT.getIndex()))
......
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