Browse Source

fix car pay

release_toaliyun_real
lin 3 years ago
parent
commit
393ef7388b
1 changed files with 5 additions and 1 deletions
  1. +5
    -1
      mallinkService/src/main/java/com/iformall/service/impl/WxMerchantServiceImpl.java

+ 5
- 1
mallinkService/src/main/java/com/iformall/service/impl/WxMerchantServiceImpl.java View File

@@ -946,7 +946,11 @@ public class WxMerchantServiceImpl implements WxMerchantService {
receiver.setPlat(EnumAppPlat.WX.getCode()); receiver.setPlat(EnumAppPlat.WX.getCode());
} }
StringBuffer psb = new StringBuffer("{\"").append(Constant.paymentReceiverParamIsv).append("\":").append(wxMerchant.getIsIsv()).append(""); StringBuffer psb = new StringBuffer("{\"").append(Constant.paymentReceiverParamIsv).append("\":").append(wxMerchant.getIsIsv()).append("");
psb.append(",\"").append(Constant.paymentReceicerParamApiKey).append("\":\"").append(wxMerchant.getApiKey()).append("\"}");
if (EnumYesOrNo.YES.getCode().intValue()== wxMerchant.getIsIsv().intValue()) {
psb.append("}");
}else {
psb.append(",\"").append(Constant.paymentReceicerParamApiKey).append("\":\"").append(wxMerchant.getApiKey()).append("\"}");
}
receiver.setReceiverAccount(wxMerchant.getAccount()); receiver.setReceiverAccount(wxMerchant.getAccount());
receiver.setReceiverParams(psb.toString()); receiver.setReceiverParams(psb.toString());
wxProfitPaymentReceiverService.saveOrUpdate(receiver); wxProfitPaymentReceiverService.saveOrUpdate(receiver);


Loading…
Cancel
Save