diff --git a/IRaCIS.Core.Application/IRaCIS.Core.Application.xml b/IRaCIS.Core.Application/IRaCIS.Core.Application.xml index f32c1215a..302b2bed9 100644 --- a/IRaCIS.Core.Application/IRaCIS.Core.Application.xml +++ b/IRaCIS.Core.Application/IRaCIS.Core.Application.xml @@ -13740,6 +13740,13 @@ + + + 保存任务问题 带动态稽查参数 + + + + 修改肿瘤学评估结果 diff --git a/IRaCIS.Core.Application/Service/Reading/ReadingImageTask/ReadingImageTaskService.cs b/IRaCIS.Core.Application/Service/Reading/ReadingImageTask/ReadingImageTaskService.cs index 3bd70eb5c..7bd7cbdb7 100644 --- a/IRaCIS.Core.Application/Service/Reading/ReadingImageTask/ReadingImageTaskService.cs +++ b/IRaCIS.Core.Application/Service/Reading/ReadingImageTask/ReadingImageTaskService.cs @@ -1733,31 +1733,45 @@ namespace IRaCIS.Application.Services /// /// [HttpPost] - [TypeFilter(typeof(TrialResourceFilter), Arguments = new object[] { "AfterStopCannNotOpt" })] + + [TypeFilter(typeof(TrialResourceFilter), Arguments = new object[] { "AfterStopCannNotOpt" })] public async Task SaveImageQuality(ChangeDicomReadingQuestionAnswerInDto inDto) { inDto.UpdateMark = true; return await ChangeDicomReadingQuestionAnswer(inDto); } - ///// - ///// 保存ECRF - ///// - ///// - ///// - //[HttpPost] - //public async Task SaveImageQuality(ChangeDicomReadingQuestionAnswerInDto inDto) - //{ - // return await ChangeDicomReadingQuestionAnswer(inDto); - //} - - /// - /// 修改肿瘤学评估结果 + /// 保存任务问题 带动态稽查参数 /// /// /// - [HttpPost] + [Route("/SaveTaskQuestion/{param}")] + [HttpPost] + [TypeFilter(typeof(TrialResourceFilter), Arguments = new object[] { "AfterStopCannNotOpt" })] + public async Task SaveTaskQuestion(ChangeDicomReadingQuestionAnswerInDto inDto) + { + return await this.SaveImageQuality(inDto); + } + + ///// + ///// 保存ECRF + ///// + ///// + ///// + //[HttpPost] + //public async Task SaveImageQuality(ChangeDicomReadingQuestionAnswerInDto inDto) + //{ + // return await ChangeDicomReadingQuestionAnswer(inDto); + //} + + + /// + /// 修改肿瘤学评估结果 + /// + /// + /// + [HttpPost] [TypeFilter(typeof(TrialResourceFilter), Arguments = new object[] { "AfterStopCannNotOpt" })] public async Task ChangeDicomReadingQuestionAnswer(ChangeDicomReadingQuestionAnswerInDto inDto) {