Compare commits
No commits in common. "545ddd4ec9e174dcb69b1845de4d9a0efb8cbfdf" and "1d38fc087995e9e8ef6005886f481446105fab21" have entirely different histories.
545ddd4ec9
...
1d38fc0879
|
@ -12,16 +12,6 @@ namespace IRaCIS.Core.Application.ViewModel
|
|||
public Guid VisitTaskId { get; set; }
|
||||
}
|
||||
|
||||
public class CalculateTargetLesionStatusInDto
|
||||
{
|
||||
public Guid VisitTaskId { get; set;}
|
||||
|
||||
public Guid QuestionId { get; set; }
|
||||
|
||||
public decimal RowNumber { get; set; }
|
||||
|
||||
}
|
||||
|
||||
public class ReadingTaskQuestionAnswerDto : ReadingTaskQuestionAnswer
|
||||
{
|
||||
public QuestionType QuestionType { get; set; }
|
||||
|
|
|
@ -866,28 +866,6 @@ namespace IRaCIS.Core.Application.Service.ReadingCalculate
|
|||
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// 计算靶病灶状态
|
||||
/// </summary>
|
||||
/// <param name="inDto"></param>
|
||||
/// <returns></returns>
|
||||
public async Task CalculateTargetLesionStatus(CalculateTargetLesionStatusInDto inDto)
|
||||
{
|
||||
if (inDto.RowNumber % 1 != 0)
|
||||
{
|
||||
var taskInfo = await _visitTaskRepository.Where(x => x.Id == inDto.VisitTaskId).FirstNotNullAsync();
|
||||
|
||||
// 找到靶病灶问题
|
||||
var targetQuestion = await _readingQuestionTrialRepository.Where(x => x.ReadingQuestionCriterionTrialId == taskInfo.TrialReadingCriterionId && x.LesionType == LesionType.TargetLesion).FirstOrDefaultAsync();
|
||||
if(targetQuestion!=null)
|
||||
{
|
||||
// 找到状态问题
|
||||
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
#region 将上一次的访视病灶添加到这一次
|
||||
|
|
Loading…
Reference in New Issue