Skip to content

Commit

Permalink
feat: support date time query
Browse files Browse the repository at this point in the history
  • Loading branch information
Chinlinlee committed Aug 11, 2023
1 parent 25d2ea2 commit 8810a32
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions api/dicom-web/controller/QIDO-RS/service/QIDO-RS.service.js
Original file line number Diff line number Diff line change
Expand Up @@ -283,6 +283,9 @@ const vrQueryLookup = {
DA: async (value, tag) => {
let q = await mongoDateQuery(value, tag, false);
},
DT: async (value, tag) => {
let q = await mongoDateQuery(value, tag, false, "YYYYMMDDhhmmss.SSSSSSZZ");
},
PN: async (value, tag) => {
let queryValue = _.cloneDeep(value[tag]);
value[tag] = {
Expand Down

0 comments on commit 8810a32

Please sign in to comment.