dashboard changes

This commit is contained in:
gandhimathi 2018-08-21 14:21:35 +05:30
parent 67e4b13149
commit 65f06548b7

View File

@ -292,6 +292,7 @@ app.controller('OnotherCtrl', ["$scope", "toaster", "$filter", "$http", "API_POI
$scope.getUniversityRegisteredDetails = function () {
$scope.registerdStudentDetails="";
$scope.universityFeesDetails="";
$scope.batchFeesDetails="";
$scope.notEmptyRegistration=true;
var req = {
method: 'POST',
@ -308,10 +309,13 @@ app.controller('OnotherCtrl', ["$scope", "toaster", "$filter", "$http", "API_POI
$scope.notEmptyRegistration=response.data.resultStatus;
$scope.registerdStudentDetails=response.data.details;
$scope.universityFeesDetails=response.data.universityFeesDetails;
$scope.batchFeesDetails=response.data.batchFeesDetails;
} else {
$scope.registerdStudentDetails="";
$scope.universityFeesDetails="";
$scope.batchFeesDetails="";
$scope.notEmptyRegistration=false;
}
});