@@ -81,6 +81,8 @@ namespace IRaCIS.Core.Application.Contracts
|
||||
|
||||
public string VideoUrl { get; set; } = string.Empty;
|
||||
|
||||
public string BodyPartForEditOther { get; set; }
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
||||
@@ -39,6 +39,8 @@ namespace IRaCIS.Core.Application.Contracts.DTO
|
||||
|
||||
public string BodyPart { get; set; } = String.Empty;
|
||||
|
||||
public string BodyPartForEditOther { get; set; }
|
||||
|
||||
}
|
||||
|
||||
public class QCQuestionAnswerCommand
|
||||
@@ -427,6 +429,8 @@ namespace IRaCIS.Core.Application.Contracts.DTO
|
||||
|
||||
public bool IsCompleteClinicalData { get; set; }
|
||||
|
||||
public string BodyPartForEditOther { get; set; }
|
||||
|
||||
}
|
||||
|
||||
public class QASeriesInfoDto
|
||||
|
||||
@@ -1066,6 +1066,7 @@ namespace IRaCIS.Core.Application.Image.QA
|
||||
|
||||
|
||||
study.BodyPartForEdit = updateModalityCommand.BodyPart;
|
||||
study.BodyPartForEditOther = updateModalityCommand.BodyPartForEditOther;
|
||||
|
||||
study.ModalityForEdit = updateModalityCommand.Modality;
|
||||
study.StudyName = updateModalityCommand.StudyName;
|
||||
|
||||
@@ -272,6 +272,10 @@ namespace IRaCIS.Core.Application.Contracts
|
||||
|
||||
public string StudyName { get; set; } = string.Empty;
|
||||
|
||||
public string BodyPartForEdit { get; set; }
|
||||
|
||||
public string BodyPartForEditOther { get; set; }
|
||||
|
||||
public List<DicomSeriesDTO> SeriesList { get; set; } = new List<DicomSeriesDTO>();
|
||||
}
|
||||
|
||||
|
||||
@@ -515,6 +515,10 @@ namespace IRaCIS.Core.Application.Services
|
||||
StudyCode = k.StudyCode,
|
||||
StudyId = k.Id,
|
||||
|
||||
BodyPartForEdit=k.BodyPartForEdit,
|
||||
BodyPartForEditOther=k.BodyPartForEditOther
|
||||
|
||||
|
||||
}).ToListAsync();
|
||||
var studyIds = dicomStudyList.Select(t => t.StudyId).ToList();
|
||||
|
||||
@@ -718,6 +722,9 @@ namespace IRaCIS.Core.Application.Services
|
||||
StudyCode = x.StudyCode,
|
||||
IsDicom = false,
|
||||
|
||||
BodyPartForEdit=x.BodyPart,
|
||||
BodyPartForEditOther=x.BodyPartForEditOther
|
||||
|
||||
}).ToList();
|
||||
|
||||
var isExistTaskNoneDicomFile = _noneDicomStudyFileRepository.Any(t => t.VisitTaskId == indto.VisitTaskId);
|
||||
|
||||
Reference in New Issue
Block a user