|
|
@@ -331,6 +331,7 @@ public class OrderDonServiceImpl extends ServiceImpl<OrderDonMapper, OrderDon> i
|
|
|
}
|
|
|
orderDon.setType(OrderDon.Type.WeChat);
|
|
|
orderDon.setShopId(shopId);
|
|
|
+ orderDon.setIsWebPay(false);
|
|
|
this.updateById(orderDon);
|
|
|
H5JsPayParams params = weChatService.getJsPayParams(
|
|
|
weChatConfig.getAppid(),
|
|
|
@@ -369,6 +370,7 @@ public class OrderDonServiceImpl extends ServiceImpl<OrderDonMapper, OrderDon> i
|
|
|
}
|
|
|
orderDon.setShopId(shopId);
|
|
|
orderDon.setType(OrderDon.Type.WeChat);
|
|
|
+ orderDon.setIsWebPay(true);
|
|
|
this.updateById(orderDon);
|
|
|
|
|
|
H5JsPayParams params = weChatService.getJsPayParams(
|