mirror of
https://github.com/openMF/community-app.git
synced 2026-02-06 13:36:46 +00:00
69 lines
2.5 KiB
JavaScript
69 lines
2.5 KiB
JavaScript
(function (module) {
|
|
mifosX.controllers = _.extend(module, {
|
|
SearchController: function (scope, routeParams, resourceFactory) {
|
|
|
|
scope.searchResults = [];
|
|
if (routeParams.query == 'undefined') {
|
|
routeParams.query = '';
|
|
}
|
|
resourceFactory.globalSearch.search({query: routeParams.query}, function (data) {
|
|
if (data.length > 200) {
|
|
scope.searchResults = data.slice(0, 201);
|
|
scope.showMsg = true;
|
|
} else {
|
|
scope.searchResults = data;
|
|
}
|
|
;
|
|
|
|
if (scope.searchResults.length <= 0) {
|
|
scope.flag = true;
|
|
}
|
|
});
|
|
scope.getClientDetails = function (clientId) {
|
|
|
|
scope.selected = clientId;
|
|
resourceFactory.clientResource.get({clientId: clientId}, function (data) {
|
|
scope.group = '';
|
|
scope.client = data;
|
|
scope.center = '';
|
|
});
|
|
resourceFactory.clientAccountResource.get({clientId: clientId}, function (data) {
|
|
scope.clientAccounts = data;
|
|
});
|
|
};
|
|
|
|
scope.getGroupDetails = function (groupId) {
|
|
|
|
scope.selected = groupId;
|
|
|
|
resourceFactory.groupResource.get({groupId: groupId}, function (data) {
|
|
scope.client = '';
|
|
scope.center = '';
|
|
scope.group = data;
|
|
});
|
|
resourceFactory.groupAccountResource.get({groupId: groupId}, function (data) {
|
|
scope.groupAccounts = data;
|
|
});
|
|
};
|
|
|
|
scope.getCenterDetails = function (centerId) {
|
|
|
|
scope.selected = centerId;
|
|
|
|
resourceFactory.centerResource.get({centerId: centerId, associations: 'groupMembers'}, function (data) {
|
|
scope.client = '';
|
|
scope.group = '';
|
|
scope.center = data;
|
|
});
|
|
resourceFactory.centerAccountResource.get({centerId: centerId}, function (data) {
|
|
scope.centerAccounts = data;
|
|
});
|
|
};
|
|
|
|
}
|
|
});
|
|
mifosX.ng.application.controller('SearchController', ['$scope', '$routeParams', 'ResourceFactory', mifosX.controllers.SearchController]).run(function ($log) {
|
|
$log.info("SearchController initialized");
|
|
});
|
|
}(mifosX.controllers || {}));
|