Commit b473ebf9 by ping.wu

门店发起部分退款,失败原因返回

parent 802d8a6d
...@@ -88,6 +88,7 @@ public class MultiRefundService { ...@@ -88,6 +88,7 @@ public class MultiRefundService {
String message = ""; String message = "";
if (Objects.isNull(resp) || resp.getCode() != 200) { if (Objects.isNull(resp) || resp.getCode() != 200) {
refundStatus = PayRefundStatus.FAIL; refundStatus = PayRefundStatus.FAIL;
message = resp != null ? resp.getMsg() : "";
} else { } else {
MultiOrderRefundResponse.RefundPlatform data = resp.getData(); MultiOrderRefundResponse.RefundPlatform data = resp.getData();
if (Objects.isNull(data) || CollectionUtils.isEmpty(data.refundPlatformResponseList)) { if (Objects.isNull(data) || CollectionUtils.isEmpty(data.refundPlatformResponseList)) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment