一致性分析过滤掉全局任务
continuous-integration/drone/push Build is passing Details

IRC_NewDev
hang 2024-11-07 14:35:19 +08:00
parent 4f67de2898
commit 33bf0d908d
2 changed files with 2 additions and 1 deletions

View File

@ -1796,7 +1796,7 @@ namespace IRaCIS.Core.Application.Service.Common
var columNameList = list.SelectMany(t => t.QuestionAnswerList).Where(t => t.QuestionName.IsNotNullOrEmpty()).Select(t => t.QuestionName).Distinct().ToList();
exportInfo.List = ExportExcelConverterDate.ConvertToClientTimeInObject(list, _userInfo.TimeZoneId);
exportInfo.List = ExportExcelConverterDate.ConvertToClientTimeInObject(list.Where(t => t.ReadingCategory != ReadingCategory.Global).ToList(), _userInfo.TimeZoneId);
exportInfo.CurrentTime = ExportExcelConverterDate.DateTimeInternationalToString(DateTime.Now, _userInfo.TimeZoneId);
var dynamicColumnConfig = new DynamicColumnConfig()

View File

@ -1087,6 +1087,7 @@ namespace IRaCIS.Core.Application.Contracts
public string UserName { get; set; }
public bool? IsBaseline { get; set; }
public ReadingCategory ReadingCategory { get; set; }
/// <summary>
/// 自身一致性分析任务上会有这个值