-
-
Notifications
You must be signed in to change notification settings - Fork 8.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
下载对账单,ALL与Success中没有订单总金额.与申请退款总金额 #1125
Labels
Comments
你确定最后两个值是有的吗?我看最新官方文档里没有提到后面两个字段。 如果你看到的文档是有的,请提供文档地址 |
m8cool
added a commit
to m8cool/WxJava
that referenced
this issue
Jul 28, 2019
Merged
m8cool
added a commit
to m8cool/WxJava
that referenced
this issue
Jul 28, 2019
binarywang
pushed a commit
that referenced
this issue
Jul 29, 2019
m8cool
added a commit
to m8cool/WxJava
that referenced
this issue
Jul 29, 2019
binarywang
pushed a commit
that referenced
this issue
Jul 29, 2019
文档上是没有那2个字段的,解析出来的,是有值的, |
关闭的有点早,还没发布版本呢 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
/*
* 总交易单数,应结订单总金额,退款总金额,充值券退款总金额,手续费总金额,订单总金额,申请退款总金额
2,
0.02,0.0,
0.0,0 * 参考以上格式进行取值 */ String[] totalTempStr = objStr.replaceAll(",", " ").split("
");billResult.setTotalRecord(totalTempStr[1].trim());
billResult.setTotalFee(totalTempStr[2].trim());
billResult.setTotalRefundFee(totalTempStr[3].trim());
billResult.setTotalCouponFee(totalTempStr[4].trim());
billResult.setTotalPoundageFee(totalTempStr[5].trim());
return billResult;
没有对以下账值
/**
/
private String totalAmount;
/*
*/
private String totalAppliedRefundFee;
The text was updated successfully, but these errors were encountered: