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)}`,