Merge remote-tracking branch 'origin/dev/dev1.0' into dev/dev1.0

This commit is contained in:
wolter 2024-08-12 18:27:59 +08:00
commit 2f88c1be58
1 changed files with 4 additions and 0 deletions

View File

@ -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
}