# HG changeset patch # User Sebastien Jodogne # Date 1787049851 -7200 # Node ID 90a382c163eea63cec03196f50d2fdc9fbc77540 # Parent 83ef6cd2e7247be08b925d8ee0feb0dba3f7957f allow searching DICOM resources by "Study ID" in the user interface diff -r 83ef6cd2e724 -r 90a382c163ee NEWS --- a/NEWS Tue Aug 18 10:18:24 2026 +0200 +++ b/NEWS Tue Aug 18 12:44:11 2026 +0200 @@ -1,6 +1,7 @@ Pending changes in the mainline =============================== +* Allow searching DICOM resources by "Study ID" in the DICOMweb client Web user interface. * New configuration option "OtherBinaryMode" to control how OB, OD, OF, OL, OV, or OW value representations are encoded in WADO-RS responses. Possible values: "BulkDataURI" (new default), diff -r 83ef6cd2e724 -r 90a382c163ee WebApplication/app.js --- a/WebApplication/app.js Tue Aug 18 10:18:24 2026 +0200 +++ b/WebApplication/app.js Tue Aug 18 12:44:11 2026 +0200 @@ -61,6 +61,10 @@ { key: DICOM_TAG_STUDY_DATE, label: 'Study date' + }, + { + key: DICOM_TAG_STUDY_ID, + label: 'Study ID' } ], studyToDelete: null, @@ -158,6 +162,10 @@ args[DICOM_TAG_STUDY_DATE] = app.lookup.studyDate; } + if ('studyID' in app.lookup) { + args[DICOM_TAG_STUDY_ID] = app.lookup.studyID; + } + if ('accessionNumber' in app.lookup) { args[DICOM_TAG_ACCESSION_NUMBER] = app.lookup.accessionNumber; } diff -r 83ef6cd2e724 -r 90a382c163ee WebApplication/index.html --- a/WebApplication/index.html Tue Aug 18 10:18:24 2026 +0200 +++ b/WebApplication/index.html Tue Aug 18 12:44:11 2026 +0200 @@ -121,6 +121,12 @@ +
+ +
+ +
+