1.对账下载参数错误问题

This commit is contained in:
Actinia-517
2017-12-25 21:10:18 +08:00
parent 0528a23ddb
commit 284045b730
3 changed files with 4 additions and 3 deletions

View File

@@ -617,7 +617,7 @@ public class UnionPayService extends BasePayService {
Map<String ,Object > params = this.getCommonParam();
UnionTransactionType.FILE_TRANSFER.convertMap(params);
DateFormat df = new SimpleDateFormat("MMDD");
params.put(SDKConstants.param_settleDate,df.format(new Date()));
params.put(SDKConstants.param_settleDate,df.format(billDate));
params.put(SDKConstants.param_fileType,billType);
this.setSign(params);
String responseStr = getHttpRequestTemplate().postForObject(this.getFileTransUrl(),params,String.class);