Merge branch 'Test_IRC_Net8' of http://192.168.3.68:2000/XCKJ/irc-netcore-api into Test_IRC_Net8

IRC_NewDev
hang 2024-03-08 13:37:22 +08:00
commit 0d4f694fcf
7 changed files with 16 additions and 50 deletions

View File

@ -25,7 +25,7 @@
Protocol ID: {2}
</div>
<div>
Study name: {1}
Study Name: {1}
</div>
<div>
User ID: {4}

View File

@ -25,7 +25,7 @@
Protocol ID: {2}
</div>
<div>
Study name: {1}
Study Name: {1}
</div>
<div>
User ID: {4}

View File

@ -22,7 +22,7 @@
Protocol ID: {2}
</div>
<div>
Study name: {3}
Study Name: {3}
</div>
<div>
Site ID: {4}

View File

@ -25,7 +25,7 @@
Protocol ID: {2}
</div>
<div>
Study name: {1}
Study Name: {1}
</div>
<div>
User ID: {4}

View File

@ -25,7 +25,7 @@
Protocol ID: {2}
</div>
<div>
Study name: {1}
Study Name: {1}
</div>
<div>
User ID: {4}

View File

@ -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

View File

@ -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)
else if (0 < spleenLength && spleenLength <= 130)
{
if (spleenLength <= 130)
{
return SpleenAssessment.Normal.GetEnumInt();
}
else
{
return SpleenAssessment.Swelling.GetEnumInt();
}
}
return SpleenAssessment.Normal.GetEnumInt();
}
else if (inDto.IsBaseLine)
{
return SpleenAssessment.Swelling.GetEnumInt();
}
var lowSpleenLength = await this.GetLowSpleenLength(taskinfo);
var result = SpleenAssessment.Stabilization;
var presentSpd = spleenLength;