Compare commits

..

No commits in common. "5694addef681491bd5b92224d66cf5026883441d" and "55132ff36fd75cfd7a1f6ade6bcd735e56bbff60" have entirely different histories.

1 changed files with 2 additions and 11 deletions

View File

@ -2079,16 +2079,7 @@ namespace IRaCIS.Core.Application.Service.Common
#region 区分导表类型
var removeColumnIndexList = new List<int>() { };
if (inQuery.ReadingExportType == ExportResult.DetailedTableOfAdjudicationResults ||
inQuery.ReadingExportType == ExportResult.DetailedTableOfAssessmentResults ||
inQuery.ReadingExportType == ExportResult.DetailedTableOfLesions ||
inQuery.ReadingExportType == ExportResult.TableOfAssessmentResults)
{
removeColumnIndexList = new List<int>() { 6, 7, 8 };
}
var removeColumnIndexList = new List<int>() { 6, 7, 8 };
var export_Template = StaticData.Export.CommonReading_Export;
if (inQuery.ReadingExportType == ExportResult.DetailedTableOfAdjudicationResults)
@ -2332,7 +2323,7 @@ namespace IRaCIS.Core.Application.Service.Common
DynamicItemValueName = "QuestionValue",
DynamicItemTitleName = "QuestionName",
DynamicListName = "QuestionAnswerList",
RemoveColunmIndexList = removeColumnIndexList,
RemoveColunmIndexList = new List<int>() { },
ColumnNameList = columNameList ?? new List<string>(),
TranslateDicNameList = translateDicNameList ?? new List<string>()
};