新增抽出货币类型接口,国家地区代码

This commit is contained in:
egan
2019-04-16 23:14:28 +08:00
parent 66ffdc5782
commit 1b7b2f7c90
13 changed files with 227 additions and 44 deletions

View File

@@ -180,7 +180,7 @@ public class PayoneerPayService extends BasePayService<PayoneerConfigStorage> im
params.put("amount", Util.conversionAmount(order.getPrice()));
params.put("client_reference_id", order.getOutTradeNo());
if (null == order.getCurType()) {
order.setCurType(CurType.USD);
order.setCurType(DefaultCurType.USD);
}
params.put("currency", order.getCurType());
params.put("description", order.getSubject());