course details changes done

This commit is contained in:
gandhimathi 2017-12-20 16:17:01 +05:30
parent 90419afebb
commit 78373aafe4

View File

@ -88,7 +88,6 @@ app.controller('feesStatusCtrl', ["$scope","$rootScope","toaster", "$filter", "n
* */ * */
$scope.studentInfo=""; $scope.studentInfo="";
$scope.getStudentDetails = function (form,myModel) { $scope.getStudentDetails = function (form,myModel) {
$scope.editId = -1;
if(myModel.universityName == null || myModel.universityName == '' || myModel.universityName == undefined){ if(myModel.universityName == null || myModel.universityName == '' || myModel.universityName == undefined){
$scope.univId = ""; $scope.univId = "";
} }
@ -326,6 +325,7 @@ app.controller('feesStatusCtrl', ["$scope","$rootScope","toaster", "$filter", "n
* Global method for get student fees structure * Global method for get student fees structure
* created by kms * created by kms
* */ * */
$scope.studentFeesInfo="";
$scope.getStudentFeesStructure = function(ID,courseID,studeID){ $scope.getStudentFeesStructure = function(ID,courseID,studeID){
$scope.studentFeesInfo=""; $scope.studentFeesInfo="";
$scope.existStudentFeesDetails=""; $scope.existStudentFeesDetails="";
@ -354,12 +354,16 @@ app.controller('feesStatusCtrl', ["$scope","$rootScope","toaster", "$filter", "n
$scope.existStudentFeesDetails=""; $scope.existStudentFeesDetails="";
$scope.getFeesUpdateStatus=""; $scope.getFeesUpdateStatus="";
} }
}); });
} }
$scope.cancel = function () { $scope.cancel = function () {
$scope.editId=-1; $scope.editId=-1;
$scope.studentFeesInfo="";
$scope.existStudentFeesDetails="";
$scope.getFeesUpdateStatus="";
} }