|
|
@@ -1172,8 +1172,6 @@ namespace OASystem.Infrastructure.Repositories.Groups
|
|
|
}
|
|
|
}
|
|
|
|
|
|
- Regex regex = new Regex("^[\u4e00-\u9fa5]{0,}$");
|
|
|
-
|
|
|
//城市税排除计算
|
|
|
var excludeList = new List<int>(); // { 1452 }
|
|
|
|
|
|
@@ -1183,7 +1181,7 @@ namespace OASystem.Infrastructure.Repositories.Groups
|
|
|
c.PaymentCurrency = dto.Currency;
|
|
|
for (int i = 0; i < dto.SelectCheck.Count; i++)
|
|
|
{
|
|
|
- if (!regex.IsMatch(dto.SelectCheck[i]))
|
|
|
+ if (int.TryParse(dto.SelectCheck[i], out _))
|
|
|
{
|
|
|
for (int j = 0; j < carTouristList.Count; j++)
|
|
|
{
|