Compare commits
2 Commits
55132ff36f
...
5694addef6
| Author | SHA1 | Date |
|---|---|---|
|
|
5694addef6 | |
|
|
f037f0fac2 |
|
|
@ -2079,7 +2079,16 @@ namespace IRaCIS.Core.Application.Service.Common
|
|||
|
||||
#region 区分导表类型
|
||||
|
||||
var removeColumnIndexList = new List<int>() { 6, 7, 8 };
|
||||
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 export_Template = StaticData.Export.CommonReading_Export;
|
||||
|
||||
if (inQuery.ReadingExportType == ExportResult.DetailedTableOfAdjudicationResults)
|
||||
|
|
@ -2323,7 +2332,7 @@ namespace IRaCIS.Core.Application.Service.Common
|
|||
DynamicItemValueName = "QuestionValue",
|
||||
DynamicItemTitleName = "QuestionName",
|
||||
DynamicListName = "QuestionAnswerList",
|
||||
RemoveColunmIndexList = new List<int>() { },
|
||||
RemoveColunmIndexList = removeColumnIndexList,
|
||||
ColumnNameList = columNameList ?? new List<string>(),
|
||||
TranslateDicNameList = translateDicNameList ?? new List<string>()
|
||||
};
|
||||
|
|
|
|||
Loading…
Reference in New Issue