|
@@ -140,7 +140,11 @@ public class OrderServiceImpl extends BaseServiceImpl<Integer, Order> implements
|
|
public Map getPayMap(Account routingAccount, Order order, School school) throws Exception {
|
|
public Map getPayMap(Account routingAccount, Order order, School school) throws Exception {
|
|
|
|
|
|
String notifyUrl = this.notifyUrl; //异步通知地址
|
|
String notifyUrl = this.notifyUrl; //异步通知地址
|
|
- String returnUrl = this.returnHost + "/#/login?schoolId=" + school.getSchoolId() + "&classId=" + order.getClassId() + "&cityId=" + school.getCityId();//支付后返回页面
|
|
|
|
|
|
+ String returnUrl = this.returnHost + "/#/payment?userId=1087191";//支付后返回页面
|
|
|
|
+
|
|
|
|
+ if (school != null) {
|
|
|
|
+ returnUrl = this.returnHost + "/#/login?schoolId=" + school.getSchoolId() + "&classId=" + order.getClassId() + "&cityId=" + school.getCityId();//支付后返回页面
|
|
|
|
+ }
|
|
String payUrl = "https://qyfapi.95epay.com/api/api/hPay/toPayHtml";//支付跳转页
|
|
String payUrl = "https://qyfapi.95epay.com/api/api/hPay/toPayHtml";//支付跳转页
|
|
String payChannels = "{\"weChatPay\":true,\"weChatPayMobile\":false,\"aliPay\":true,\"fastpayXy\":true,\"aliPayMobile\":false,\"balancePay\":false}";//支付方式配置
|
|
String payChannels = "{\"weChatPay\":true,\"weChatPayMobile\":false,\"aliPay\":true,\"fastpayXy\":true,\"aliPayMobile\":false,\"balancePay\":false}";//支付方式配置
|
|
|
|
|