EXAM ATTENDANCE PDF ISSUE FIXED

This commit is contained in:
velz 2018-07-04 22:16:24 +05:30
parent 7170e02e25
commit 379c395e0f
2 changed files with 4 additions and 2 deletions

View File

@ -151,6 +151,8 @@ $scope.isLoaderTxt = "Loading...";
{
$scope.studentInfoPM.push(value);
}
$rootScope.studentInfoAM_Length = $scope.studentInfoAM.length;
$rootScope.studentInfoPM_Length = $scope.studentInfoPM.length;
});
//console.log($scope.studentInfo);
$scope.open($scope.myModel.universityName['universityName'],$scope.studentInfoAM,$scope.studentInfoPM,myModel.centerName,$scope.selectedBatchName, myModel.examDate);

View File

@ -30,7 +30,7 @@
<div id="student_list_AM">
<table width="100%" border="1" id = "attendanceTableAM" style="background-color:#fff;">
<table width="100%" border="1" id = "attendanceTableAM" style="background-color:#fff;" ng-if="studentInfoAM_Length != 0">
<thead><tr> <th>SNO</th> <th>STUDENT NAME</th> <th>COURSE</th> <th>SEM/YEAR</th> <th>ENROLLMENT NO</th> <th>SUBJECT CODE</th> <th>SUBJECT NAME</th><th>BOOKLET NO</th> <th>STUDENT SUGNATURE</th> </tr></thead>
<tbody>
<tr ng-repeat="student in dataForExamAttendanceAM" >
@ -42,7 +42,7 @@
</div>
<div id="student_list_PM">
<table width="100%" border="1" id = "attendanceTablePM" style="background-color:#fff;">
<table width="100%" border="1" id = "attendanceTablePM" style="background-color:#fff;" ng-if="studentInfoPM_Length != 0">
<thead><tr> <th>SNO</th> <th>STUDENT NAME</th> <th>COURSE</th> <th>SEM/YEAR</th> <th>ENROLLMENT NO</th> <th>SUBJECT CODE</th> <th>SUBJECT NAME</th><th>BOOKLET NO</th> <th>STUDENT SUGNATURE</th> </tr></thead>
<tbody>
<tr ng-repeat="student in dataForExamAttendancePM" >