Commit 5c3cb4f7 by caosy

小程序回调

parent ec0989d1
...@@ -196,7 +196,10 @@ public abstract class AbstractNotifyService extends CorePaymentService { ...@@ -196,7 +196,10 @@ public abstract class AbstractNotifyService extends CorePaymentService {
if(order.getOrderSource() == OrderSourceEnum.OFFLINE.getKey()){ if(order.getOrderSource() == OrderSourceEnum.OFFLINE.getKey()){
// offline // offline
order.setOrderType(1); order.setOrderType(1);
}else{ }else if(order.getOrderSource() == OrderSourceEnum.HOMEBREW.getKey()){
// Homebrew
order.setOrderSource(OrderSourceEnum.HOMEBREW.getKey());
}else {
order.setOrderSource(OrderSourceEnum.H5CTRIP.getKey()); order.setOrderSource(OrderSourceEnum.H5CTRIP.getKey());
} }
order.setPlatform("MP"); order.setPlatform("MP");
......
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 sign in to comment