feat: Add support for study instance UID in series and enhance DICOM import functionality

This commit is contained in:
Ross
2026-05-11 10:05:39 +01:00
parent c1e351c7db
commit aaa3ee6313
8 changed files with 528 additions and 128 deletions
+1
View File
@@ -1114,6 +1114,7 @@ class Series(SeriesBase):
)
series_instance_uid = models.CharField(max_length=255, blank=True, null=True)
study_instance_uid = models.CharField(max_length=255, blank=True, null=True, db_index=True)
# findings = models.TextField(null=True, blank=True, help_text="Findings on the series / stack")
def __str__(self) -> str: