From b34dd4f96f5327ba5bef1a15bda7fbc34300b32f Mon Sep 17 00:00:00 2001 From: Rzy <465386466@qq.com> Date: Mon, 12 Aug 2024 18:09:24 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9bug?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/services/thirdpay/pay.go | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/app/services/thirdpay/pay.go b/app/services/thirdpay/pay.go index 382968c..0d95185 100644 --- a/app/services/thirdpay/pay.go +++ b/app/services/thirdpay/pay.go @@ -52,6 +52,10 @@ func ThirdPayRefundCheck(ctx context.Context, refundReq *front.RefundReqs, appCh check = thirdpay.NewPayCheck(&ctx, &req, appCheck, ip) // 校验表单 check.CheckPayInfo() + if check.CheckCode != errorcode.Success { + return check, check.CheckCode + } + check.CheckOrderRefund() return check, check.CheckCode }