dhis2-devs team mailing list archive
-
dhis2-devs team
-
Mailing list archive
-
Message #37016
[Branch ~dhis2-devs-core/dhis2/trunk] Rev 18939: tracker-capture: in advanced search user has to explictly invoke search_in_all authority by selec...
------------------------------------------------------------
revno: 18939
committer: Abyot Asalefew Gizaw <abyota@xxxxxxxxx>
branch nick: dhis2
timestamp: Fri 2015-04-17 15:25:22 +0200
message:
tracker-capture: in advanced search user has to explictly invoke search_in_all authority by selecting ou from the search tree. If no ou is selected in advanced search, the ou selected in data entry tree is used
modified:
dhis-2/dhis-web/dhis-web-apps/src/main/webapp/dhis-web-tracker-capture/scripts/controllers.js
--
lp:dhis2
https://code.launchpad.net/~dhis2-devs-core/dhis2/trunk
Your team DHIS 2 developers is subscribed to branch lp:dhis2.
To unsubscribe from this branch go to https://code.launchpad.net/~dhis2-devs-core/dhis2/trunk/+edit-subscription
=== modified file 'dhis-2/dhis-web/dhis-web-apps/src/main/webapp/dhis-web-tracker-capture/scripts/controllers.js'
--- dhis-2/dhis-web/dhis-web-apps/src/main/webapp/dhis-web-tracker-capture/scripts/controllers.js 2015-04-15 11:15:07 +0000
+++ dhis-2/dhis-web/dhis-web-apps/src/main/webapp/dhis-web-tracker-capture/scripts/controllers.js 2015-04-17 13:25:22 +0000
@@ -371,7 +371,6 @@
//Get orgunits for the logged in user
OrgUnitFactory.getSearchTreeRoot().then(function(response) {
$scope.orgUnits = response.organisationUnits;
- $scope.selectedSearchingOrgUnit = $scope.orgUnits && $scope.orgUnits.length && $scope.orgUnits[0] ? $scope.orgUnits[0] : null;
angular.forEach($scope.orgUnits, function(ou){
ou.show = true;
angular.forEach(ou.children, function(o){