Browse Source

完善成本签证费用

yuanrf 11 months ago
parent
commit
6b70d3b194
1 changed files with 1 additions and 1 deletions
  1. 1 1
      OASystem/OASystem.Api/Controllers/GroupsController.cs

+ 1 - 1
OASystem/OASystem.Api/Controllers/GroupsController.cs

@@ -5123,7 +5123,7 @@ namespace OASystem.API.Controllers
                     spArr = countryArr.Split("、");
                 }
 
-                foreach (var item in spArr)
+                foreach (var item in spArr.Where(x=>!string.IsNullOrWhiteSpace(x)).ToList())
                 {
                    var dbQueryCountry = _sqlSugar.Queryable<Res_CountryFeeCost>().First(x => x.VisaCountry.Contains(item));
                     if (dbQueryCountry != null)