From 65f06548b7bbacf502c96a5312f4465a48261a8c Mon Sep 17 00:00:00 2001 From: gandhimathi Date: Tue, 21 Aug 2018 14:21:35 +0530 Subject: [PATCH] dashboard changes --- Apollo/assets/js/controllers/dashboardCtrl.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Apollo/assets/js/controllers/dashboardCtrl.js b/Apollo/assets/js/controllers/dashboardCtrl.js index e98ad427..56cc608f 100755 --- a/Apollo/assets/js/controllers/dashboardCtrl.js +++ b/Apollo/assets/js/controllers/dashboardCtrl.js @@ -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; } });