Skip to content

Commit

Permalink
Add fields for clinical query
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexGoncharov committed Jun 30, 2017
1 parent ed3ba00 commit b6d6fc2
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/app/pulsetileui/search/search-advanced.component.js
Original file line number Diff line number Diff line change
Expand Up @@ -229,9 +229,9 @@ class SearchAdvancedController {
sendData.surname = $scope.searchParams.surname;

} else if ($scope.typeOfGroupOfFieldsOfSearches === 'clinicalQuery') {
// sendData.type = $scope.searchParams.type;
// sendData.query = $scope.searchParams.query;
sendData.queryNext = $scope.searchParams.queryText;
sendData.type = $scope.searchParams.type;
sendData.queryContains = $scope.searchParams.query ? true : false;
sendData.queryText = $scope.searchParams.queryText;
}

if ($scope.selectAgeField === 'range') {
Expand Down

0 comments on commit b6d6fc2

Please sign in to comment.