Merge branch 'Test_IRC_Net8' of http://192.168.3.68:2000/XCKJ/irc-netcore-api into Test_IRC_Net8
commit
0d4f694fcf
|
@ -25,7 +25,7 @@
|
|||
Protocol ID: {2}
|
||||
</div>
|
||||
<div>
|
||||
Study name: {1}
|
||||
Study Name: {1}
|
||||
</div>
|
||||
<div>
|
||||
User ID: {4}
|
||||
|
|
|
@ -25,7 +25,7 @@
|
|||
Protocol ID: {2}
|
||||
</div>
|
||||
<div>
|
||||
Study name: {1}
|
||||
Study Name: {1}
|
||||
</div>
|
||||
<div>
|
||||
User ID: {4}
|
||||
|
|
|
@ -22,7 +22,7 @@
|
|||
Protocol ID: {2}
|
||||
</div>
|
||||
<div>
|
||||
Study name: {3}
|
||||
Study Name: {3}
|
||||
</div>
|
||||
<div>
|
||||
Site ID: {4}
|
||||
|
|
|
@ -25,7 +25,7 @@
|
|||
Protocol ID: {2}
|
||||
</div>
|
||||
<div>
|
||||
Study name: {1}
|
||||
Study Name: {1}
|
||||
</div>
|
||||
<div>
|
||||
User ID: {4}
|
||||
|
|
|
@ -25,7 +25,7 @@
|
|||
Protocol ID: {2}
|
||||
</div>
|
||||
<div>
|
||||
Study name: {1}
|
||||
Study Name: {1}
|
||||
</div>
|
||||
<div>
|
||||
User ID: {4}
|
||||
|
|
|
@ -770,36 +770,6 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
|
|||
|
||||
public string RowMark { get; set; } = string.Empty;
|
||||
|
||||
/// <summary>
|
||||
/// InstanceId
|
||||
/// </summary>
|
||||
public Guid? OtherInstanceId { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// SeriesId
|
||||
/// </summary>
|
||||
public Guid? OtherSeriesId { get; set; }
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// StudyId
|
||||
/// </summary>
|
||||
public Guid? OtherStudyId { get; set; }
|
||||
|
||||
public string? OtherMarkTool { get; set; }
|
||||
|
||||
public string? OtherPicturePath { get; set; }
|
||||
|
||||
public int? OtherNumberOfFrames { get; set; }
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
public string? OtherMeasureData { get; set; } = string.Empty;
|
||||
|
||||
|
||||
}
|
||||
|
||||
public class CopyTableAnswerRowInfo : ReadingTableAnswerRowInfoBase
|
||||
|
|
|
@ -2105,30 +2105,26 @@ namespace IRaCIS.Core.Application.Service.ReadingCalculate
|
|||
|
||||
var taskinfo = await _visitTaskRepository.Where(x => x.Id == visitTaskId).FirstNotNullAsync();
|
||||
ReadingCalculateDto inDto = await _generalCalculateService.GetReadingCalculateDto(visitTaskId);
|
||||
|
||||
if (spleenLength == 0)
|
||||
var result = SpleenAssessment.NotEvaluable;
|
||||
if (spleenLength < 0)
|
||||
{
|
||||
return SpleenAssessment.NotEvaluable.GetEnumInt();
|
||||
}
|
||||
|
||||
if (inDto.IsBaseLine)
|
||||
{
|
||||
if (spleenLength <= 130)
|
||||
else if (0 < spleenLength && spleenLength <= 130)
|
||||
{
|
||||
return SpleenAssessment.Normal.GetEnumInt();
|
||||
|
||||
}
|
||||
else
|
||||
else if (inDto.IsBaseLine)
|
||||
{
|
||||
return SpleenAssessment.Swelling.GetEnumInt();
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
|
||||
var lowSpleenLength = await this.GetLowSpleenLength(taskinfo);
|
||||
|
||||
|
||||
var result = SpleenAssessment.Stabilization;
|
||||
|
||||
|
||||
|
||||
var presentSpd = spleenLength;
|
||||
|
|
Loading…
Reference in New Issue