Commit e5895cfa by ping.wu

Merge branch 'feature/20240305_门店操作部分退款_wuping' of…

Merge branch 'feature/20240305_门店操作部分退款_wuping' of https://gitlab.freemud.com/order-group-application/order-group into develop
parents bdb49e6d b473ebf9
...@@ -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