太米退款

This commit is contained in:
磷叶 2024-12-30 16:50:52 +08:00
parent 049b8470ad
commit 1dfa2e2316

View File

@ -11,6 +11,7 @@ import com.ruoyi.common.pay.tm.vo.TmTradeInfo;
import com.ruoyi.common.pay.Payable;
import com.ruoyi.common.pay.Refundable;
import com.ruoyi.common.utils.DateUtils;
import com.ruoyi.common.utils.ServiceUtil;
import com.ruoyi.common.utils.http.HttpUtils;
import com.wechat.pay.java.service.payments.jsapi.model.PrepayWithRequestPaymentResponse;
import org.springframework.beans.factory.annotation.Autowired;
@ -63,9 +64,11 @@ public class TmPayService implements PayApi {
String response = doPost(config.getHttpUrl() + "/open/Pay/refund", body, config);
if (com.ruoyi.common.utils.StringUtils.hasText(response)) {
JSONObject jsonResponse = JSON.parseObject(response);
if (jsonResponse.getInteger("errCode") == 0 && "退款成功".equals(jsonResponse.getString("errMsg"))) {
JSONObject tradeInfo = jsonResponse.getJSONObject("refundInfo");
return tradeInfo.toJavaObject(RefundInfo.class);
if (jsonResponse.getInteger("errCode") == 0) {
JSONObject refundInfo = jsonResponse.getJSONObject("refundInfo");
ServiceUtil.assertion(refundInfo == null, "退款失败");
ServiceUtil.assertion(refundInfo.getInteger("refundStatus") != 1, "退款失败:%s", refundInfo.getString("refundMessage"));
return refundInfo.toJavaObject(RefundInfo.class);
} else {
throw new ServiceException("退款失败: " + jsonResponse.getString("errMsg"));
}