diff OrthancExplorer/query-retrieve.js @ 2218:3eefb84ac0bd

dynamically fix outgoing C-Find requests using "OutgoingFindRequestFilter()"
author Sebastien Jodogne <s.jodogne@gmail.com>
date Tue, 13 Dec 2016 10:27:20 +0100
parents e0517f25919e
children a95beca72e99
line wrap: on
line diff
--- a/OrthancExplorer/query-retrieve.js	Mon Dec 12 11:56:26 2016 +0100
+++ b/OrthancExplorer/query-retrieve.js	Tue Dec 13 10:27:20 2016 +0100
@@ -83,7 +83,6 @@
       'PatientID' : '*',
       'PatientName' : '*',
       'PatientSex' : '*',
-      'SpecificCharacterSet' : 'ISO_IR 192',  // UTF-8
       'StudyDate' : $('#qr-date').val(),
       'StudyDescription' : '*'
     }
@@ -95,7 +94,7 @@
   var modalities = '';
   $('#qr-modalities input:checked').each(function() {
     var s = $(this).attr('name');
-    if (modalities == '*')
+    if (modalities == '')
       modalities = s;
     else
       modalities += '\\' + s;