comparison OrthancExplorer/query-retrieve.js @ 3308:f09b9e14e995

Changed field default values from '*' to '' (empty string) in the Query/Retrieve query construction
author bgo-osimis
date Mon, 25 Feb 2019 14:57:27 +0100
parents 81b58b549845
children a3b8924bd12a
comparison
equal deleted inserted replaced
3307:66745b9039aa 3308:f09b9e14e995
82 var query, server, modalities, field; 82 var query, server, modalities, field;
83 83
84 query = { 84 query = {
85 'Level' : 'Study', 85 'Level' : 'Study',
86 'Query' : { 86 'Query' : {
87 'AccessionNumber' : '*', 87 'AccessionNumber' : '',
88 'PatientBirthDate' : '*', 88 'PatientBirthDate' : '',
89 'PatientID' : '*', 89 'PatientID' : '',
90 'PatientName' : '*', 90 'PatientName' : '',
91 'PatientSex' : '*', 91 'PatientSex' : '',
92 'StudyDate' : $('#qr-date').val(), 92 'StudyDate' : $('#qr-date').val(),
93 'StudyDescription' : '*' 93 'StudyDescription' : ''
94 } 94 }
95 }; 95 };
96 96
97 modalities = ''; 97 modalities = '';
98 98