From 2546aca666787f82a162a6aabae1a2f3013f3835 Mon Sep 17 00:00:00 2001 From: Ross Date: Wed, 6 Apr 2022 19:37:53 +0100 Subject: [PATCH] . --- atlas/templates/atlas/series_form.html | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/atlas/templates/atlas/series_form.html b/atlas/templates/atlas/series_form.html index 6b1c0d4a..ecf8f199 100755 --- a/atlas/templates/atlas/series_form.html +++ b/atlas/templates/atlas/series_form.html @@ -310,7 +310,11 @@ // We will get the sopInstanceUid from the file which is a string and // has the tag (0020,000D) var study_description = dataSet.string('x00081030').toLowerCase(); + var accession_number = dataSet.string('x00080050').toLowerCase(); + var patient_id = dataSet.string('x00100020').toLowerCase(); console.log("STUDY", study_description); + console.log("acc", accession_number); + console.log("pid", patient_id); $.ajax({ url: `{% url 'generic:examination-autocomplete' %}/${encodeURI(study_description)}`,