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)