From d0989c66bb72715218e7c674a9c4a85344388823 Mon Sep 17 00:00:00 2001 From: huang Date: Fri, 10 Apr 2026 18:31:40 +0800 Subject: [PATCH] =?UTF-8?q?=E6=9A=82=E4=B8=94=E4=B8=8D=E9=9C=80=E8=A6=81?= =?UTF-8?q?=E5=AE=9E=E5=90=8D?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- internal/service/client_order/service.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/internal/service/client_order/service.go b/internal/service/client_order/service.go index ed090b5..b4e2f6c 100644 --- a/internal/service/client_order/service.go +++ b/internal/service/client_order/service.go @@ -138,9 +138,9 @@ func (s *Service) CreateOrder(ctx context.Context, customerID uint, req *dto.Cli } // REALNAME-03: 按卡类型判断实名需求,普通卡需要实名,行业卡不需要 - if assetInfo.CardCategory == "normal" && assetInfo.RealNameStatus != constants.RealNameStatusVerified { - return nil, errors.New(errors.CodeNeedRealname) - } + // if assetInfo.CardCategory == "normal" && assetInfo.RealNameStatus != constants.RealNameStatusVerified { + // return nil, errors.New(errors.CodeNeedRealname) + // } // 先判断是否需要强充,避免普通下单时不必要地校验微信配置 forceRecharge := s.checkForceRechargeRequirement(skipCtx, validationResult)