fix(date limits) Enabling range day limits on study search (#217)

This commit is contained in:
Gustavo André Lelis 2018-07-03 12:04:20 -03:00 committed by Erik Ziegler
parent 6a5ff13624
commit 830146441d
9 changed files with 25 additions and 11 deletions

View File

@ -1,11 +1,9 @@
{
"servers": {
"dimse": [{
"name": "SPRITE PACS",
"wadoUriRoot": "http://localhost:1000/wado/CT",
"requestOptions": {
"logRequests": true,
"logResponses": true,
"logTiming": true
@ -33,7 +31,8 @@
"public": {
"verifyEmail": false,
"ui": {
"studyListFunctionsEnabled": true
"studyListFunctionsEnabled": true,
"studyListDateFilterNumDays": 1
}
}
}

View File

@ -47,7 +47,8 @@
"public": {
"verifyEmail": false,
"ui": {
"studyListFunctionsEnabled": true
"studyListFunctionsEnabled": true,
"studyListDateFilterNumDays": 1
}
}
}

View File

@ -47,7 +47,8 @@
"public": {
"verifyEmail": false,
"ui": {
"studyListFunctionsEnabled": true
"studyListFunctionsEnabled": true,
"studyListDateFilterNumDays": 1
}
}
}

View File

@ -42,5 +42,10 @@
"fhir" : {
"host" : "localhost",
"port" : 3937
},
"public": {
"ui": {
"studyListDateFilterNumDays": 1
}
}
}

View File

@ -27,7 +27,8 @@
"leftSidebarOpen": false,
"displaySetNavigationLoopOverSeries": false,
"displaySetNavigationMultipleViewports": true,
"autoPositionMeasurementsTextCallOuts": "TRLB"
"autoPositionMeasurementsTextCallOuts": "TRLB",
"studyListDateFilterNumDays": 1
}
},
"proxy": {

View File

@ -36,7 +36,8 @@
"leftSidebarOpen": false,
"displaySetNavigationLoopOverSeries": false,
"displaySetNavigationMultipleViewports": true,
"autoPositionMeasurementsTextCallOuts": "TRLB"
"autoPositionMeasurementsTextCallOuts": "TRLB",
"studyListDateFilterNumDays": 1
}
}
}

View File

@ -35,7 +35,8 @@
"leftSidebarOpen": false,
"displaySetNavigationLoopOverSeries": false,
"displaySetNavigationMultipleViewports": true,
"autoPositionMeasurementsTextCallOuts": "TRLB"
"autoPositionMeasurementsTextCallOuts": "TRLB",
"studyListDateFilterNumDays": 1
}
}
}

View File

@ -27,7 +27,8 @@
"leftSidebarOpen": false,
"displaySetNavigationLoopOverSeries": false,
"displaySetNavigationMultipleViewports": true,
"autoPositionMeasurementsTextCallOuts": "TRLB"
"autoPositionMeasurementsTextCallOuts": "TRLB",
"studyListDateFilterNumDays": 1
}
},
"proxy": {

View File

@ -9,7 +9,7 @@
"METEOR_SETTINGS": {
"servers": {
"dicomWeb": [
{
{
"name": "Orthanc",
"wadoUriRoot": "http://pacsIP:8042/wado",
"qidoRoot": "http://pacsIP:8042/dicom-web",
@ -27,7 +27,11 @@
]
},
"defaultServiceType": "dicomWeb",
"public": {},
"public": {
"ui": {
"studyListDateFilterNumDays": 1
}
},
"proxy": {
"enabled": true
}