This commit is contained in:
gandhimathi 2018-09-05 11:45:30 +05:30
commit 506d3354de
2 changed files with 288 additions and 311 deletions

View File

@ -8,22 +8,22 @@ app.controller('studentUnivFormIdFeeDetailsCtrl', ["$scope", "toaster", "$filter
/** /**
* student university fee details compare * student university fee details compare
*/ */
// get local client details // get local client details
var localDetail = JSON.parse(localStorage.getItem('localObj')); var localDetail = JSON.parse(localStorage.getItem('localObj'));
var localDetails = ipCookie('cookiechk'); var localDetails = ipCookie('cookiechk');
// load when html page load // load when html page load
$scope.init = function () { $scope.init = function () {
var logcheck = JSON.parse(localStorage.getItem('localObj'));
const LOCALTYPE = logcheck.localType; var logcheck = JSON.parse(localStorage.getItem('localObj'));
if (logcheck != null && (LOCALTYPE == 'R003' || LOCALTYPE == 'R004' || LOCALTYPE == 'R002' || LOCALTYPE == 'R005')) {
const LOCALTYPE = logcheck.localType;
if (logcheck != null && (LOCALTYPE == 'R003' || LOCALTYPE == 'R004' || LOCALTYPE == 'R002' || LOCALTYPE == 'R005')) {
console.log("if"); console.log("if");
}else { } else {
if(logcheck != null && LOCALTYPE !='R001') { if (logcheck != null && LOCALTYPE != 'R001') {
console.log("else if"); console.log("else if");
$state.go('app.dashboard'); $state.go('app.dashboard');
} else { } else {
console.log("else else"); console.log("else else");
@ -34,7 +34,7 @@ app.controller('studentUnivFormIdFeeDetailsCtrl', ["$scope", "toaster", "$filter
if (localDetail != null) { if (localDetail != null) {
if (localDetails.localType === 'R004') { if (localDetails.localType === 'R004') {
// $scope.getUniversityList(); // $scope.getUniversityList();
$scope.getUniversitySearchList(); $scope.getUniversitySearchList();
} else { } else {
ipCookie.remove('cookiechk'); ipCookie.remove('cookiechk');
@ -65,7 +65,7 @@ app.controller('studentUnivFormIdFeeDetailsCtrl', ["$scope", "toaster", "$filter
} }
}); });
}*/ }*/
// get University List // get University List
$scope.universitySearchData = ''; $scope.universitySearchData = '';
$scope.getUniversitySearchList = function () { $scope.getUniversitySearchList = function () {
var empListreq = { var empListreq = {
@ -82,21 +82,21 @@ app.controller('studentUnivFormIdFeeDetailsCtrl', ["$scope", "toaster", "$filter
if (response.data.status) { if (response.data.status) {
$scope.universitySearchData = response.data.details; $scope.universitySearchData = response.data.details;
} else { } else {
$scope.universitySearchData=""; $scope.universitySearchData = "";
} }
}); });
}; };
$scope.searchData = { $scope.searchData = {
"University": "", "University": "",
"Session": "", "Session": "",
"Status": "" "Status": ""
} }
$scope.myUnivSearch = ""; $scope.myUnivSearch = "";
$scope.sessionData=""; $scope.sessionData = "";
$scope.getUniveId = function (univ) { $scope.getUniveId = function (univ) {
$scope.sessionData=""; $scope.sessionData = "";
if (univ === '') { if (univ === '') {
$scope.myUnivSearch = ""; $scope.myUnivSearch = "";
$scope.searchData.University = ''; $scope.searchData.University = '';
@ -121,26 +121,26 @@ app.controller('studentUnivFormIdFeeDetailsCtrl', ["$scope", "toaster", "$filter
}; };
//For session dropdown //For session dropdown
$scope.filterSessionDetails=""; $scope.filterSessionDetails = "";
$scope.$watch('searchData.University', function (newValue,oldValue) { $scope.$watch('searchData.University', function (newValue, oldValue) {
if(newValue==undefined || newValue==''){ if (newValue == undefined || newValue == '') {
$scope.filterSessionDetails=""; $scope.filterSessionDetails = "";
} }
else{ else {
if(angular.isString(newValue)){ if (angular.isString(newValue)) {
$scope.filterSessionDetails=angular.fromJson(newValue); $scope.filterSessionDetails = angular.fromJson(newValue);
} }
} }
}); });
$scope.Searchloader = false; $scope.Searchloader = false;
$scope.studentData = false; $scope.studentData = false;
$scope.onSubmit = function(){ $scope.onSubmit = function () {
$scope.Searchloader = true; $scope.Searchloader = true;
if($scope.searchData.University !== '' && $scope.searchData.Session !==''){ if ($scope.searchData.University !== '' && $scope.searchData.Session !== '') {
$scope.Searchloader = true; $scope.Searchloader = true;
var empListreq = { var empListreq = {
method: 'POST', method: 'POST',
@ -166,13 +166,13 @@ app.controller('studentUnivFormIdFeeDetailsCtrl', ["$scope", "toaster", "$filter
$scope.statusMessage = $scope.data.message; $scope.statusMessage = $scope.data.message;
} }
}); });
}else { } else {
} }
} }
$scope.editId = -1; $scope.editId = -1;
$scope.setEditId=function(id){ $scope.setEditId = function (id) {
$scope.editId = id; $scope.editId = id;
} }
@ -184,89 +184,38 @@ app.controller('studentUnivFormIdFeeDetailsCtrl', ["$scope", "toaster", "$filter
/* /*
* upload options json * upload options json
* */ * */
$scope.uploadOptions=[{ $scope.uploadOptions = [{
id: 1, id: 1,
name: 'Received Enrolment From University', name: 'Received Enrolment From University',
}, },
{ {
id: 2, id: 2,
name: 'Received Fees From University' name: 'Received Fees From University'
}, },
]; ];
/* /*
watch upload model for enable upload options watch upload model for enable upload options
*/ */
$scope.showFile="0"; $scope.showFile = "1";
$scope.$watchCollection('uploadModel', function (newValue,oldValue) { // $scope.$watchCollection('uploadModel', function (newValue, oldValue) {
if(newValue.university!='' && newValue.university!=null && newValue.uploadFor!='' && newValue.uploadFor=='1'){ // if (newValue.university != '' && newValue.university != null) {
$scope.showFile="1"; // $scope.showFile = "1";
// }
// else {
// $scope.showFile = "0";
// }
} // });
else if(newValue.university!='' && newValue.university!=null && newValue.uploadFor!='' && newValue.uploadFor=='2'){
$scope.showFile="2";
}
else{
$scope.showFile="0";
}
}); $scope.extractFormIDDetails = "";
/* update received enrolment from university
* created by kms
* */
$scope.extractDetails="";
$scope.readXlsxDetails = function (workbook) {
/* DO SOMETHING WITH workbook HERE */
for (var sheetName in workbook.Sheets) {
var jsonData = XLSX.utils.sheet_to_json(workbook.Sheets[sheetName]);
if(jsonData.length!=0){
$scope.extractDetails=jsonData;
}
}
$scope.error = function (e) {
/* DO SOMETHING WHEN ERROR IS THROWN */
//console.log(e);
}
}
$scope.receiveEnrolmentDetails = function (details,uploadForDetails) {
var updateUniversityEnrolment = {
method: 'POST',
url: apiPoint.url + 'receiveEnrolmentFromUniv/',
headers: {
'Content-Type': 'application/json'
},
data: {
localDetails: localDetail,
details: details,
universityID: angular.fromJson(uploadForDetails.university).UniversityID,
universityName: angular.fromJson(uploadForDetails.university).UniversityName,
}
};
$http(updateUniversityEnrolment).then(function (response) {
if (response.data.status == true) {
swal("", "Updated Successfully", "success");
$state.go($state.current, {}, {reload: true});
} else {
swal("", "Failed", "error");
}
});
}
// end
$scope.extractFormIDDetails="";
$scope.readXlsxFormDetails = function (workbook) { $scope.readXlsxFormDetails = function (workbook) {
$scope.extractFormIDDetails=""; $scope.extractFormIDDetails = "";
/* DO SOMETHING WITH workbook HERE */ /* DO SOMETHING WITH workbook HERE */
for (var sheetName in workbook.Sheets) { for (var sheetName in workbook.Sheets) {
var jsonData = XLSX.utils.sheet_to_json(workbook.Sheets[sheetName]); var jsonData = XLSX.utils.sheet_to_json(workbook.Sheets[sheetName]);
if(jsonData.length!=0){ if (jsonData.length != 0) {
$scope.extractFormIDDetails=jsonData; $scope.extractFormIDDetails = jsonData;
} }
} }
@ -277,7 +226,7 @@ app.controller('studentUnivFormIdFeeDetailsCtrl', ["$scope", "toaster", "$filter
} }
$scope.receiveFormIdFeeDetails = function(details) { $scope.receiveFormIdFeeDetails = function (details) {
console.log(details); console.log(details);
var updateUniversityEnrolment = { var updateUniversityEnrolment = {
@ -295,7 +244,7 @@ app.controller('studentUnivFormIdFeeDetailsCtrl', ["$scope", "toaster", "$filter
$http(updateUniversityEnrolment).then(function (response) { $http(updateUniversityEnrolment).then(function (response) {
if (response.data.stuFeeList == true) { if (response.data.stuFeeList == true) {
swal("", "Updated Successfully", "success"); swal("", "Updated Successfully", "success");
$state.go($state.current, {}, {reload: true}); $state.go($state.current, {}, { reload: true });
} else { } else {
swal("", "Failed", "error"); swal("", "Failed", "error");
} }
@ -304,13 +253,13 @@ app.controller('studentUnivFormIdFeeDetailsCtrl', ["$scope", "toaster", "$filter
$scope.popupLoad = false; $scope.popupLoad = false;
$scope.popupLoadData = false; $scope.popupLoadData = false;
$scope.formPaymentDetails=""; $scope.formPaymentDetails = "";
// Fee compare details get // Fee compare details get
$scope.getFeeCompareDetails = function(formId, enrolmentId){ $scope.getFeeCompareDetails = function (formId, enrolmentId) {
$scope.popupLoadData = false; $scope.popupLoadData = false;
$scope.formPaymentDetails=""; $scope.formPaymentDetails = "";
$scope.popupLoad = true; $scope.popupLoad = true;
var getFeeCompareDetailsList = { var getFeeCompareDetailsList = {
method: 'POST', method: 'POST',
@ -329,19 +278,19 @@ app.controller('studentUnivFormIdFeeDetailsCtrl', ["$scope", "toaster", "$filter
if (response.data.status == true) { if (response.data.status == true) {
$scope.popupLoad = false; $scope.popupLoad = false;
$scope.popupLoadData = true; $scope.popupLoadData = true;
$scope.formPaymentDetails=response.data; $scope.formPaymentDetails = response.data;
} else { } else {
$scope.popupLoad = false; $scope.popupLoad = false;
$scope.popupLoadData = true; $scope.popupLoadData = true;
$scope.formPaymentDetails=response.data; $scope.formPaymentDetails = response.data;
} }
}); });
} }
$scope.unMatchedLoadingStatus = false; $scope.unMatchedLoadingStatus = false;
// Get unmached details // Get unmached details
$scope.getUnmatchedRecord = function(ss){ $scope.getUnmatchedRecord = function (ss) {
$scope.unMatchedRecordDetails = ''; $scope.unMatchedRecordDetails = '';
$scope.unMatchedNoRecordFound = false; $scope.unMatchedNoRecordFound = false;
$scope.unMatchedLoadingStatus = true; $scope.unMatchedLoadingStatus = true;
@ -361,14 +310,53 @@ app.controller('studentUnivFormIdFeeDetailsCtrl', ["$scope", "toaster", "$filter
if (response.data.unMatchedRecordStatus == true) { if (response.data.unMatchedRecordStatus == true) {
$scope.unMatchedLoadingStatus = false; $scope.unMatchedLoadingStatus = false;
$scope.unMatchedNoRecordFound = false; $scope.unMatchedNoRecordFound = false;
$scope.unMatchedRecordDetails=response.data.unMatchedRecordDetails; $scope.unMatchedRecordDetails = response.data.unMatchedRecordDetails;
$scope.unMatchedRecordDetailsType= response.data.unMatchedRecordFor; $scope.unMatchedRecordDetailsType = response.data.unMatchedRecordFor;
} else { } else {
$scope.unMatchedLoadingStatus = false; $scope.unMatchedLoadingStatus = false;
$scope.unMatchedNoRecordFound = true; $scope.unMatchedNoRecordFound = true;
$scope.unMatchedRecordDetails=response.data.unMatchedRecordDetails; $scope.unMatchedRecordDetails = response.data.unMatchedRecordDetails;
} }
}); });
} }
// get subtab details for the formid fee details get form the university
$scope.subTabActive= function(tab){
if( tab == 'subTabactive2'){
getDraftFormIdDetails();
}
}
// get draft form id details
function getDraftFormIdDetails(){
// $scope.unMatchedRecordDetails = '';
// $scope.unMatchedNoRecordFound = false;
// $scope.unMatchedLoadingStatus = true;
// var getDetailsFor = ss == 1 ? 'EnrolmentIDFile' : 'FormIDFile';
// var getFeeCompareDetailsList = {
// method: 'POST',
// url: apiPoint.url + 'getUnmatchedRecordDetails/',
// headers: {
// 'Content-Type': 'application/json'
// },
// data: {
// localDetails: localDetail,
// getDetailsFor: getDetailsFor
// }
// };
// $http(getFeeCompareDetailsList).then(function (response) {
// if (response.data.unMatchedRecordStatus == true) {
// $scope.unMatchedLoadingStatus = false;
// $scope.unMatchedNoRecordFound = false;
// $scope.unMatchedRecordDetails = response.data.unMatchedRecordDetails;
// $scope.unMatchedRecordDetailsType = response.data.unMatchedRecordFor;
// } else {
// $scope.unMatchedLoadingStatus = false;
// $scope.unMatchedNoRecordFound = true;
// $scope.unMatchedRecordDetails = response.data.unMatchedRecordDetails;
// }
// });
}
}]); }]);

View File

@ -16,7 +16,6 @@
$("#selectBranch").focus(); $("#selectBranch").focus();
}); });
</script> </script>
<style> <style>
#containersPara { #containersPara {
width: 180px; width: 180px;
@ -40,7 +39,6 @@
</style> </style>
<div> <div>
<br> <br>
<div class="row" ng-init="init()"> <div class="row" ng-init="init()">
<tabset id="here" class="tabbable"> <tabset id="here" class="tabbable">
<tab tabindex="1" active="tabactive1" ng-click="tabActive('tabactive1')" heading="View Details" id="viewDetails"> <tab tabindex="1" active="tabactive1" ng-click="tabActive('tabactive1')" heading="View Details" id="viewDetails">
@ -51,7 +49,6 @@
$("#searchIn").focus(); $("#searchIn").focus();
}); });
</script> </script>
<div class="container-fluid container-fullw"> <div class="container-fluid container-fullw">
<form name="Form" id="form" novalidate ng-submit="onSubmit()" method="post"> <form name="Form" id="form" novalidate ng-submit="onSubmit()" method="post">
<div class="row"> <div class="row">
@ -59,97 +56,92 @@
<label for="form-field-select-2"> <label for="form-field-select-2">
University University
</label> </label>
<select class="form-control" tabindex="3" class="cs-select cs-skin-elastic" name="university" ng-model="myUnivSearch" ng-change="getUniveId(myUnivSearch)"> <select class="form-control" tabindex="3" class="cs-select cs-skin-elastic" name="university" ng-model="myUnivSearch" ng-change="getUniveId(myUnivSearch)">
<option value="" disabled selected>Select University</option> <option value="" disabled selected>Select University</option>
<option ng-repeat="item in universitySearchData" value="{{item}}">{{item.UniversityName}}</option> <option ng-repeat="item in universitySearchData" value="{{item}}">{{item.UniversityName}}</option>
</select> </select>
</div> </div>
<div class="col-md-3"> <div class="col-md-3">
<label for="form-field-select-2"> <label for="form-field-select-2">
Session Session
</label> </label>
<select ui-select2 class="form-control" tabindex="4" class="cs-select cs-skin-elastic" name="session" ng-model="searchData.Session"> <select ui-select2 class="form-control" tabindex="4" class="cs-select cs-skin-elastic" name="session" ng-model="searchData.Session">
<option value="" selected>Select Session</option> <option value="" selected>Select Session</option>
<option ng-repeat="itemSession in sessionData" value="{{itemSession.SessionID}}">{{itemSession.SessionName}}</option> <option ng-repeat="itemSession in sessionData" value="{{itemSession.SessionID}}">{{itemSession.SessionName}}</option>
</select> </select>
</div> </div>
<div class="col-md-2" style="padding-top: 2.3%;"> <div class="col-md-2" style="padding-top: 2.3%;">
<div class="pull-right"> <div class="pull-right">
<button ng-disabled="searchData.Session == '' || searchData.University == ''" type="submit" class="btn btn-success btn-o" tabindex="8"> <button ng-disabled="searchData.Session == '' || searchData.University == ''" type="submit" class="btn btn-success btn-o"
tabindex="8">
Submit Submit
</button> </button>
</div> </div>
</div> </div>
</div> </div>
</form> </form>
</div> </div>
<div> <div>
<!--{{data | json}}--> <!--{{data | json}}-->
<div ng-if="Searchloader"> <div ng-if="Searchloader">
<div align="center" > <div align="center">
<h3 style="color: blue;">Loading...</h3></div> <h3 style="color: blue;">Loading...</h3>
<h2> {{statusMessage}} </h2> </div>
</div> <h2> {{statusMessage}} </h2>
<div class="table-responsive" ng-if="studentData"> </div>
<table class="table table-hover" > <div class="table-responsive" ng-if="studentData">
<thead> <table class="table table-hover">
<tr> <thead>
<th> FormID <tr>
</th> <th> FormID
<th> Form Type </th>
</th> <th> Form Type
<th> Student Name </th>
</th> <th> Student Name
<th> Father Name </th>
</th> <th> Father Name
<th> University </th>
</th> <th> University
<th> Course </th>
</th> <th> Course
<th> Sem/Year </th>
</th> <th> Sem/Year
<th> Enrolment ID </th>
</th> <th> Enrolment ID
<th> University Paid </th>
</th> <th> University Paid
<th> Student Paid </th>
</th> <th> Student Paid
</tr> </th>
</thead> </tr>
<tbody dir-paginate="p in data|orderBy:sortKey:reverse|filter:search:strict|itemsPerPage:10| filter:query as results"> </thead>
<tr> <tbody dir-paginate="p in data|orderBy:sortKey:reverse|filter:search:strict|itemsPerPage:10| filter:query as results">
<td> <tr>
{{p.FormID}} <td>
</td> {{p.FormID}}
<td> </td>
{{p.FormType}} <td>
</td> {{p.FormType}}
<td> </td>
<a class="text-dark"> <td>
<a class="text-dark">
{{p.Firstname}} {{p.Lastname}} {{p.Firstname}} {{p.Lastname}}
</a> </a>
<!--tooltip="View Student" ng-click="open(p);"--> <!--tooltip="View Student" ng-click="open(p);"-->
</td> </td>
<td>{{p.Fathername}}</td> <td>{{p.Fathername}}</td>
<td>{{p.UniversityName}}</td> <td>{{p.UniversityName}}</td>
<td>{{p.CourseName}}</td> <td>{{p.CourseName}}</td>
<td>{{p.SemesterYear}}</td> <td>{{p.SemesterYear}}</td>
<td>{{p.EnrolmentNo}}</td> <td>{{p.EnrolmentNo}}</td>
<td>{{p.UniversityPaidAmount}}</td> <td>{{p.UniversityPaidAmount}}</td>
<td>{{p.StudentPaidAmount}}</td> <td>{{p.StudentPaidAmount}}</td>
<!-- <td> <!-- <td>
<i class="ti-write" tooltip="View Fee Details" id="personalDetailButton" ng-click="setEditId(p.FormID);getFeeCompareDetails(p.FormID, p.EnrolmentNo)"></i> <i class="ti-write" tooltip="View Fee Details" id="personalDetailButton" ng-click="setEditId(p.FormID);getFeeCompareDetails(p.FormID, p.EnrolmentNo)"></i>
</td>--> </td>-->
</tr> </tr>
<!--<tr ng-show="editId === p.FormID" ng-if="editId === p.FormID"> <!--<tr ng-show="editId === p.FormID" ng-if="editId === p.FormID">
<td colspan="9"> <td colspan="9">
<div ng-if="popupLoad"> <div ng-if="popupLoad">
<div align="center" > <div align="center" >
@ -175,157 +167,154 @@
</div> </div>
</td> </td>
</tr>--> </tr>-->
</tbody> </tbody>
</table> </table>
<dir-pagination-controls max-size="10" direction-links="true" boundary-links="true"> <dir-pagination-controls max-size="10" direction-links="true" boundary-links="true">
</dir-pagination-controls> </dir-pagination-controls>
</div>
</div>
</tab>
<tab tabindex="2" active="tabactive2" ng-click="tabActive('tabactive2')" heading="Upload Files" id="uploadFiles">
<div class="container-fluid">
<div class="row">
<div class="col-md-4 form-group">
<label>
University <span class="symbol required"></span>
</label>
<select class="form-control" tabindex="1" name="formUniversity" ng-model="uploadModel.university" required>
<option value="" selected>Select University</option>
<option ng-repeat="univ in universitySearchData" value="{{univ}}">{{univ.UniversityName}}</option>
</select>
</div>
<div class="col-md-4 form-group">
<label>
Upload For <span class="symbol required"></span>
</label>
<select class="form-control" name="uploadFor" tabindex="2" id="uploadFor"
ng-model="uploadModel.uploadFor"
ng-options="upload.id as upload.name for upload in uploadOptions"
required>
<option value=""> Select</option>
</select>
</div>
<div class="col-md-3 form-group" ng-if="showFile=='1'">
<fieldset>
<js-xls onread="readXlsxDetails" onerror="error"></js-xls>
<button type="button" class="btn btn-success btn-o" style="float: right" ng-click="receiveEnrolmentDetails(extractDetails,uploadModel)"> Submit</button>
</fieldset>
</div>
<div class="col-md-3 form-group" ng-if="showFile=='2'">
<fieldset>
<js-xls onread="readXlsxFormDetails" onerror="error"></js-xls>
<button type="button" class="btn btn-success btn-o" style="float: right" ng-click="receiveFormIdFeeDetails(extractFormIDDetails)"> Submit</button>
</fieldset>
</div>
</div> </div>
</div> </div>
</tab> </tab>
<tab tabindex="2" active="tabactive2" ng-click="tabActive('tabactive2')" heading="Upload Details" id="uploadFiles">
<tabset id="uploadDetails" class="tabbable">
<tab tabindex="1" active="subTabactive1" ng-click="subTabActive('subTabactive1')" heading="Upload File" id="uploadFiles">
<div class="container-fluid">
<div class="row">
<!--<div class="col-md-4 form-group">
<label>
University <span class="symbol required"></span>
</label>
<select class="form-control" tabindex="1" name="formUniversity" ng-model="uploadModel.university" required>
<option value="" selected>Select University</option>
<option ng-repeat="univ in universitySearchData" value="{{univ}}">{{univ.UniversityName}}</option>
</select>
</div>-->
<div class="col-md-6 form-group" ng-if="showFile=='1'">
<fieldset>
<js-xls onread="readXlsxFormDetails" onerror="error"></js-xls>
<button type="button" class="btn btn-success btn-o" style="float: right" ng-click="receiveFormIdFeeDetails(extractFormIDDetails)"> Submit</button>
</fieldset>
</div>
</div>
</div>
</tab>
<tab tabindex="2" active="subTabactive2" ng-click="subTabActive('subTabactive2')" heading="Upload Data Manualy" id="uploadDataManualy">
<div class="container-fluid">
<!--<div class="row">
<div class="col-md-4 form-group">
<label>
University <span class="symbol required"></span>
</label>
<select class="form-control" tabindex="1" name="formUniversity" ng-model="uploadModel.university" required>
<option value="" selected>Select University</option>
<option ng-repeat="univ in universitySearchData" value="{{univ}}">{{univ.UniversityName}}</option>
</select>
</div>
</div>-->
</div>
</tab>
</tabset>
</tab>
<tab tabindex="3" active="tabactive3" ng-click="tabActive('tabactive3')" heading="Unmatched Records" id="unmatchedRecord"> <tab tabindex="3" active="tabactive3" ng-click="tabActive('tabactive3')" heading="Unmatched Records" id="unmatchedRecord">
<div class="container"> <div class="container">
<div class="row"> <div class="row">
<div class="col-md-4 form-group"> <div class="col-md-4 form-group">
<label> <label>
Upload For <span class="symbol required"></span> Upload For <span class="symbol required"></span>
</label> </label>
<select class="form-control" name="uploadFor" tabindex="2" id="uploadFor" <select class="form-control" name="uploadFor" tabindex="2" id="uploadFor" ng-model="getUnmatchedDetailsFor" ng-options="upload.id as upload.name for upload in uploadOptions"
ng-model="getUnmatchedDetailsFor" required>
ng-options="upload.id as upload.name for upload in uploadOptions"
required>
<option value=""> Select</option> <option value=""> Select</option>
</select> </select>
</div> </div>
</div>
</div> </div>
</div> <div class="container">
<div class="container"> <button class="btn btn-success" ng-disabled="!getUnmatchedDetailsFor" ng-click="getUnmatchedRecord(getUnmatchedDetailsFor)">Get Record</button>
<button class="btn btn-success" ng-disabled="!getUnmatchedDetailsFor" ng-click="getUnmatchedRecord(getUnmatchedDetailsFor)">Get Record</button>
</div>
<div class="container">
<div ng-if="unMatchedLoadingStatus">
<div style="color: blue; align: center;" align="center"> Loading...</div>
</div> </div>
<div ng-if="unMatchedNoRecordFound"> <div class="container">
<div style="color: red; align: center;" align="center"> No Record Found ...</div> <div ng-if="unMatchedLoadingStatus">
<div style="color: blue; align: center;" align="center"> Loading...</div>
</div>
<div ng-if="unMatchedNoRecordFound">
<div style="color: red; align: center;" align="center"> No Record Found ...</div>
</div>
</div>
<div class="container table-responsive" ng-if="!unMatchedNoRecordFound && unMatchedRecordDetails">
<div ng-if="unMatchedRecordDetailsType == 'EnrolmentIDFile'">
<table class="table table-border table-hover">
<thead>
<th>FormID</th>
<th>EnrolmentNo</th>
<th>RollNo</th>
<th>CentreCode</th>
<th>CentreState</th>
<th>MobileNumber</th>
<th>StudentName</th>
<th>FatherName</th>
<th>MotherName</th>
<th>EmailID</th>
<th>UniversityCode</th>
<th>UniversityName</th>
<th>CourseCode</th>
<th>CourseName</th>
<th>SemesterYear</th>
</thead>
<tbody dir-paginate="p in unMatchedRecordDetails|orderBy:sortKey:reverse|filter:search:strict|itemsPerPage:10| filter:query as results">
<tr>
<td>{{p.FormID}}</td>
<td>{{p.EnrolmentNo}}</td>
<td>{{p.RollNo}}</td>
<td>{{p.CentreCode}}</td>
<td>{{p.CentreState}}</td>
<td>{{p.MobileNumber}}</td>
<td>{{p.StudentName}}</td>
<td>{{p.FatherName}}</td>
<td>{{p.MotherName}}</td>
<td>{{p.EmailID}}</td>
<td>{{p.UniversityCode}}</td>
<td>{{p.UniversityName}}</td>
<td>{{p.CourseCode}}</td>
<td>{{p.CourseName}}</td>
<td>{{p.SemesterYear}}</td>
</tr>
</tbody>
</table>
<dir-pagination-controls max-size="10" direction-links="true" boundary-links="true">
</dir-pagination-controls>
</div>
<div ng-if="unMatchedRecordDetailsType == 'FormIDFile'">
<table class="table table-border table-hover">
<thead>
<th>FormID</th>
<th>FormType</th>
<th>CentreCode</th>
<th>CourseCode</th>
<th>ActualCourseFee</th>
<th>CourseFee</th>
<th>Amount</th>
</thead>
<tbody dir-paginate="p in unMatchedRecordDetails|orderBy:sortKey:reverse|filter:search:strict|itemsPerPage:10| filter:query as results">
<tr>
<td>{{p.FormID}}</td>
<td>{{p.FormType}}</td>
<td>{{p.CentreCode}}</td>
<td>{{p.CourseCode}}</td>
<td>{{p.ActualCourseFee}}</td>
<td>{{p.CourseFee}}</td>
<td>{{p.Amount}}</td>
</tr>
</tbody>
</table>
<dir-pagination-controls max-size="10" direction-links="true" boundary-links="true">
</dir-pagination-controls>
</div>
</div> </div>
</div>
<div class="container table-responsive" ng-if="!unMatchedNoRecordFound && unMatchedRecordDetails">
<div ng-if="unMatchedRecordDetailsType == 'EnrolmentIDFile'">
<table class="table table-border table-hover" >
<thead>
<th>FormID</th>
<th>EnrolmentNo</th>
<th>RollNo</th>
<th>CentreCode</th>
<th>CentreState</th>
<th>MobileNumber</th>
<th>StudentName</th>
<th>FatherName</th>
<th>MotherName</th>
<th>EmailID</th>
<th>UniversityCode</th>
<th>UniversityName</th>
<th>CourseCode</th>
<th>CourseName</th>
<th>SemesterYear</th>
</thead>
<tbody dir-paginate="p in unMatchedRecordDetails|orderBy:sortKey:reverse|filter:search:strict|itemsPerPage:10| filter:query as results">
<tr>
<td>{{p.FormID}}</td>
<td>{{p.EnrolmentNo}}</td>
<td>{{p.RollNo}}</td>
<td>{{p.CentreCode}}</td>
<td>{{p.CentreState}}</td>
<td>{{p.MobileNumber}}</td>
<td>{{p.StudentName}}</td>
<td>{{p.FatherName}}</td>
<td>{{p.MotherName}}</td>
<td>{{p.EmailID}}</td>
<td>{{p.UniversityCode}}</td>
<td>{{p.UniversityName}}</td>
<td>{{p.CourseCode}}</td>
<td>{{p.CourseName}}</td>
<td>{{p.SemesterYear}}</td>
</tr>
</tbody>
</table>
<dir-pagination-controls max-size="10" direction-links="true" boundary-links="true">
</dir-pagination-controls>
</div>
<div ng-if="unMatchedRecordDetailsType == 'FormIDFile'">
<table class="table table-border table-hover" >
<thead>
<th>FormID</th>
<th>FormType</th>
<th>CentreCode</th>
<th>CourseCode</th>
<th>ActualCourseFee</th>
<th>CourseFee</th>
<th>Amount</th>
</thead>
<tbody dir-paginate="p in unMatchedRecordDetails|orderBy:sortKey:reverse|filter:search:strict|itemsPerPage:10| filter:query as results">
<tr>
<td>{{p.FormID}}</td>
<td>{{p.FormType}}</td>
<td>{{p.CentreCode}}</td>
<td>{{p.CourseCode}}</td>
<td>{{p.ActualCourseFee}}</td>
<td>{{p.CourseFee}}</td>
<td>{{p.Amount}}</td>
</tr>
</tbody>
</table>
<dir-pagination-controls max-size="10" direction-links="true" boundary-links="true">
</dir-pagination-controls>
</div>
</div>
</tab> </tab>
</tabset> </tabset>
</div> </div>
</div> </div>