Compare commits
2 Commits
6bb3be17ee
...
89f6cd4244
| Author | SHA1 | Date |
|---|---|---|
|
|
89f6cd4244 | |
|
|
1c154de18b |
|
|
@ -431,6 +431,31 @@ namespace IRaCIS.Core.Application.Service.ImageAndDoc
|
||||||
// 不管是新的序列 还是 该序列 掉了Instance 重传的时候 检查的instance 数量都会增加
|
// 不管是新的序列 还是 该序列 掉了Instance 重传的时候 检查的instance 数量都会增加
|
||||||
findStudy.InstanceCount += seriesItem.InstanceList.Count;
|
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