This commit is contained in:
gandhimathi 2018-09-10 12:17:53 +05:30
commit 75709262e4
17 changed files with 4535 additions and 3556 deletions

View File

@ -375,3 +375,8 @@ $route['getStudentUnivFormIdFeeDatailsList'] = 'Receive_Enrolment_Fees_Univ_Cont
$route['getFormIdDetailsStatusUpdateList'] = 'Receive_Enrolment_Fees_Univ_Controller/getFormIdDetailsStatusUpdateList'; $route['getFormIdDetailsStatusUpdateList'] = 'Receive_Enrolment_Fees_Univ_Controller/getFormIdDetailsStatusUpdateList';
$route['insertStatusUpdateDetails'] = 'Receive_Enrolment_Fees_Univ_Controller/insertStatusUpdateDetails'; $route['insertStatusUpdateDetails'] = 'Receive_Enrolment_Fees_Univ_Controller/insertStatusUpdateDetails';
$route['paymentVerficationDetails'] = 'Receive_Enrolment_Fees_Univ_Controller/paymentVerficationDetails'; $route['paymentVerficationDetails'] = 'Receive_Enrolment_Fees_Univ_Controller/paymentVerficationDetails';
$route['getUniversityCodeForFormDetailsGet'] = 'Receive_Enrolment_Fees_Univ_Controller/getUniversityCodeForFormDetailsGet';
$route['getUnmatchedFormIdFeesDetails'] = 'Receive_Enrolment_Fees_Univ_Controller/getUnmatchedFormIdFeesDetails';
$route['addToAccountStateList'] = 'Receive_Enrolment_Fees_Univ_Controller/addToAccountStateList';
$route['addUniversityPaymentDetails'] = 'Receive_Enrolment_Fees_Univ_Controller/addUniversityPaymentDetails';

View File

@ -44,7 +44,7 @@ class Batch_Controller extends REST_Controller {
$details['IsActive'] = $this->post('status'); $details['IsActive'] = $this->post('status');
$details['BranchCode'] = $this->post('branchCode'); $details['BranchCode'] = $this->post('branchCode');
$details['CreatedOn'] = $now->format('Y-m-d H:i:s'); $details['CreatedOn'] = $now->format('Y-m-d H:i:s');
print_r( $details +'samplearray'); //print_r( $details +'samplearray');
$batchDetails = $this->batch_model->addBatch($details);// Check if the users data store contains users (in case the database result returns NULL) $batchDetails = $this->batch_model->addBatch($details);// Check if the users data store contains users (in case the database result returns NULL)
if ($batchDetails) if ($batchDetails)

View File

@ -67,11 +67,16 @@ class HallTickets_Controller extends REST_Controller {
public function getSheduleDetails_post() public function getSheduleDetails_post()
{ {
$courseDetails =$this->post('courseDetails');
//print_r($courseDetails);
$CourseID = $courseDetails['CourseID'];
$universityID= $courseDetails['UniversityID'];
//print_r($courseDetails);
$mapid = $this->post('mapid'); $mapid = $this->post('mapid');
$subid = $this->post('subid'); $subid = $this->post('subid');
$branchcode = $this->post('branchcode'); $branchcode = $this->post('branchcode');
//$getSheduleData = $this->Hallticket_model->getShedules($mapid); //$getSheduleData = $this->Hallticket_model->getShedules($mapid);
$get_unShedules = $this->Hallticket_model->get_unShedules($mapid,$subid,$branchcode); $get_unShedules = $this->Hallticket_model->get_unShedules($mapid,$subid,$branchcode,$CourseID,$universityID);
//print_r($get_unShedules); //print_r($get_unShedules);
if ($get_unShedules) if ($get_unShedules)
{ {

View File

@ -37,6 +37,7 @@ class Receive_Enrolment_Fees_Univ_Controller extends REST_Controller {
$this->methods['getExistStudentEnrolmentDetails_post']['limit'] = 1000; $this->methods['getExistStudentEnrolmentDetails_post']['limit'] = 1000;
$this->methods['addManualEnrolmentDetails_post']['limit'] = 1000; $this->methods['addManualEnrolmentDetails_post']['limit'] = 1000;
$this->methods['addUniversityPaymentDetails_post']['limit'] = 1000;
// load the model // load the model
$this->load->model('Receive_Enrolment_Fees_Univ_model', 'receive_model'); $this->load->model('Receive_Enrolment_Fees_Univ_model', 'receive_model');
@ -85,7 +86,8 @@ class Receive_Enrolment_Fees_Univ_Controller extends REST_Controller {
public function insertFormIdUnivFeeDetails_post(){ public function insertFormIdUnivFeeDetails_post(){
$formIdDetails = $this->post('details'); $formIdDetails = $this->post('details');
$localDetails = $this->post('localDetails'); $localDetails = $this->post('localDetails');
$updatedDetails = $this->receive_model->formIdFeeDetails($formIdDetails,$localDetails);// Check if the users data store contains users (in case the database result returns NULL) $univDetails = $this->post('univ');
$updatedDetails = $this->receive_model->formIdFeeDetails($formIdDetails,$localDetails, $univDetails);// Check if the users data store contains users (in case the database result returns NULL)
if ($updatedDetails) if ($updatedDetails)
{ {
$updatedDetails['status'] = REST_Controller::HTTP_OK; $updatedDetails['status'] = REST_Controller::HTTP_OK;
@ -271,6 +273,8 @@ class Receive_Enrolment_Fees_Univ_Controller extends REST_Controller {
} }
} }
// get formid draft mode list details
// kdk
public function getForFormIdDraftDetails_post(){ public function getForFormIdDraftDetails_post(){
$reqBranch = $this->post('localDetails'); $reqBranch = $this->post('localDetails');
$getForFormIdDraftDetails = $this->receive_model->getForFormIdDraftDetails(); // Check if the employee exist $getForFormIdDraftDetails = $this->receive_model->getForFormIdDraftDetails(); // Check if the employee exist
@ -286,10 +290,14 @@ class Receive_Enrolment_Fees_Univ_Controller extends REST_Controller {
} }
} }
// add formid manual details form the university and draftmode
// kdk
public function addForFormIdDraftDetails_post(){ public function addForFormIdDraftDetails_post(){
$reqBranch = $this->post('localDetails'); $reqBranch = $this->post('localDetails');
$details = $this->post('details'); $details = $this->post('details');
$addForFormIdDraftDetails = $this->receive_model->addForFormIdDraftDetails($details, $reqBranch); // Check if the employee exist $univDetails = $this->post('univ');
$addForFormIdDraftDetails = $this->receive_model->addForFormIdDraftDetails($details, $reqBranch, $univDetails); // Check if the employee exist
if ($addForFormIdDraftDetails) { if ($addForFormIdDraftDetails) {
$addForFormIdDraftDetails['status'] = REST_Controller::HTTP_OK; $addForFormIdDraftDetails['status'] = REST_Controller::HTTP_OK;
// Set the response and exit // Set the response and exit
@ -302,6 +310,8 @@ class Receive_Enrolment_Fees_Univ_Controller extends REST_Controller {
} }
} }
// manual formid entry draft details move to the list details
// kdk
public function draftMovetoList_post(){ public function draftMovetoList_post(){
$reqBranch = $this->post('localDetails'); $reqBranch = $this->post('localDetails');
$details = $this->post('details'); $details = $this->post('details');
@ -318,6 +328,8 @@ class Receive_Enrolment_Fees_Univ_Controller extends REST_Controller {
} }
} }
// edit draft mode formid manul entry details
// kdk
public function editDraftFormIdFeesDetails_post(){ public function editDraftFormIdFeesDetails_post(){
$reqBranch = $this->post('localDetails'); $reqBranch = $this->post('localDetails');
$details = $this->post('details'); $details = $this->post('details');
@ -337,7 +349,8 @@ class Receive_Enrolment_Fees_Univ_Controller extends REST_Controller {
} }
} }
// get formid fee details list with status // get formid , fee details form the file upload for the university , course, student
// kdk
public function getStudentUnivFormIdFeeDatailsList_post(){ public function getStudentUnivFormIdFeeDatailsList_post(){
$reqBranchData = $this->post('data'); $reqBranchData = $this->post('data');
$searchDetails = $this->post('search'); $searchDetails = $this->post('search');
@ -355,6 +368,8 @@ class Receive_Enrolment_Fees_Univ_Controller extends REST_Controller {
} }
} }
// get formid status list for that particular record
// kdk
public function getFormIdDetailsStatusUpdateList_post(){ public function getFormIdDetailsStatusUpdateList_post(){
$reqBranchData = $this->post('localDetails'); $reqBranchData = $this->post('localDetails');
$statusDetailsId = $this->post('detailsID'); $statusDetailsId = $this->post('detailsID');
@ -372,6 +387,8 @@ class Receive_Enrolment_Fees_Univ_Controller extends REST_Controller {
} }
} }
// add formid list file status list for that record
// kdk
public function insertStatusUpdateDetails_post(){ public function insertStatusUpdateDetails_post(){
$reqBranchData = $this->post('localDetails'); $reqBranchData = $this->post('localDetails');
$statusDetails = $this->post('details'); $statusDetails = $this->post('details');
@ -391,5 +408,115 @@ class Receive_Enrolment_Fees_Univ_Controller extends REST_Controller {
} }
} }
public function getUniversityCodeForFormDetailsGet_post(){
$reqData = $this->post('data');
$loginUserId = $reqData['localUserID'];
$loginUserBranchId = $reqData['localBranchID'];
$loginUserType = $reqData['localType'];
$getUniversityListDetails = $this->receive_model->get_university_list($loginUserBranchId); // Check if the employee exist
if ($getUniversityListDetails) {
$getUniversityListDetails['status'] = REST_Controller::HTTP_OK;
// Set the response and exit
$this->response($getUniversityListDetails, REST_Controller::HTTP_OK); // OK (200) being the HTTP response code
} else {
// Set the response and exit
$this->response(['message' => 'No list were found', 'status' => REST_Controller::HTTP_NOT_FOUND], REST_Controller::HTTP_NOT_FOUND); // NOT_FOUND (404) being the HTTP response code
}
}
// get unmatched records of the formid file details , compare with file 1
// kdk
public function getUnmatchedFormIdFeesDetails_post(){
$localDetails = $this->post('localDetails');
$getDetailsFor = $this->post('getDetailsFor');
$getUnmatchedFormIdFeesDetails = $this->receive_model->getUnmatchedFormIdFeesDetails($localDetails, $getDetailsFor); // Check if the employee exist
if ($getUnmatchedFormIdFeesDetails) {
$getUnmatchedFormIdFeesDetails['status'] = REST_Controller::HTTP_OK;
// Set the response and exit
$this->response($getUnmatchedFormIdFeesDetails, REST_Controller::HTTP_OK); // OK (200) being the HTTP response code
} else {
// Set the response and exit
$this->response(['message' => 'No list were found', 'status' => REST_Controller::HTTP_NOT_FOUND], REST_Controller::HTTP_NOT_FOUND); // NOT_FOUND (404) being the HTTP response code
}
}
// add fromid university amount details to account state
// kdk
public function addToAccountStateList_post(){
$localDetails = $this->post('localDetails');
$getDetailsFor = $this->post('details');
$addFormIdListToAccountState = $this->receive_model->addFormIdListToAccountState($localDetails, $getDetailsFor); // Check if the employee exist
if ($addFormIdListToAccountState) {
$addFormIdListToAccountState['status'] = REST_Controller::HTTP_OK;
// Set the response and exit
$this->response($addFormIdListToAccountState, REST_Controller::HTTP_OK); // OK (200) being the HTTP response code
} else {
// Set the response and exit
$this->response(['message' => 'No list were found', 'status' => REST_Controller::HTTP_NOT_FOUND], REST_Controller::HTTP_NOT_FOUND); // NOT_FOUND (404) being the HTTP response code
}
}
/*
* get payment verfication details
* created by kms
* */
public function paymentVerficationDetails_post(){
$fromDetails['UniversityCode']=$this->post('universityID');
$fromDetails['UniversityName']=$this->post('universityName');
$getVerificationDetails=$this->receive_model->getPaymentVerificationDetails($fromDetails);
if($getVerificationDetails['status']==true){
$this->response($getVerificationDetails, REST_Controller::HTTP_OK); // OK (200) being the HTTP response code
}
else if($getVerificationDetails['status']==false){
$this->response($getVerificationDetails, REST_Controller::HTTP_OK); // OK (200) being the HTTP response code
}
else{
$this->response(['details' => 'No list were found', 'status' => false], REST_Controller::HTTP_NOT_FOUND); // NOT_FOUND (404) being the HTTP response code
}
}
/*
* add university payment details
* created by kms
* */
public function addUniversityPaymentDetails_post(){
$now = new DateTime();
$now->setTimezone(new DateTimezone('Asia/Kolkata'));
$details=$this->post('details');
$localData=$this->post('localDetails');
$fromDetails['BillNo']=$details['billNo'];
$fromDetails['ReceiptNo']=$details['receiptNo'];
$fromDetails['Amount']=$details['billAmount'];
$fromDetails['ApprovedDate']=$details['date'];
$fromDetails['UniversityCode']=$details['universityCode'];
$fromDetails['UniversityName']=$details['universityName'];
$fromDetails['Remarks']=$details['comments'];
$fromDetails['BranchCode']=$localData['localBranchID'];
$fromDetails['CreatedBy']=$localData['localUserID'];
$fromDetails['CreatedOn']=$now->format('Y-m-d H:i:s');
$addPaymentDetails=$this->receive_model->addPaymentDetails($fromDetails);
if($addPaymentDetails['status']==true){
$this->response($addPaymentDetails, REST_Controller::HTTP_OK); // OK (200) being the HTTP response code
}
else if($addPaymentDetails['status']==false){
$this->response($addPaymentDetails, REST_Controller::HTTP_OK); // OK (200) being the HTTP response code
}
else{
$this->response(['message' => 'Try again', 'status' => false], REST_Controller::HTTP_NOT_FOUND); // NOT_FOUND (404) being the HTTP response code
}
}
} }

36
Apollo/api/application/models/Hallticket_model.php Executable file → Normal file
View File

@ -103,19 +103,33 @@ class Hallticket_model extends CI_Model
* for edit/view shedule * for edit/view shedule
* created by TamilBala * created by TamilBala
* */ * */
public function get_unShedules($mapid,$subid,$branchcode) ////////////
{ // $this->db->join('T_Batch_Schedule_Child','T_Batch_Schedule_Child.SchId = SCM.SchId');
// $this->db->join('T_SemSubMap_Master','T_SemSubMap_Master.UniversityID=SCM.UniversityID and T_SemSubMap_Master.CourseID=SCM.CourseID');
// $this->db->join('T_SemSubMap_Child','T_SemSubMap_Child.MapID=T_SemSubMap_Master.MapID');
// $this->db->join('T_SubjectMaster','T_SubjectMaster.SubjectID=T_SemSubMap_Child.SubjectID');
$this->db->select('SM.SubjectName,SM.SubjectID'); // $this->db->where('T_SemSubMap_Master.UniversityID',$universityID);
$this->db->from('T_SubjectMaster SM'); // $this->db->where('T_SemSubMap_Master.CourseID',$CourseID);
$this->db->join('T_Batch_Schedule_Child','T_Batch_Schedule_Child.SubjectID=SM.SubjectID'); ////////////
$this->db->where('SM.BranchCode',$branchcode); public function get_unShedules($mapid,$subid,$branchcode,$CourseID,$universityID)
$this->db->where('T_Batch_Schedule_Child.SchId',$mapid); {
$result = $this->db->get(); //echo $mapid;
if($result->result()){ $sql="SELECT semchild.SubjectID,semchild.MapID,bsc.ScheduleDate,bsc.FromTime,bsc.ToTime,sm.SubjectName
FROM T_SemSubMap_Child semchild
LEFT JOIN T_SemSubMap_Master semmaster ON semmaster.MapID = semchild.MapID
LEFT JOIN T_Batch_Schedule_Master bsm ON bsm.UniversityID = semmaster.UniversityID
and bsm.CourseID=semmaster.CourseID
LEFT JOIN T_Batch_Schedule_Child bsc ON bsc.SchId = bsm.SchId and bsc.SubjectID=semchild.SubjectID
LEFT JOIN T_SubjectMaster sm ON sm.SubjectID=semchild.SubjectID
WHERE semchild.isActive = '1' and bsm.SchId='".$mapid."'
group by semchild.SubjectID,semchild.MapID";
$b=$this->db->query($sql);
//print_r($b);
if($b->result()){
$resultShedule['status']=true; $resultShedule['status']=true;
$mastScheduleID=""; $mastScheduleID="";
foreach($result->result() as $row) foreach($b->result() as $row)
{ {
$this->db->select('T_Batch_Schedule_Child.SchId,T_Batch_Schedule_Child.SubjectID,T_Batch_Schedule_Child.ScheduleDate,T_Batch_Schedule_Child.FromTime,T_Batch_Schedule_Child.ToTime,T_Batch_Schedule_Child.SchChildId,T_Batch_Schedule_Child.SchId'); $this->db->select('T_Batch_Schedule_Child.SchId,T_Batch_Schedule_Child.SubjectID,T_Batch_Schedule_Child.ScheduleDate,T_Batch_Schedule_Child.FromTime,T_Batch_Schedule_Child.ToTime,T_Batch_Schedule_Child.SchChildId,T_Batch_Schedule_Child.SchId');
@ -125,7 +139,7 @@ class Hallticket_model extends CI_Model
// $this->db->where('T_Batch_Schedule_Child.SchId',$mapid); // $this->db->where('T_Batch_Schedule_Child.SchId',$mapid);
$this->db->where('T_Batch_Schedule_Child.SubjectID',$row->SubjectID); $this->db->where('T_Batch_Schedule_Child.SubjectID',$row->SubjectID);
$existsheduledetails = $this->db->get(); $existsheduledetails = $this->db->get();
//print_r($existsheduledetails);
if($existData=$existsheduledetails->result()) if($existData=$existsheduledetails->result())
{ {

View File

@ -367,10 +367,12 @@ class Receive_Enrolment_Fees_Univ_model extends CI_Model {
return $finalArray; return $finalArray;
} }
// add student formid feedetails from the university by file upload , with check the unique entry
public function formIdFeeDetails($formFeeDetails=null,$local=null){ // kdk
public function formIdFeeDetails($formFeeDetails=null,$local=null, $univ =null){
$localBranchID = $local['localBranchID']; $localBranchID = $local['localBranchID'];
$localUserID = $local['localUserID']; $localUserID = $local['localUserID'];
$univId = $univ['univCode'];
$time = date('Y-m-d H:i:s'); $time = date('Y-m-d H:i:s');
$CreatedOn = $time; $CreatedOn = $time;
@ -443,9 +445,9 @@ class Receive_Enrolment_Fees_Univ_model extends CI_Model {
if(count($queryDetails->result()) == 0){ if(count($queryDetails->result()) == 0){
$query = "INSERT INTO T_FormId_FeeDetails_Received_From_University $query = "INSERT INTO T_FormId_FeeDetails_Received_From_University
(FormID, FormType, CentreCode,Session,Year,Semester,Student_Name,Father_Name,CourseCode, ActualCourseFee, CourseFee, ExamFee, EnrollmentFee, ProspectusFee, ReRegFee, CreditTransferFee, LateralEntryFee, DualSpclFee, OtherFee, NRIFEE, ProvisionalFee, MigrationFee, UrgentResultDMCFee, AdditionalFee, Amount, CreatedBy, CreatedOn, BranchCode, DraftStatus, EditStatus) (FormID, FormType, CentreCode,Session,Year,Semester,Student_Name,Father_Name,CourseCode, ActualCourseFee, CourseFee, ExamFee, EnrollmentFee, ProspectusFee, ReRegFee, CreditTransferFee, LateralEntryFee, DualSpclFee, OtherFee, NRIFEE, ProvisionalFee, MigrationFee, UrgentResultDMCFee, AdditionalFee, Amount,UniversityID, CreatedBy, CreatedOn, BranchCode, DraftStatus, EditStatus, AddToAccountStatus)
VALUES VALUES
( '$formIds', '$formType', '$CentreCode','$Session','$Year','$Semester','$Student_Name','$Father_Name', '$CourseCode', '$ActualCourseFee', '$CourseFee', '$ExamFee', '$EnrollmentFee', '$ProspectusFee', '$ReRegFee', '$CreditTransferFee', '$LateralEntryFee', '$DualSpclFee', '$OtherFee', '$NRIFEE', '$ProvisionalFee', '$MigrationFee', '$UrgentResultDMCFee', '$AdditionalFee', '$Amount', '$localUserID', '$CreatedOn', '$localBranchID' , 0, 0)"; ( '$formIds', '$formType', '$CentreCode','$Session','$Year','$Semester','$Student_Name','$Father_Name', '$CourseCode', '$ActualCourseFee', '$CourseFee', '$ExamFee', '$EnrollmentFee', '$ProspectusFee', '$ReRegFee', '$CreditTransferFee', '$LateralEntryFee', '$DualSpclFee', '$OtherFee', '$NRIFEE', '$ProvisionalFee', '$MigrationFee', '$UrgentResultDMCFee', '$AdditionalFee', '$Amount', '$univId', '$localUserID', '$CreatedOn', '$localBranchID' , 0, 0, 0)";
$queryDetails = $this->db->query($query); $queryDetails = $this->db->query($query);
} else { } else {
echo 'else con'; echo 'else con';
@ -889,6 +891,8 @@ class Receive_Enrolment_Fees_Univ_model extends CI_Model {
return $resultArray; return $resultArray;
} }
// get formid draft mode list details
// kdk
public function getForFormIdDraftDetails(){ public function getForFormIdDraftDetails(){
$selectQuery = "SELECT * FROM T_FormId_FeeDetails_Received_From_University WHERE DraftStatus = 1"; $selectQuery = "SELECT * FROM T_FormId_FeeDetails_Received_From_University WHERE DraftStatus = 1";
$details = $this->db->query($selectQuery); $details = $this->db->query($selectQuery);
@ -905,10 +909,13 @@ class Receive_Enrolment_Fees_Univ_model extends CI_Model {
return $result; return $result;
} }
public function addForFormIdDraftDetails($details, $local){ // add formid manual details form the university and draftmode
// kdk
public function addForFormIdDraftDetails($details, $local, $univ =null){
$localBranchID = $local['localBranchID']; $localBranchID = $local['localBranchID'];
$localUserID = $local['localUserID']; $localUserID = $local['localUserID'];
$univId = $univ['univCode'];
$time = date('Y-m-d H:i:s'); $time = date('Y-m-d H:i:s');
$CreatedOn = $time; $CreatedOn = $time;
@ -967,9 +974,9 @@ class Receive_Enrolment_Fees_Univ_model extends CI_Model {
if(count($queryDetails->result()) == 0){ if(count($queryDetails->result()) == 0){
$query = "INSERT INTO T_FormId_FeeDetails_Received_From_University $query = "INSERT INTO T_FormId_FeeDetails_Received_From_University
(FormID, FormType, CentreCode,Session,Year,Semester,Student_Name,Father_Name,CourseCode, ActualCourseFee, CourseFee, ExamFee, EnrollmentFee, ProspectusFee, ReRegFee, CreditTransferFee, LateralEntryFee, DualSpclFee, OtherFee, NRIFEE, ProvisionalFee, MigrationFee, UrgentResultDMCFee, AdditionalFee, Amount, CreatedBy, CreatedOn, BranchCode, DraftStatus, EditStatus) (FormID, FormType, CentreCode,Session,Year,Semester,Student_Name,Father_Name,CourseCode, ActualCourseFee, CourseFee, ExamFee, EnrollmentFee, ProspectusFee, ReRegFee, CreditTransferFee, LateralEntryFee, DualSpclFee, OtherFee, NRIFEE, ProvisionalFee, MigrationFee, UrgentResultDMCFee, AdditionalFee, Amount, UniversityID, CreatedBy, CreatedOn, BranchCode, DraftStatus, EditStatus, AddToAccountStatus)
VALUES VALUES
( '$formIds', '$formType', '$CentreCode','$Session','$Year','$Semester','$Student_Name','$Father_Name', '$CourseCode', '$ActualCourseFee', '$CourseFee', '$ExamFee', '$EnrollmentFee', '$ProspectusFee', '$ReRegFee', '$CreditTransferFee', '$LateralEntryFee', '$DualSpclFee', '$OtherFee', '$NRIFEE', '$ProvisionalFee', '$MigrationFee', '$UrgentResultDMCFee', '$AdditionalFee', '$Amount', '$localUserID', '$CreatedOn', '$localBranchID' , 1, 1)"; ( '$formIds', '$formType', '$CentreCode','$Session','$Year','$Semester','$Student_Name','$Father_Name', '$CourseCode', '$ActualCourseFee', '$CourseFee', '$ExamFee', '$EnrollmentFee', '$ProspectusFee', '$ReRegFee', '$CreditTransferFee', '$LateralEntryFee', '$DualSpclFee', '$OtherFee', '$NRIFEE', '$ProvisionalFee', '$MigrationFee', '$UrgentResultDMCFee', '$AdditionalFee', '$Amount', '$univId' , '$localUserID', '$CreatedOn', '$localBranchID' , 1, 1, 0)";
$queryDetails = $this->db->query($query); $queryDetails = $this->db->query($query);
if($queryDetails){ if($queryDetails){
@ -986,6 +993,8 @@ class Receive_Enrolment_Fees_Univ_model extends CI_Model {
return $result; return $result;
} }
// manual formid entry draft details move to the list details
// kdk
public function draftMovetoList($detail, $local){ public function draftMovetoList($detail, $local){
// print_r($details);exit(); // print_r($details);exit();
@ -1014,6 +1023,8 @@ class Receive_Enrolment_Fees_Univ_model extends CI_Model {
return $result; return $result;
} }
// edit draft mode formid manul entry details
// kdk
public function editDraftFormIdFeesDetails($reqBranch, $details, $detailsID){ public function editDraftFormIdFeesDetails($reqBranch, $details, $detailsID){
$ids = $detailsID; $ids = $detailsID;
$formIds = $details['FormID']; $formIds = $details['FormID'];
@ -1083,6 +1094,8 @@ $result['updatedraftStatus'] = false;
return $result; return $result;
} }
// get formid , fee details form the file upload for the university , course, student
// kdk
public function getStudentUnivFormIdFeeDatailsList($reqBranchData, $searchDetails){ public function getStudentUnivFormIdFeeDatailsList($reqBranchData, $searchDetails){
$this->db->select('FUD.*, concat(ST.FirstName," ", ST.Lastname) as app_StudentName, IF(concat(ST.FirstName," " , ST.Lastname) = FUD.Student_Name, "YES", "NO") as StudentNameStatus , $this->db->select('FUD.*, concat(ST.FirstName," ", ST.Lastname) as app_StudentName, IF(concat(ST.FirstName," " , ST.Lastname) = FUD.Student_Name, "YES", "NO") as StudentNameStatus ,
@ -1152,8 +1165,14 @@ $result['updatedraftStatus'] = false;
} }
// get formid status list for that particular record
// kdk
public function getFormIdDetailsStatusUpdateList($reqBranchData, $searchDetails){ public function getFormIdDetailsStatusUpdateList($reqBranchData, $searchDetails){
$selectQuery = "SELECT * FROM T_FormId_FeeDetails_Received_From_University_StatusUpdate WHERE FormIdDetailsID = '$searchDetails'"; $selectQuery = "SELECT * , concat(t3.Firstname, '', t3.Lastname) as CreatedByName
FROM T_FormId_FeeDetails_Received_From_University_StatusUpdate as t1
LEFT JOIN T_Login as t2 ON t1.CreatedBy = t2.ID
LEFT JOIN T_StaffDetails as t3 ON t2.StaffID = t3.StaffID
WHERE FormIdDetailsID = '$searchDetails' ORDER BY t1.CreatedOn DESC ";
$details = $this->db->query($selectQuery); $details = $this->db->query($selectQuery);
$detailsList = $details->result(); $detailsList = $details->result();
if($detailsList) { if($detailsList) {
@ -1168,6 +1187,8 @@ $result['updatedraftStatus'] = false;
return $result; return $result;
} }
// add formid list file status list for that record
// kdk
public function insertStatusUpdateDetails($reqBranchData, $statusDetails, $id, $formId ){ public function insertStatusUpdateDetails($reqBranchData, $statusDetails, $id, $formId ){
$newLeadDetails['FormIdDetailsID'] = $id; $newLeadDetails['FormIdDetailsID'] = $id;
@ -1188,4 +1209,262 @@ $result['updatedraftStatus'] = false;
return $result; return $result;
} }
// get university list for search
// kdk
public function get_university_list($branch) {
$this->db->select('UniversityID, UniversityName');
$this->db->order_by('CreatedOn', 'DESC');
$this->db->from(UNIVERSITY);
$this->db->where('IsActive', 1);
$this->db->where('BranchCode', $branch);
$univDetails = $this->db->get();
$universityDetails = $univDetails->result();
if (count($universityDetails) > 0) {
$results['univList'] = true;
$results['university_details'] = $universityDetails;
} else {
$results['univList'] = false;
$results['message'] = 'No record found';
}
return $results;
}
// get unmatched records of the formid file details , compare with file 1
// kdk
public function getUnmatchedFormIdFeesDetails($localDetails, $getDetailsFor) {
$searchUniv = $getDetailsFor['univCode'];
// echo $searchUniv;exit();
$query = "select *
from T_FormId_FeeDetails_Received_From_University as t1
where t1.FormID NOT IN (select FormID from T_Enrolment_Received_From_University)
and t1.UniversityID ='$searchUniv'";
$details = $this->db->query($query);
$detailsList = $details->result();
if($detailsList){
$resultArr['unMatchedRecordDetails'] = $detailsList;
$resultArr['unMatchedRecordStatus'] = true;
$resultArr['unMatchedRecordFor'] = 'FormIDFile';
$resultArr['message'] = "Successfully data generated";
} else {
$resultArr['unMatchedRecordDetails'] = [];
$resultArr['unMatchedRecordStatus'] = false;
$resultArr['unMatchedRecordFor'] = 'FormIDFile';
$resultArr['message'] = "No record found";
}
return $resultArr;
}
// Add formid , university amount payment details to the account state
// kdk
public function addFormIdListToAccountState($localDetails, $getDetailsFor){
$localCreatedBy = $localDetails['localUserID'];
$time = date('Y-m-d H:i:s');
$localCreatedOn = $time;
foreach($getDetailsFor as $row) {
$ids = $row['ID'];
$query = "SELECT t1.ID, t1.FormID, t1.Amount, t2.ApprovedDate , t2.CreatedOn ,t2.UniversityCode, t2.UniversityName
from T_FormId_FeeDetails_Received_From_University as t1
LEFT JOIN T_Enrolment_Received_From_University as t2 ON t1.FormID = t2.FormID
WHERE t1.ID = '$ids'";
$details = $this->db->query($query);
$detailsList = $details->result();
if($detailsList){
$arr['FormMapID'] = $detailsList[0]->ID;
$arr['FormID'] = $detailsList[0]->FormID;
$arr['CreditAmount'] = $detailsList[0]->Amount;
$ApprovedDate = date('y-m-d',strtotime($detailsList[0]->ApprovedDate));
$CreatedOn = date('y-m-d',strtotime($detailsList[0]->CreatedOn));
$arr['ApprovedDate'] = $ApprovedDate ? $ApprovedDate : $CreatedOn;
$arr['TypeID'] = 1;
$arr['TypeName'] = 'Credit';
$arr['UniversityCode'] = $detailsList[0]->UniversityCode;
$arr['UniversityName'] = $detailsList[0]->UniversityName;
$arr['CreatedOn'] = $localCreatedOn;
$arr['CreatedBy'] = $localCreatedBy;
$this->db->insert('T_University_Credit_Debit', $arr);
if ($this->db->affected_rows() >= 1) {
$updateQuery = 'UPDATE `T_FormId_FeeDetails_Received_From_University` SET `AddToAccountStatus` = 1 WHERE `ID` = '.$ids;
$queryDetails = $this->db->query($updateQuery);
if ($this->db->affected_rows() == '1') {
$result['accountStateMoveStatus'] = true;
$result['accountStateMoveMessagae'] = "Updated Successfully.";
} else {
$result['accountStateMoveStatus'] = false;
$result['accountStateMoveMessagae'] = "Something went wrong.";
}
} else {
$result['accountStateMoveStatus'] = false;
$result['accountStateMoveMessagae'] = "Something went wrong.";
}
} else {
$result['accountStateMoveStatus'] = false;
$result['accountStateMoveMessagae'] = "Something went wrong.";
}
}
return $result;
}
// public function getUnmatchedFormDetails($reqType){
// // $this->db->select('t1.*');
// // $this->db->from('T_Enrolment_Received_From_University as t1');
// // $this->db->join('T_Student_CourseDetails as t2', 't2.EnrollmentID = t1.EnrolmentNo');
// if($reqType == 'EnrolmentIDFile'){
// $query = "select *
// from T_Enrolment_Received_From_University as t1
// where t1.EnrolmentNo NOT IN (select EnrollmentID from T_Student_CourseDetails)";
// $details = $this->db->query($query);
// $detailsList = $details->result();
// if($detailsList){
// $resultArr['unMatchedRecordDetails'] = $detailsList;
// $resultArr['unMatchedRecordStatus'] = true;
// $resultArr['unMatchedRecordFor'] = 'EnrolmentIDFile';
// $resultArr['message'] = "Successfully data generated";
// } else {
// $resultArr['unMatchedRecordDetails'] = [];
// $resultArr['unMatchedRecordStatus'] = false;
// $resultArr['unMatchedRecordFor'] = 'EnrolmentIDFile';
// $resultArr['message'] = "No record found";
// }
// }else if($reqType == 'FormIDFile'){
// $query = "select *
// from T_FormId_FeeDetails_Received_From_University as t1
// where t1.FormID NOT IN (select FormID from T_Enrolment_Received_From_University)";
// $details = $this->db->query($query);
// $detailsList = $details->result();
// if($detailsList){
// $resultArr['unMatchedRecordDetails'] = $detailsList;
// $resultArr['unMatchedRecordStatus'] = true;
// $resultArr['unMatchedRecordFor'] = 'FormIDFile';
// $resultArr['message'] = "Successfully data generated";
// } else {
// $resultArr['unMatchedRecordDetails'] = [];
// $resultArr['unMatchedRecordStatus'] = false;
// $resultArr['unMatchedRecordFor'] = 'FormIDFile';
// $resultArr['message'] = "No record found";
// }
// }
// return $resultArr;
// }
/*
* get payment verification details
* created by kms
* */
public function getPaymentVerificationDetails($search){
$this->db->select('UNCD.ID,UNCD.FormMapID,UNCD.PaymentMapID,UNCD.FormID,UNCD.CreditAmount,UNCD.DebitAmount,UNCD.ApprovedDate,UNCD.UniversityCode,UNCD.UniversityName,UNCD.TypeID,ENU.EnrolmentNo,UNP.BillNo,UNP.PID as PaymentID');
$this->db->from(UNIVERSITYCREDITDEBIY.' as UNCD');
$this->db->join(FORMFEESRECEIVEDFROMUNIV.' as UNFR', 'UNFR.ID = UNCD.FormMapID','left');
$this->db->join(UNIVERSITYPAYMENT.' as UNP', 'UNP.PID = UNCD.PaymentMapID','left');
$this->db->join(ENROLMENTRECEIVEDFROMUNIV.' as ENU', 'ENU.FormID = UNFR.FormID','left');
$this->db->order_by('UNCD.ApprovedDate','DESC');
$this->db->where('UNCD.UniversityCode',$search['UniversityCode']);
$this->db->order_by('UNCD.UniversityName',$search['UniversityName']);
$details = $this->db->get();
$resultArray=array();
if($details->result()){
$resultArray['status']=true;
$resultArray['details']=$details->result();
}
else{
$resultArray['status']=false;
$resultArray['details']="No list were found";
}
return $resultArray;
}
/*
* add payment details
* created by kms
* */
public function addPaymentDetails($fromDetails=null){
$resultArray=array();
$this->db->select('UNP.BillNo');
$this->db->from(UNIVERSITYPAYMENT.' as UNP');
$this->db->where('UNP.BillNo', $fromDetails['BillNo']);
$billExist = $this->db->get();
if($billExist->num_rows()<=0){
if($fromDetails['ReceiptNo']!='' AND $fromDetails['ReceiptNo']!=null){
$this->db->select('UNP1.ReceiptNo');
$this->db->from(UNIVERSITYPAYMENT.' as UNP1');
$this->db->where('UNP1.ReceiptNo', $fromDetails['ReceiptNo']);
$receiptExist = $this->db->get();
if($receiptExist->num_rows()<=0){
$this->db->insert(UNIVERSITYPAYMENT, $fromDetails);
if ($this->db->affected_rows() > 0) {
$updateDebitTable['PaymentMapID']=$this->db->insert_id();
$updateDebitTable['DebitAmount']=$fromDetails['Amount'];
$updateDebitTable['ApprovedDate']=$fromDetails['ApprovedDate'];
$updateDebitTable['TypeID']=0;
$updateDebitTable['TypeName']="Debit";
$updateDebitTable['UniversityCode']=$fromDetails['UniversityCode'];
$updateDebitTable['UniversityName']=$fromDetails['UniversityName'];
$updateDebitTable['BranchCode']=$fromDetails['BranchCode'];
$updateDebitTable['CreatedBy']=$fromDetails['CreatedBy'];
$updateDebitTable['CreatedOn']=$fromDetails['CreatedOn'];
$this->db->insert(UNIVERSITYCREDITDEBIY, $updateDebitTable);
if ($this->db->affected_rows() > 0) {
$resultArray['status']=true;
$resultArray['message']="Payment added successfully";
}
else{
$this->db->delete(UNIVERSITYPAYMENT);
$this->db->where('PID',$updateDebitTable['PaymentMapID']);
$resultArray['status']=false;
$resultArray['message']="Payment failed.try again";
}
} else {
$resultArray['status']=false;
$resultArray['message']="Payment failed.Try again";
}
}
else{
$resultArray['status']=false;
$resultArray['message']="Receipt no is already exist..";
}
}
else{
$this->db->insert(UNIVERSITYPAYMENT, $fromDetails);
if ($this->db->affected_rows() > 0) {
$updateDebitTable['PaymentMapID']=$this->db->insert_id();
$updateDebitTable['DebitAmount']=$fromDetails['Amount'];
$updateDebitTable['ApprovedDate']=$fromDetails['ApprovedDate'];
$updateDebitTable['TypeID']=0;
$updateDebitTable['TypeName']="Debit";
$updateDebitTable['UniversityCode']=$fromDetails['UniversityCode'];
$updateDebitTable['UniversityName']=$fromDetails['UniversityName'];
$updateDebitTable['BranchCode']=$fromDetails['BranchCode'];
$updateDebitTable['CreatedBy']=$fromDetails['CreatedBy'];
$updateDebitTable['CreatedOn']=$fromDetails['CreatedOn'];
$this->db->insert(UNIVERSITYCREDITDEBIY, $updateDebitTable);
if ($this->db->affected_rows() > 0) {
$resultArray['status']=true;
$resultArray['message']="Payment added successfully";
}
else{
$this->db->delete(UNIVERSITYPAYMENT);
$this->db->where('PID',$updateDebitTable['PaymentMapID']);
$resultArray['status']=false;
$resultArray['message']="Payment failed.try again";
}
} else {
$resultArray['status']=false;
$resultArray['message']="Payment failed.Try again";
}
}
}
else {
$resultArray['status']=false;
$resultArray['message']="Bill no is already exist..";
}
return $resultArray;
}
} }

View File

@ -1070,7 +1070,6 @@ app.controller('feesStatusCtrl', ["$scope","$rootScope","toaster", "$filter", "n
else{ else{
$scope.convertGetDate=new Date($rootScope.updateMoreItems[$rootScope.updateMoreItems.length-1].DueDate).toDateString(); $scope.convertGetDate=new Date($rootScope.updateMoreItems[$rootScope.updateMoreItems.length-1].DueDate).toDateString();
$scope.pushDueDate = $filter('date')(new Date($scope.convertGetDate), 'dd-MM-yyyy'); $scope.pushDueDate = $filter('date')(new Date($scope.convertGetDate), 'dd-MM-yyyy');
} }
var MoreInsAmt= Math.round($rootScope.updateMoreItems[$rootScope.updateMoreItems.length-1].Amount * 50 / 100); var MoreInsAmt= Math.round($rootScope.updateMoreItems[$rootScope.updateMoreItems.length-1].Amount * 50 / 100);
var afterMoreInsAmt = parseInt($rootScope.updateMoreItems[$rootScope.updateMoreItems.length-1].Amount)-parseInt(MoreInsAmt); var afterMoreInsAmt = parseInt($rootScope.updateMoreItems[$rootScope.updateMoreItems.length-1].Amount)-parseInt(MoreInsAmt);
@ -1374,8 +1373,9 @@ app.controller('feesStatusCtrl', ["$scope","$rootScope","toaster", "$filter", "n
startPayableAmt = parseInt(totAmt); startPayableAmt = parseInt(totAmt);
var percentage = Math.round(startPayableAmt * 70 / 100); var percentage = Math.round(startPayableAmt * 70 / 100);
percentage = Math.round(percentage / 10) * 10; percentage = Math.round(percentage / 10) * 10;
startPayableAmt = startPayableAmt - percentage;
startPayableAmt = startPayableAmt - percentage;
// alert(startPayableAmt);
$scope.insFirstDate = $filter('date')(new Date(cDate), 'dd-MM-yyyy'); $scope.insFirstDate = $filter('date')(new Date(cDate), 'dd-MM-yyyy');
$scope.insSecondDate = $filter('date')(new Date(cDate), 'dd-MM-yyyy'); $scope.insSecondDate = $filter('date')(new Date(cDate), 'dd-MM-yyyy');
@ -1389,7 +1389,7 @@ app.controller('feesStatusCtrl', ["$scope","$rootScope","toaster", "$filter", "n
} }
else { else {
startPayableAmt = Math.round(startPayableAmt / 10) * 10; startPayableAmt = Math.round(startPayableAmt);
$scope.updateMoreItems.push({ $scope.updateMoreItems.push({
ID: "", ID: "",
Name: installmentService.installmentWords(i), Name: installmentService.installmentWords(i),

4
Apollo/assets/js/controllers/schCtrl.js Executable file → Normal file
View File

@ -51,6 +51,8 @@ app.controller('schCtrl', ["$scope","$rootScope","toaster", "$filter", "ngTableP
$scope.editId = pid; $scope.editId = pid;
$scope.courseCode = cid; $scope.courseCode = cid;
$scope.mappingid = schid; $scope.mappingid = schid;
//$scope.sample=subid;
$scope.sample1=c;
//alert(mappingid+'n'); //alert(mappingid+'n');
var getsheduledetails = { var getsheduledetails = {
method: 'POST', method: 'POST',
@ -63,7 +65,7 @@ app.controller('schCtrl', ["$scope","$rootScope","toaster", "$filter", "ngTableP
mapid:$scope.mappingid, mapid:$scope.mappingid,
subid:subid, subid:subid,
branchcode:branchid, branchcode:branchid,
courseDetails:$scope.sample1
} }
}; };

View File

@ -1,7 +1,6 @@
'use strict'; 'use strict';
/** /**
* controllers for ng-table * Student University Formid, Fee details compare
* Simple table with sorting and filtering on AngularJS
* kdk * kdk
*/ */
@ -37,6 +36,7 @@ app.controller('studentUnivFormIdFeeDetailsCtrl', ["$scope", "toaster", "$filter
if (localDetails.localType === 'R004') { if (localDetails.localType === 'R004') {
// $scope.getUniversityList(); // $scope.getUniversityList();
$scope.getUniversitySearchList(); $scope.getUniversitySearchList();
$scope.getUniveesityListFromApp();
} else { } else {
ipCookie.remove('cookiechk'); ipCookie.remove('cookiechk');
$window.localStorage.clear(); $window.localStorage.clear();
@ -47,11 +47,11 @@ app.controller('studentUnivFormIdFeeDetailsCtrl', ["$scope", "toaster", "$filter
} }
/*$scope.universityData = ''; $scope.universityData = '';
$scope.getUniversityList = function () { $scope.getUniveesityListFromApp = function () {
var empListreq = { var empListreq = {
method: 'POST', method: 'POST',
url: apiPoint.url + 'getStudentUniversity/', url: apiPoint.url + 'getUniversityCodeForFormDetailsGet/',
headers: { headers: {
'Content-Type': 'application/json' 'Content-Type': 'application/json'
}, },
@ -65,7 +65,7 @@ app.controller('studentUnivFormIdFeeDetailsCtrl', ["$scope", "toaster", "$filter
} else { } else {
} }
}); });
}*/ }
// get University List // get University List
$scope.universitySearchData = ''; $scope.universitySearchData = '';
$scope.getUniversitySearchList = function () { $scope.getUniversitySearchList = function () {
@ -229,9 +229,12 @@ app.controller('studentUnivFormIdFeeDetailsCtrl', ["$scope", "toaster", "$filter
} }
$scope.formUploadUnivSelectID = {
'univCode': ''
};
$scope.receiveFormIdFeeDetails = function (details) { $scope.receiveFormIdFeeDetails = function (details) {
console.log(details); console.log(details);
var updateUniversityEnrolment = { var updateUniversityEnrolment = {
method: 'POST', method: 'POST',
url: apiPoint.url + 'insertFormIdUnivFeeDetails/', url: apiPoint.url + 'insertFormIdUnivFeeDetails/',
@ -240,7 +243,8 @@ app.controller('studentUnivFormIdFeeDetailsCtrl', ["$scope", "toaster", "$filter
}, },
data: { data: {
localDetails: localDetail, localDetails: localDetail,
details: details details: details,
univ: $scope.formUploadUnivSelectID
} }
}; };
@ -291,22 +295,26 @@ app.controller('studentUnivFormIdFeeDetailsCtrl', ["$scope", "toaster", "$filter
}); });
} }
$scope.formIdMissMatchUnivSelectID = {
'univCode': ''
};
$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;
var getDetailsFor = ss == 1 ? 'EnrolmentIDFile' : 'FormIDFile';
var getFeeCompareDetailsList = { var getFeeCompareDetailsList = {
method: 'POST', method: 'POST',
url: apiPoint.url + 'getUnmatchedRecordDetails/', url: apiPoint.url + 'getUnmatchedFormIdFeesDetails/',
headers: { headers: {
'Content-Type': 'application/json' 'Content-Type': 'application/json'
}, },
data: { data: {
localDetails: localDetail, localDetails: localDetail,
getDetailsFor: getDetailsFor getDetailsFor: $scope.formIdMissMatchUnivSelectID
} }
}; };
$http(getFeeCompareDetailsList).then(function (response) { $http(getFeeCompareDetailsList).then(function (response) {
@ -394,7 +402,7 @@ app.controller('studentUnivFormIdFeeDetailsCtrl', ["$scope", "toaster", "$filter
// manual entry details add // manual entry details add
$scope.addManualData = function () { $scope.addManualData = function () {
alert(JSON.stringify($scope.draftManualEntryDetails)); // alert(JSON.stringify($scope.draftManualEntryDetails));
var addDraftDetailsList = { var addDraftDetailsList = {
method: 'POST', method: 'POST',
@ -404,7 +412,8 @@ app.controller('studentUnivFormIdFeeDetailsCtrl', ["$scope", "toaster", "$filter
}, },
data: { data: {
localDetails: localDetail, localDetails: localDetail,
details : $scope.draftManualEntryDetails details: $scope.draftManualEntryDetails,
univ: $scope.formUploadUnivSelectID
} }
}; };
$http(addDraftDetailsList).then(function (response) { $http(addDraftDetailsList).then(function (response) {
@ -451,6 +460,7 @@ $scope.draftManualEntryDetails = {
return 0; return 0;
} }
// add draft details to list
$scope.addToList = function (id) { $scope.addToList = function (id) {
swal({ swal({
title: "Are you sure?", title: "Are you sure?",
@ -491,7 +501,8 @@ $scope.draftManualEntryDetails = {
} else { } else {
swal("", response.data.draftDetailsMessagae, "warning"); swal("", response.data.draftDetailsMessagae, "warning");
}}); }
});
} else { } else {
swal("Cancelled", "Your record not added to list :)", "error"); swal("Cancelled", "Your record not added to list :)", "error");
} }
@ -506,6 +517,7 @@ $scope.draftManualEntryDetails = {
$scope.editId = details; $scope.editId = details;
} }
// update feeid details in draft mode
$scope.updateFeeIDDetails = function (id, p) { $scope.updateFeeIDDetails = function (id, p) {
var editDraftMoveToList = { var editDraftMoveToList = {
method: 'POST', method: 'POST',
@ -529,17 +541,25 @@ $scope.draftManualEntryDetails = {
} else { } else {
swal("", response.data.updatedraftDetailsMessagae, "warning"); swal("", response.data.updatedraftDetailsMessagae, "warning");
}}); }
});
} }
$scope.statusUpdateEditId = -1; $scope.statusUpdateEditId = -1;
$scope.statusUpdate = function (id) { $scope.statusUpdate = function (id) {
$scope.statusUpdateEditId = id; $scope.statusUpdateEditId = id;
$scope.statusUpdateFormIdDetails = {
"Status": "",
"Comments": ""
} }
}
$scope.StatusListDetails = ''; $scope.StatusListDetails = '';
$scope.getFormIdDetailsStatusListLoading = false; $scope.getFormIdDetailsStatusListLoading = false;
// formid records status details
$scope.getFormIdDetailsStatusList = function (id) { $scope.getFormIdDetailsStatusList = function (id) {
$scope.getFormIdDetailsStatusListLoading = true; $scope.getFormIdDetailsStatusListLoading = true;
var getFormIdDetailsStatusList = { var getFormIdDetailsStatusList = {
method: 'POST', method: 'POST',
@ -560,7 +580,8 @@ $scope.draftManualEntryDetails = {
$scope.getFormIdDetailsStatusListLoading = false; $scope.getFormIdDetailsStatusListLoading = false;
$scope.StatusListDetails = response.data.formIdstatusListDetails; $scope.StatusListDetails = response.data.formIdstatusListDetails;
$scope.StatusListDetailsApiMessage = response.data.formIdstatusListMessagae; $scope.StatusListDetailsApiMessage = response.data.formIdstatusListMessagae;
}}); }
});
} }
$scope.statusUpdateFormIdDetails = { $scope.statusUpdateFormIdDetails = {
@ -568,6 +589,15 @@ $scope.draftManualEntryDetails = {
"Comments": "" "Comments": ""
} }
$scope.resetStatusUpdateForm = function () {
$scope.statusUpdateFormIdDetails = {
"Status": "",
"Comments": ""
}
}
// add status for the formid record details
// kdk
$scope.addStatusUpdateDetails = function (id, formId) { $scope.addStatusUpdateDetails = function (id, formId) {
var addStatusUpdateDetailsStatusList = { var addStatusUpdateDetailsStatusList = {
method: 'POST', method: 'POST',
@ -595,7 +625,57 @@ $scope.draftManualEntryDetails = {
// $scope.getFormIdDetailsStatusListLoading = false; // $scope.getFormIdDetailsStatusListLoading = false;
// $scope.StatusListDetails = response.data.formIdstatusListDetails; // $scope.StatusListDetails = response.data.formIdstatusListDetails;
// $scope.StatusListDetailsApiMessage = response.data.formIdstatusListMessagae; // $scope.StatusListDetailsApiMessage = response.data.formIdstatusListMessagae;
}}); }
});
}
// add formid list details to account state
// kdk
$scope.addToAccountState = function (id) {
swal({
title: "Are you sure?",
text: "You Want to Add this Record to Account State List!",
type: "warning",
showCancelButton: true,
confirmButtonColor: '#DD6B55',
confirmButtonText: 'Yes',
cancelButtonText: "No",
closeOnConfirm: false,
closeOnCancel: false
},
function (isConfirm) {
if (isConfirm) {
var selectedItems = [];
function getUpdateDetails(id) {
this.ID = id;
}
let itemGetID = new getUpdateDetails(id);
selectedItems.push(itemGetID);
var addToAccountStateList = {
method: 'POST',
url: apiPoint.url + 'addToAccountStateList/',
headers: {
'Content-Type': 'application/json'
},
data: {
localDetails: localDetail,
details: selectedItems
}
};
$http(addToAccountStateList).then(function (response) {
if (response.data.accountStateMoveStatus == true) {
swal("", response.data.accountStateMoveMessagae, "success");
$scope.onSubmit();
} else {
swal("", response.data.accountStateMoveMessagae, "warning");
}
});
} else {
swal("Cancelled", "Your record not added to list :)", "error");
}
});
} }
}]); }]);

View File

@ -0,0 +1,236 @@
'use strict';
/**
* controllers for ng-table
* Simple table with sorting and filtering on AngularJS
*/
app.controller('univFormPaymentCtrl', ["$scope","$rootScope","$filter", "ngTableParams", "API_POINTS", "$localStorage", "$http", "$state", "$modal", "$log", "SweetAlert", "$timeout", function ($scope,$rootScope, $filter, ngTableParams, apiPoint, $localStorage, $http, $state, $modal, SweetAlert, $log, $timeout) {
// ng-model object for payment search
$scope.paymentVerficationModel= {
'universitySearch':"",
};
// load when html page load
var localDetail = JSON.parse(localStorage.getItem('localObj'));
$scope.init = function () {
if (localDetail != null) {
if (localDetail.localType === 'R004') {
$scope.getPaymentUnivSearchData();
} else {
localStorage.removeItem('localObj');
$state.go('login.signin');
}
} else {
$state.go('login.signin');
}
}
/*
* get university details for search
* cretaed by kms
* */
$scope.universityPaymentSearchData=[];
$scope.getPaymentUnivSearchData = function () {
var paymentSearch = {
method: 'POST',
url: apiPoint.url + 'getUnivCourseFromFileDetails/',
headers: {
'Content-Type': 'application/json'
},
data: {
data: localDetail
}
};
$http(paymentSearch).then(function (response) {
if (response.data.status) {
$scope.universityPaymentSearchData = response.data.details;
} else {
$scope.universityPaymentSearchData="";
}
});
}
/*
* add payment details
* created by kms
* */
$rootScope.addPaymentModel = {
'billNo':"",
'date':"",
'billAmount':"",
'receiptNo':"",
'comments':"",
'university':[]
};
$scope.addUniversityPaymentModal = function (values) {
$rootScope.addError="";
$rootScope.addPaymentModel.university=angular.fromJson(values.universitySearch);
$rootScope.paymentModal = $modal.open({
templateUrl: 'assets/views/student/addUniversityPaymentModal.html',
// controller: 'univFormPaymentCtrl',
// size: size,
resolve: {
items: function () {
return $scope.univPayDetails;
}
}
});
$rootScope.paymentModal.result.then(function (selectedItem) {
}, function () {
$rootScope.paymentModal.close();
$rootScope.addPaymentModel = {
'billNo':"",
'date':"",
'billAmount':"",
'receiptNo':"",
'comments':"",
'university':[]
};
});
};
/*
* add university payment details
* created by kms
* */
$rootScope.addError="";
$rootScope.addUnivPayment = function (form,addDetails) {
$rootScope.addError="";
var firstError = null;
if (form.$invalid) {
var field = null, firstError = null;
for (field in form) {
if (field[0] != '$') {
if (firstError === null && !form[field].$valid) {
firstError = form[field].$name;
}
if (form[field].$pristine) {
form[field].$dirty = true;
}
}
}
angular.element('.ng-invalid[name=' + firstError + ']').focus();
// swal("The form cannot be submitted because it contains validation errors!", "Errors are marked with a red, dashed border!", "error");
}
else{
var getdate=new Date(addDetails.date).toDateString();
$scope.univPayData = {
"universityCode":addDetails.university.univCode,
"universityName":addDetails.university.univName,
"billNo":addDetails.billNo,
"billAmount":addDetails.billAmount,
"date":$filter('date')(new Date(getdate), 'yyyy-MM-dd'),
"receiptNo":addDetails.receiptNo,
"comments":addDetails.comments,
}
var submitPayment = {
method: 'POST',
url: apiPoint.url + 'addUniversityPaymentDetails/',
headers: {
'Content-Type': 'application/json'
},
data: {
localDetails: localDetail,
details: $scope.univPayData,
}
};
$http(submitPayment).then(function (response) {
if (response.data.status==true) {
swal(" ", response.data.message, "success");
$rootScope.paymentModal.close();
$rootScope.addPaymentModel = {
'billNo':"",
'date':"",
'billAmount':"",
'receiptNo':"",
'comments':"",
'university':[]
};
$rootScope.getPaymentVerificationDetails($scope.paymentVerficationModel);
} else {
$rootScope.addError=response.data.message;
$timeout(function () {
$rootScope.addError="";
}, 4000);
}
});
}
}
/*
* cancel add modal
* */
$rootScope.cancelAddPaymentModal=function () {
$rootScope.paymentModal.close();
$rootScope.addPaymentModel = {
'billNo':"",
'date':"",
'billAmount':"",
'receiptNo':"",
'comments':"",
'university':[]
};
$rootScope.addError="";
};
/*
* get payment details
* cretaed by kms
* */
$scope.paymentVerificationData="";
$scope.emptyList=true;
$scope.searchLoader = false;
$rootScope.getPaymentVerificationDetails = function (searchData) {
$scope.paymentVerificationData="";
$scope.emptyList=true;
$scope.searchLoader = true;
var paymentVerification = {
method: 'POST',
url: apiPoint.url + 'paymentVerficationDetails/',
headers: {
'Content-Type': 'application/json'
},
data: {
localData: localDetail,
universityID: angular.fromJson(searchData.universitySearch).univCode,
universityName: angular.fromJson(searchData.universitySearch).univName,
}
};
$http(paymentVerification).then(function (response) {
if (response.data.status) {
$scope.searchLoader = false;
$scope.emptyList=false;
$scope.paymentVerificationData=response.data.details;
var tagMap = $scope.paymentVerificationData.reduce(function(map, tag,key) {
if(map.RunningBalance==undefined){
map['RunningBalance'] = parseInt(tag.CreditAmount)-parseInt(tag.DebitAmount);
tag['RunningBalance']=parseInt(tag.CreditAmount)-parseInt(tag.DebitAmount);;
}
else{
if(parseInt(tag.DebitAmount)<=0){
map['RunningBalance'] = parseInt(map.RunningBalance)+parseInt(tag.CreditAmount);
tag['RunningBalance']=parseInt(map.RunningBalance);
}
else{
map['RunningBalance'] = parseInt(map.RunningBalance)-parseInt(tag.DebitAmount);
tag['RunningBalance']=parseInt(map.RunningBalance);
}
}
return map;
}, {});
} else {
$scope.searchLoader = false;
$scope.emptyList=true;
$scope.paymentVerificationData=response.data.details;
}
});
};
}]);

0
Apollo/assets/views/hallticket/batchshedule.html Executable file → Normal file
View File

0
Apollo/assets/views/hallticket/editShedule.html Executable file → Normal file
View File

View File

@ -1,10 +1,96 @@
<!DOCTYPE html> <style>
<html lang="en"> .universityPaid {
<head> background: #f4f4f7 !important;
<meta charset="UTF-8"> }
<title>Title</title> </style>
</head> <section id="page-title">
<body> <div class="row">
<div class="col-sm-8">
</body> <h1 class="mainTitle" translate="University Payment Details">{{ mainTitle }}</h1>
</html>
<span class="mainDescription">Form List. </span>
</div>
<div ncy-breadcrumb></div>
</div>
</section>
<div class="container-fluid container-fullw bg-white" ng-controller="univFormPaymentCtrl" data-ng-init="init()">
<div class="row">
<div style="margin-top: -21px">
<div class="col-md-3 col-sm-8">
<label for="form-field-select-2">
University <span class="symbol required"></span>
</label>
<select class="form-control" tabindex="1" class="cs-select cs-skin-elastic" name="universitySearch" id="universitySearch" ng-model="paymentVerficationModel.universitySearch">
<option value="" disabled selected>Select University</option>
<option ng-repeat="item in universityPaymentSearchData" value="{{item}}">{{item.univName}}</option>
</select>
</div>
<div class="col-md-2 col-sm-4" style="padding-top: 23px;">
<button type="button" class="btn btn-success btn-o" tabindex="2" ng-disabled="paymentVerficationModel.universitySearch == ''" ng-click="getPaymentVerificationDetails(paymentVerficationModel)">
Search
</button>
</div>
</div>
</div>
<div class="row" style="float: right;display: flex;">
<div class="container">
<button type="button" ng-if="emptyList==false" class="btn btn-info btn-o" tooltip="Click to add payment" tabindex="3" ng-click="addUniversityPaymentModal(paymentVerficationModel)">
Add Payment
</button>
</div>
</div>
<div class="row" style="position: relative;margin-top:4%;">
<div class="container">
<div ng-if="searchLoader">
<div align="center">
<h3 style="color: blue;">Loading...</h3>
</div>
</div>
<div ng-if="emptyList">
<div align="center">
<h2> {{paymentVerificationData}} </h2>
</div>
</div>
<div class="table-responsive" ng-if="emptyList==false">
<table class="table table-hover table-condensed table-bordered" >
<thead>
<tr>
<th> Form ID</th>
<th> Enrolment No</th>
<th> Bill No</th>
<th> Payable</th>
<th> Paid </th>
<th> Balance</th>
<!--<th> University Name </th>-->
</tr>
</thead>
<tbody dir-paginate="p in paymentVerificationData|orderBy:sortKey:reverse|filter:search:strict|itemsPerPage:10| filter:query as results">
<tr ng-class="{universityPaid:p.TypeID==0}">
<td>{{p.FormID}}</td>
<td>{{p.EnrolmentNo}}</td>
<td>{{p.BillNo}}</td>
<td ng-if="p.CreditAmount==0"></td>
<td ng-if="p.CreditAmount>0"><span style="float:right;">{{p.CreditAmount}}</span></td>
<td ng-if="p.DebitAmount==0"></td>
<td ng-if="p.DebitAmount>0"><span style="float:right;">{{p.DebitAmount}}</span></td>
<td><span style="float:right;">{{p.RunningBalance}}</span></td>
<!--<td>{{p.UniversityName}}</td>-->
</tr>
</tbody>
</table>
<dir-pagination-controls max-size="10" direction-links="true" boundary-links="true">
</dir-pagination-controls>
</div>
</div>
</div>
</div>

View File

@ -0,0 +1,103 @@
<div class="container-fluid container-fullw bg-white">
<fieldset>
<legend>Payment for : {{addPaymentModel.university.univName}}</legend>
<form name="FormPayment" id="form" novalidate>
<div class="row">
<div class="col-md-4 form-group"
ng-class="{'has-error':FormPayment.billno.$dirty && FormPayment.billno.$invalid, 'has-success':FormPayment.billno.$valid}">
<label>
Bill No <span
class="symbol required"></span>
</label>
<input type="text" placeholder="Enter Bill No"
tabindex="1" class="form-control" name="billno"
ng-model="addPaymentModel.billNo" capitalize disallow-spaces required/>
<span class="error text-small block"
ng-if="FormPayment.billno.$dirty && FormPayment.billno.$error.required">Bill no is required</span>
</div>
<div class="col-md-4 form-group"
ng-class="{'has-error':FormPayment.billAmount.$dirty && FormPayment.billAmount.$invalid,'has-success':FormPayment.billAmount.$valid}">
<label>
Bill Amount <span class="symbol required"></span>
</label>
<input type="text" placeholder="Enter Bill Amount"
autofocus tabindex="2" class="form-control" name="billAmount" id="billAmount" ng-maxlength="9"
ng-model="addPaymentModel.billAmount" ng-pattern="/^[0-9]*$/" required/>
<span class="error text-small block"
ng-if="FormPayment.billAmount.$dirty && FormPayment.billAmount.$invalid"
ng-hide="FormPayment.billAmount.$error.maxlength || FormPayment.billAmount.$error.pattern">Bill amount is required</span>
<span class="error text-small block"
ng-if="FormPayment.billAmount.$error.maxlength || FormPayment.billAmount.$error.pattern">Enter a valid amount</span>
</div>
<div data-ng-controller="DatepickerDemoCtrl">
<div class="col-md-4 form-group"
ng-class="{'has-error':FormPayment.date.$dirty && FormPayment.date.$invalid, 'has-success':FormPayment.date.$valid}">
<label>
Bill Date <span
class="symbol required"></span>
</label>
<input type="text"
class="form-control "
ng-click="startOpen = !startOpen"
datepicker-popup="dd-MM-yyyy"
ng-model="addPaymentModel.date"
is-open="startOpen"
ng-init="startOpen = false"
name="date"
datepicker-options="dateOptions"
placeholder="Select Date"
min-date="currentDate"
max-date="futureDate"
close-text="Close" required="required" ng-readonly="true"/>
<span class="error text-small block"
ng-if="FormPayment.date.$dirty && FormPayment.date.$error.required">Date is required.</span>
</div>
</div>
</div>
<div class="row">
<div class="col-md-4 form-group"
ng-class="{'has-error':FormPayment.receiptNo.$dirty && FormPayment.receiptNo.$invalid}">
<label>
Receipt No
</label>
<input type="text" placeholder="Enter Receipt No"
tabindex="3" class="form-control" name="receiptNo"
ng-model="addPaymentModel.receiptNo" disallow-spaces/>
</div>
<div class="col-md-8 form-group"
ng-class="{'has-error':FormPayment.comments.$dirty && FormPayment.comments.$invalid}">
<label>
Comments
</label>
<textarea placeholder="Enter Comments" tabindex="4"
class="form-control textdsc" name="comments"
ng-model="addPaymentModel.comments"></textarea>
</div>
</div>
<div class="row">
<div class="col-md-12">
<div class="pull-right">
<span style="color:red;">{{addError}}</span>
<button type="submit" tabindex="5" class="btn btn-wide btn-success" ng-click="addUnivPayment(FormPayment,addPaymentModel)">
Save
</button>
<input type="button" class="btn btn-warning btn-wide" tabindex="6" value="Cancel"
ng-click="cancelAddPaymentModal();">
</input>
</div>
</div>
</div>
</form>
</fieldset>
</div>

View File

@ -162,7 +162,8 @@
<tbody dir-paginate="p in data|orderBy:sortKey:reverse|filter:search:strict|itemsPerPage:10| filter:query as results"> <tbody dir-paginate="p in data|orderBy:sortKey:reverse|filter:search:strict|itemsPerPage:10| filter:query as results">
<tr> <tr>
<td> <td>
<i class="ti-user" tooltip="Add To List" ng-click="statusUpdate(p.ID);"></i> <i class="glyphicon glyphicon-list-alt" tooltip="Status Details" ng-click="statusUpdate(p.ID);"></i>
<i class="ti-plus" ng-if="p.AddToAccountStatus != 1" tooltip="Add to Account State" ng-click="addToAccountState(p.ID);"></i>
</td> </td>
<td> <td>
{{p.FormID}} {{p.FormID}}
@ -214,20 +215,31 @@
<tr ng-show="statusUpdateEditId === p.ID" ng-if="statusUpdateEditId === p.ID"> <tr ng-show="statusUpdateEditId === p.ID" ng-if="statusUpdateEditId === p.ID">
<td colspan="12"> <td colspan="12">
<!--<h2> {{p.ID}} </h2>--> <!--<h2> {{p.ID}} </h2>-->
<div style="border: 1px solid gray; padding: 12px; margin: 4px;" ng-init="getFormIdDetailsStatusList(p.ID)"> <div class="container" style="border: 1px solid gray; padding: 12px; margin: 4px;" ng-init="getFormIdDetailsStatusList(p.ID)">
<div ng-if="getFormIdDetailsStatusListLoading"> <div ng-if="getFormIdDetailsStatusListLoading">
<div style="align: center; color: blue" align="center"> <div style="align: center; color: blue" align="center">
<h3>Loading...</h3></div> <h3>Loading...</h3>
</div>
</div> </div>
<div ng-if="!getFormIdDetailsStatusListLoading"> <div class="container" ng-if="!getFormIdDetailsStatusListLoading">
<div class="container"> <div class="container" ng-init="addStatusDetails = false">
<div class="row">
<div class="pull-right">
<button class="btn btn-primary" ng-click="addStatusDetails = !addStatusDetails"> Add Status</button>
</div>
</div>
<div ng-if="addStatusDetails" class="container">
<fieldset>
<legend>Add Status
</legend>
<div class="row"> <div class="row">
<div class="col-md-3 form-group"> <div class="col-md-3 form-group">
<label> <label>
Select Status Select Status
</label> </label>
<select class="form-control" ng-model="statusUpdateFormIdDetails.Status"> <select class="form-control" ng-model="statusUpdateFormIdDetails.Status">
<option value="" disabled> Select </option>
<option value="Ok"> Ok </option> <option value="Ok"> Ok </option>
<option value="Not Ok"> Not Ok </option> <option value="Not Ok"> Not Ok </option>
<option value="Not Our Student"> Not Our Student </option> <option value="Not Our Student"> Not Our Student </option>
@ -241,22 +253,45 @@
</div> </div>
</div> </div>
<div class="row"> <div class="row">
<div class="pull-left"> <div class="pull-right">
<button type="button" ladda="ldloading1.zoom_in" tabindex="2028" class="btn btn-wide btn-success" <button type="button" ladda="ldloading1.zoom_in" tabindex="2028" ng-disabled="statusUpdateFormIdDetails.Status == ''" class="btn btn-wide btn-success"
data-style="zoom-in" ng-click="addStatusUpdateDetails(p.ID, p.FormID)"> data-style="zoom-in" ng-click="addStatusUpdateDetails(p.ID, p.FormID)">
<i class='fa fa-spinner fa-spin' ng-if="editSaveButtonDisable" > </i> Save <i class='fa fa-spinner fa-spin' ng-if="editSaveButtonDisable" > </i> Save
</button> </button>
<button type="reset" class="btn btn-warning btn-wide" tabindex="2029" ng-click="cancel()"> <button type="reset" class="btn btn-warning btn-wide" tabindex="2029" ng-click="resetStatusUpdateForm()" ng-disabled="statusUpdateFormIdDetails.Status == ''">
Reset Reset
</button> </button>
</div> </div>
</div> </div>
</fieldset>
</div> </div>
<div ng-if="StatusListDetails != ''"> <div ng-if="StatusListDetails != ''">
<table class="table">
<thead style="background-color: cadetblue">
<th>FormID</th>
<th>Status</th>
<th>Comments</th>
<th>Updated On</th>
</thead>
<tbody ng-repeat="s in StatusListDetails">
<td>{{s.FormID}}</td>
<td>{{s.Status}}</td>
<td><span style="white-space:pre-wrap;">{{s.Comments}}</span></td>
<td>{{s.CreatedOn}}</td>
</tbody>
</table>
</div> </div>
<div ng-if="StatusListDetails == ''"> <div ng-if="StatusListDetails == ''">
<div>{{StatusListDetailsApiMessage}}</div> <div style="color: blue;" align="center">
<h3>{{StatusListDetailsApiMessage}}</h3>
</div>
</div>
</div>
<div class="row">
<div class="pull-right">
<button type="cancel" class="btn btn-warning btn-wide" tabindex="2029" ng-click="statusUpdate(-1)">
Cancel
</button>
</div> </div>
</div> </div>
</div> </div>
@ -271,19 +306,25 @@
</div> </div>
</tab> </tab>
<tab tabindex="2" active="tabactive2" ng-click="tabActive('tabactive2')" heading="Upload Details" id="uploadFiles"> <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">
<div class="container-fluid"> <div class="col-md-4 form-group">
<div class="row">
<!--<div class="col-md-4 form-group">
<label> <label>
University <span class="symbol required"></span> University <span class="symbol required"></span>
</label> </label>
<select class="form-control" tabindex="1" name="formUniversity" ng-model="uploadModel.university" required> <select class="form-control" tabindex="1" name="formUniversity" ng-model="formUploadUnivSelectID.univCode" required>
<option value="" selected>Select University</option> <option value="" selected>Select University</option>
<option ng-repeat="univ in universitySearchData" value="{{univ}}">{{univ.UniversityName}}</option> <option ng-repeat="univ in universityData" value="{{univ.UniversityID}}">{{univ.UniversityName}}</option>
</select> </select>
</div>--> </div>
<!--{{formUploadUnivSelectID}}-->
</div>
<tabset ng-if="formUploadUnivSelectID.univCode" 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-6 form-group" ng-if="showFile=='1'"> <div class="col-md-6 form-group" ng-if="showFile=='1'">
<fieldset> <fieldset>
<js-xls onread="readXlsxFormDetails" onerror="error"></js-xls> <js-xls onread="readXlsxFormDetails" onerror="error"></js-xls>
@ -411,8 +452,8 @@
<tbody dir-paginate="p in draftListDetails|orderBy:sortKey:reverse|filter:search:strict|itemsPerPage:10| filter:query as results"> <tbody dir-paginate="p in draftListDetails|orderBy:sortKey:reverse|filter:search:strict|itemsPerPage:10| filter:query as results">
<tr> <tr>
<td> <td>
<i class="ti-user" tooltip="Add To List" ng-click="addToList(p.ID);"></i> <i class="ti-receipt" tooltip="Add To List" ng-click="addToList(p.ID);"></i>
<i class="ti-user" tooltip="Add To List" ng-click="editList(p.ID, p);"></i> <i class="ti-pencil" tooltip="Edit Record" ng-click="editList(p.ID, p);"></i>
</td> </td>
<td>{{p.FormID}}</td> <td>{{p.FormID}}</td>
<td>{{p.FormType}}</td> <td>{{p.FormType}}</td>
@ -611,7 +652,7 @@
data-style="zoom-in" ng-click="updateFeeIDDetails(p.ID, leader)"> data-style="zoom-in" ng-click="updateFeeIDDetails(p.ID, leader)">
<i class='fa fa-spinner fa-spin' ng-if="editSaveButtonDisable"> </i> Save <i class='fa fa-spinner fa-spin' ng-if="editSaveButtonDisable"> </i> Save
</button> </button>
<button type="reset" class="btn btn-warning btn-wide" tabindex="2029" ng-click="cancel()"> <button type="reset" class="btn btn-warning btn-wide" tabindex="2029" ng-click="editList(-1, {})">
Cancel Cancel
</button> </button>
</div> </div>
@ -643,21 +684,22 @@
</tab> </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="col-md-4 form-group"> <div class="col-md-4 form-group">
<label> <label>
Upload For <span class="symbol required"></span> University <span class="symbol required"></span>
</label> </label>
<select class="form-control" name="uploadFor" tabindex="2" id="uploadFor" ng-model="getUnmatchedDetailsFor" ng-options="upload.id as upload.name for upload in uploadOptions" <select class="form-control" tabindex="1" name="formUniversity" ng-model="formIdMissMatchUnivSelectID.univCode" required>
required> <option value="" selected>Select University</option>
<option value=""> Select</option> <option ng-repeat="univ in universityData" value="{{univ.UniversityID}}">{{univ.UniversityName}}</option>
</select> </select>
</div> </div>
<!--{{formIdMissMatchUnivSelectID}}-->
</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="!formIdMissMatchUnivSelectID.univCode" ng-click="getUnmatchedRecord(getUnmatchedDetailsFor)">Get Record</button>
</div> </div>
<div class="container"> <div class="container">
<div ng-if="unMatchedLoadingStatus"> <div ng-if="unMatchedLoadingStatus">

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.4 KiB