IRC_NewDev
he 2024-06-14 10:52:01 +08:00
parent e5d9cfc50e
commit 870fca2e93
2 changed files with 9 additions and 0 deletions

View File

@ -299,6 +299,13 @@ namespace IRaCIS.Application.Services
};
}
if (inDto.FilterNoneForm)
{
cRCClinicalDataList = cRCClinicalDataList.Where(x => !(x.ClinicalFromList.Count() == 0 && x.ClinicalUploadType == ClinicalUploadType.Structuring)).ToList();
}
return cRCClinicalDataList;
}

View File

@ -158,6 +158,8 @@ namespace IRaCIS.Core.Application.Service.Reading.Dto
public Guid? StudyId { get; set; }
public bool FilterNoneForm { get; set; } = false;
}