添加pos 机退款接口
This commit is contained in:
@@ -82,7 +82,6 @@ public class MerchantOrderController {
|
||||
private final MerchantMenberRechargeService merchantMenberRechargeService;
|
||||
private final SxfPayService sxfPayService;
|
||||
private final RyxPayService ryxPayService;
|
||||
private final LklPayService lklPayService;
|
||||
private final MerchantChannelStatusMapper merchantChannelStatusMapper;
|
||||
@Autowired
|
||||
private DeviceStockService deviceStockService;
|
||||
@@ -93,6 +92,11 @@ public class MerchantOrderController {
|
||||
@Setter(onMethod_ = {@Autowired, @Qualifier("ysPayOldService")})
|
||||
private PayService ysPayOldService;
|
||||
|
||||
|
||||
|
||||
@Setter(onMethod_ = {@Autowired, @Qualifier("lkLPayService")})
|
||||
private PayService lklPayService;
|
||||
|
||||
// 微信支付无法确认支付结果状态
|
||||
private String[] wechatPayNotSureResult = new String[]{"SYSTEMERROR", "USERPAYING", "BANKERROR"};
|
||||
|
||||
@@ -846,6 +850,10 @@ public class MerchantOrderController {
|
||||
case 4:
|
||||
result = ysPayOldService.tradeQuery(order,channel.getMerchantId());
|
||||
break;
|
||||
case 5:
|
||||
result=lklPayService.tradeQuery(order,channel.getMerchantId());
|
||||
break;
|
||||
|
||||
}
|
||||
|
||||
if(result != null){
|
||||
@@ -908,7 +916,7 @@ public class MerchantOrderController {
|
||||
result = ysPayOldService.tradeQuery(order,channel.getMerchantId());
|
||||
break;
|
||||
case 5:
|
||||
//result = lklPayService.tradeQuery(order,channel.getMerchantId());
|
||||
result = lklPayService.tradeQuery(order,channel.getMerchantId());
|
||||
}
|
||||
|
||||
if(result != null){
|
||||
|
||||
Reference in New Issue
Block a user