🐛 #1455 修复微信支付分账结果查询接口的分账接收人解析错误的问题,并补充相关单元测试代码

This commit is contained in:
Binary Wang
2020-03-22 14:37:32 +08:00
parent 8d6978d757
commit 38959f821a
3 changed files with 75 additions and 5 deletions

View File

@@ -81,6 +81,7 @@ public class ProfitSharingServiceImpl implements ProfitSharingService {
String responseContent = this.payService.post(url, request.toXML(), true);
ProfitSharingQueryResult result = BaseWxPayResult.fromXML(responseContent, ProfitSharingQueryResult.class);
result.formatReceivers();
result.checkResult(this.payService, request.getSignType(), true);
return result;
}