Selaa lähdekoodia

调整支付回调

xubh 4 vuotta sitten
vanhempi
commit
efc0c72454

+ 3 - 3
src/main/java/com/minpay/common/pay/ShouhuoPay.java

@@ -203,12 +203,12 @@ public class ShouhuoPay implements IMINAction{
 				String gameRule = ordInf.getGameRule(); //游戏规则
 				String proType = ordInf.getProType(); //交易类型
 				if("00".equals(proType)){ //商品交易类别:00正常商品,01抽奖商品,02:充值
-					turnPage = Service.lookup(IPublicService.class).getSysParValue(user.getChannel() + "__SHOUHUO_DIRECTBUY_PAGE");
+					turnPage = Service.lookup(IPublicService.class).getSysParValue(user.getChannel() + "_SHOUHUO_DIRECTBUY_PAGE");
 				}else if("01".equals(proType)){
 					if("0".equals(gameRule)){ //幸运购
-						turnPage = Service.lookup(IPublicService.class).getSysParValue(user.getChannel() + "__SHOUHUO_GAMEBUYING_PAGE");
+						turnPage = Service.lookup(IPublicService.class).getSysParValue(user.getChannel() + "_SHOUHUO_GAMEBUYING_PAGE");
 					}else{
-						turnPage = Service.lookup(IPublicService.class).getSysParValue(user.getChannel() + "__SHOUHUO_GAMEBUYING_PAGE");
+						turnPage = Service.lookup(IPublicService.class).getSysParValue(user.getChannel() + "_SHOUHUO_GAMEBUYING_PAGE");
 					}if("1".equals(gameRule)){
 						throw new MINBusinessException("游戏类型异常");
 					}

+ 1 - 1
src/main/java/com/minpay/shouhuo/orderaction/PayManageAction.java

@@ -182,7 +182,7 @@ public class PayManageAction implements IMINAction {
 					pay_channel = "09";
 				}
 				String turntablePage = Service.lookup(IPublicService.class).getSysParValue(user.getChannel() + "_SHOUHUO_TURNTABLE_PAGE");
-				String turnPage = Service.lookup(IPublicService.class).getSysParValue(user.getChannel() + "__SHOUHUO_BALANCE_PAGE");
+				String turnPage = Service.lookup(IPublicService.class).getSysParValue(user.getChannel() + "_SHOUHUO_BALANCE_PAGE");
 				turntablePage = turntablePage.concat("orderId="+ordId).concat("&equId="+ordInf.getEquipmentId()).concat(turnPage);
 				Huilianpay prePay = new Huilianpay();
 				IHuilianPayService huilianPayService = new HuilianPayServiceImpl();