uat-标注-28
continuous-integration/drone/push Build is passing
Details
continuous-integration/drone/push Build is passing
Details
parent
d37ab8ee65
commit
7f970edd52
|
|
@ -961,7 +961,7 @@ namespace IRaCIS.Core.Application.Service.ImageAndDoc
|
||||||
Path = t.Path
|
Path = t.Path
|
||||||
}).ToList(),
|
}).ToList(),
|
||||||
|
|
||||||
ReadingFileCount = u.FileCount,
|
ReadingFileCount = u.NoneDicomFileList.Where(t => t.IsReading).Count(),
|
||||||
|
|
||||||
}).ToList();
|
}).ToList();
|
||||||
|
|
||||||
|
|
@ -1013,7 +1013,7 @@ namespace IRaCIS.Core.Application.Service.ImageAndDoc
|
||||||
ImageDate = ns.ImageDate,
|
ImageDate = ns.ImageDate,
|
||||||
BodyPart = ns.BodyPart,
|
BodyPart = ns.BodyPart,
|
||||||
BodyPartForEditOther = ns.BodyPartForEditOther,
|
BodyPartForEditOther = ns.BodyPartForEditOther,
|
||||||
FileCount = ns.FileCount,
|
|
||||||
Modality = ns.Modality,
|
Modality = ns.Modality,
|
||||||
StudyCode = ns.StudyCode,
|
StudyCode = ns.StudyCode,
|
||||||
|
|
||||||
|
|
@ -1027,7 +1027,8 @@ namespace IRaCIS.Core.Application.Service.ImageAndDoc
|
||||||
Path = t.Path
|
Path = t.Path
|
||||||
}).ToList(),
|
}).ToList(),
|
||||||
|
|
||||||
ReadingFileCount = ns.FileCount,
|
FileCount = (inQuery.IsImageSegmentLabel == false ? ns.ImageLabelNoneDicomFileList : ns.NoneDicomFileList).Count(),
|
||||||
|
ReadingFileCount = (inQuery.IsImageSegmentLabel == false ? ns.ImageLabelNoneDicomFileList : ns.NoneDicomFileList).Where(t => t.IsReading).Count(),
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue