修改三个字段
parent
99a1690481
commit
1c154de18b
|
|
@ -319,6 +319,31 @@ namespace IRaCIS.Core.Application.Service.ImageAndDoc
|
|||
// 不管是新的序列 还是 该序列 掉了Instance 重传的时候 检查的instance 数量都会增加
|
||||
findStudy.InstanceCount += seriesItem.InstanceList.Count;
|
||||
|
||||
|
||||
if (incommand.Study.RadionuclideTotalDose != string.Empty)
|
||||
{
|
||||
await _dicomStudyRepository.UpdatePartialFromQueryAsync(t => t.Id == findStudy.Id, u => new DicomStudy()
|
||||
{
|
||||
RadionuclideTotalDose = incommand.Study.RadionuclideTotalDose
|
||||
});
|
||||
}
|
||||
|
||||
if (incommand.Study.RadionuclideHalfLife != string.Empty)
|
||||
{
|
||||
await _dicomStudyRepository.UpdatePartialFromQueryAsync(t => t.Id == findStudy.Id, u => new DicomStudy()
|
||||
{
|
||||
RadionuclideHalfLife = incommand.Study.RadionuclideHalfLife
|
||||
});
|
||||
}
|
||||
|
||||
if (incommand.Study.RadiopharmaceuticalStartTime != string.Empty)
|
||||
{
|
||||
await _dicomStudyRepository.UpdatePartialFromQueryAsync(t => t.Id == findStudy.Id, u => new DicomStudy()
|
||||
{
|
||||
RadiopharmaceuticalStartTime = incommand.Study.RadiopharmaceuticalStartTime
|
||||
});
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue