jiangjc 1 년 전
부모
커밋
2b3b12d8af
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 2 2
      OASystem/OASystem.Api/Controllers/StatisticsController.cs

+ 2 - 2
OASystem/OASystem.Api/Controllers/StatisticsController.cs

@@ -770,8 +770,8 @@ namespace OASystem.API.Controllers
                     string visaClients = item.VisaClient;
                     if (!string.IsNullOrEmpty(visaClients))
                     {
-                        System.Text.RegularExpressions.Match m_EnName = Regex.Match(item.ClientName, @"[A-Za-z]+");
-                        System.Text.RegularExpressions.Match m_ZHName = Regex.Match(item.ClientName, @"[\u4e00-\u9fa5]");
+                        System.Text.RegularExpressions.Match m_EnName = Regex.Match(item.VisaClient, @"[A-Za-z]+");
+                        System.Text.RegularExpressions.Match m_ZHName = Regex.Match(item.VisaClient, @"[\u4e00-\u9fa5]");
 
                         if (m_EnName.Success || m_ZHName.Success)
                         {