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