导出修改
parent
efe2e7f063
commit
63b9f4e775
|
|
@ -449,8 +449,14 @@ namespace IRaCIS.Core.Application.Service.ReadingCalculate
|
|||
VisitTaskId = inDto.VisitTaskId
|
||||
});
|
||||
targetSegmentAnswer = string.Join(",", targetSegmentData
|
||||
.Where(x =>x.BodyPartForEdit.IsNotNullOrEmpty())
|
||||
.Select(x => x.BodyPartForEdit));
|
||||
.Where(x => x.BodyPartForEdit.IsNotNullOrEmpty())
|
||||
.SelectMany(x => x.BodyPartForEdit.Split('|'))
|
||||
.Where(s => !string.IsNullOrWhiteSpace(s))
|
||||
.Distinct());
|
||||
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -306,8 +306,10 @@ namespace IRaCIS.Core.Application.Service.ReadingCalculate
|
|||
VisitTaskId = inDto.VisitTaskId
|
||||
});
|
||||
targetSegmentAnswer = string.Join(",", targetSegmentData
|
||||
.Where(x => x.BodyPartForEdit.IsNotNullOrEmpty())
|
||||
.Select(x => x.BodyPartForEdit));
|
||||
.Where(x => x.BodyPartForEdit.IsNotNullOrEmpty())
|
||||
.SelectMany(x => x.BodyPartForEdit.Split('|'))
|
||||
.Where(s => !string.IsNullOrWhiteSpace(s))
|
||||
.Distinct());
|
||||
}
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue