|
@@ -456,7 +456,7 @@ public class PayController {
|
|
|
PayOrder payOrder=payOrderService.selectOrderInfoByOrdNo(ordNo);
|
|
|
if(payOrder!=null ){
|
|
|
if(payOrder.getStatus() !=null && payOrder.getStatus().equals("0")){
|
|
|
- if(stationInfos.getPayChannelType() !=null && stationInfos.getPayChannelType().equals("2")){
|
|
|
+ if(stationInfos.getThirdPayment() !=null && stationInfos.getThirdPayment().equals("02")){
|
|
|
/******************************************************云闪付支付***********************************************************/
|
|
|
//云闪付支付方式
|
|
|
Map<String, String> staPayChannelInfo = stationService.getStationAppIdAndAppSecret(Integer.valueOf(payInfoRequest.getStationId()));
|
|
@@ -496,7 +496,7 @@ public class PayController {
|
|
|
|
|
|
//返回前端字段
|
|
|
Map<String, Object> reqData = new HashMap<>();
|
|
|
- reqData.put("payChannelType", stationInfos.getPayChannelType());
|
|
|
+ reqData.put("thirdPayment", stationInfos.getThirdPayment());
|
|
|
//Map<String, Object> resultMap = new HashMap<>();
|
|
|
if(response !=null && response.getResult_code().equals("01")){
|
|
|
reqData.put("payTimeStamp", response.getTimeStamp());
|
|
@@ -653,7 +653,7 @@ public class PayController {
|
|
|
r.put("msg", result.get("msg"));
|
|
|
}
|
|
|
logger.info("随行付支付时系统返回前端参数字段:" +r);
|
|
|
- r.put("payChannelType", "1");
|
|
|
+ r.put("thirdPayment", "01");
|
|
|
resultData=ResultData.success(r);
|
|
|
}
|
|
|
}else {
|