|
@@ -1,16 +1,8 @@
|
|
|
using EyeSoft.Extensions;
|
|
|
-using EyeSoft.Logging;
|
|
|
-using NPOI.SS.Formula.Functions;
|
|
|
using OASystem.Domain;
|
|
|
using OASystem.Domain.Entities.Groups;
|
|
|
using OASystem.Domain.Entities.Resource;
|
|
|
using OASystem.Domain.ViewModels.Groups;
|
|
|
-using SqlSugar;
|
|
|
-using System;
|
|
|
-using System.Collections.Generic;
|
|
|
-using System.Linq;
|
|
|
-using System.Text;
|
|
|
-using System.Threading.Tasks;
|
|
|
|
|
|
namespace OASystem.Infrastructure.Repositories.Groups
|
|
|
{
|
|
@@ -432,7 +424,7 @@ namespace OASystem.Infrastructure.Repositories.Groups
|
|
|
var ids = new List<int>();
|
|
|
foreach (var item in otherFeeDatas)
|
|
|
{
|
|
|
- if (item.PriceName.Contains("、"))
|
|
|
+ if (item.PriceName.Contains('、'))
|
|
|
{
|
|
|
var priceNames = item.PriceName.Split('、');
|
|
|
foreach (var priceName in priceNames)
|
|
@@ -855,7 +847,7 @@ namespace OASystem.Infrastructure.Repositories.Groups
|
|
|
if (diId < 1) { return _view; }
|
|
|
if (dataId < 1) { return _view; }
|
|
|
|
|
|
- List<int> stids = new List<int>() { 17, 66 };
|
|
|
+ List<int> stids = new() { 17, 66 };
|
|
|
var setData = _sqlSugar.Queryable<Sys_SetData>().Where(x => x.IsDel == 0 && stids.Contains(x.STid)).ToList();
|
|
|
string _teamCurrency = string.Empty;
|
|
|
|