Message72

Author admin
Recipients
Date 2016-07-11.16:42:39
Content
[BitBucket user: Francisco Venancio]
[BitBucket date: 2016-07-11.14:42:39]

Yes, I'm aware of the manufacturer fourth parameter.
Perhaps I was not clear. The issue is about the response to calls to /modalites/{modality}/query . In Orthanc Explorer the queries are sent with asterisks, we had to change it to empty strings so that the queries came back with any answer, namely we changed :
'Query' : {
      'AccessionNumber' : '*',
      'PatientBirthDate' : '*',
      'PatientID' : '*',
      'PatientName' : '*',
      'PatientSex' : '*',
      'SpecificCharacterSet' : 'ISO_IR 192',  // UTF-8
      'StudyDate' : $('#qr-date').val(),
      'StudyDescription' : '*'
    }

to 
'Query' : {
      'AccessionNumber' : '',
      'PatientBirthDate' : '',
      'PatientID' : '',
      'PatientName' : '',
      'PatientSex' : '',
      'SpecificCharacterSet' : 'ISO_IR 192',  // UTF-8
      'StudyDate' : $('#qr-date').val(),
      'StudyDescription' : ''
    }

in query-retrieve.js.
History
Date User Action Args
2026-07-29 15:51:18adminlinkissue19 messages
2026-07-29 15:51:18admincreate