Merge branch 'master' of https://bitbucket.org/venbainformationtechnology/apollodec
This commit is contained in:
commit
c05ad278e3
@ -40,8 +40,7 @@ class HallTickets_Controller extends REST_Controller {
|
||||
{
|
||||
$branchId = $this->post('branchId');
|
||||
$getUnivDetails = $this->Hallticket_model->getUniversityDetails($branchId);
|
||||
//print_r($getUnivDetails);
|
||||
//die();
|
||||
$getCenterDetails = $this->Hallticket_model->getCenterDetails($branchId);
|
||||
if ($getUnivDetails)
|
||||
{
|
||||
$getUnivDetails['status'] = REST_Controller::HTTP_OK;
|
||||
@ -301,6 +300,119 @@ class HallTickets_Controller extends REST_Controller {
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
|
||||
public function getIndividualCourseSemMappingDetails_post()
|
||||
{
|
||||
$universityID = $this->post('universityID');
|
||||
$courseID = $this->post('courseID');
|
||||
$branchId = $this->post('branchId');
|
||||
|
||||
$res = $this->Hallticket_model->getIndividualCourseSemMappingDetailsmodel($universityID,$courseID,$branchId);
|
||||
//print_r($res);
|
||||
if(count($res['mappedSubjects']) == 0)
|
||||
{
|
||||
$data['subjectStatus'] = false;
|
||||
$data['status'] = REST_Controller::HTTP_OK;
|
||||
$data['subjects'] = "";
|
||||
$this->response($data, REST_Controller::HTTP_OK);
|
||||
}
|
||||
else
|
||||
{
|
||||
$data['subjectStatus'] = true;
|
||||
$data['status'] = REST_Controller::HTTP_OK;
|
||||
$data['subjects'] = $res['mappedSubjects'];
|
||||
$data['overAllSubjects'] = $res['overAllSubjects'];
|
||||
$this->response($data, REST_Controller::HTTP_OK);
|
||||
}
|
||||
|
||||
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
||||
public function updateAllSemesterSubjectMapping_post()
|
||||
{
|
||||
$UID = $this->post('universityID');
|
||||
$courseIDS = $this->post('courseID');
|
||||
$requestedBy = $this->post('requestedBy');
|
||||
$branchId = $this->post('branchId');
|
||||
$semArray = $this->post('Semesters');
|
||||
$res = $this->Hallticket_model->updateAllSemesterSubjectMappingmodel($UID,$courseIDS,$requestedBy,$branchId,$semArray,$requestedBy);
|
||||
|
||||
if($res)
|
||||
{
|
||||
$data['status'] = REST_Controller::HTTP_OK;
|
||||
$data['txtStatus'] = true;
|
||||
$this->response($data, REST_Controller::HTTP_OK);
|
||||
}
|
||||
else
|
||||
{
|
||||
$this->response([
|
||||
'message' => 'Something Went Wrong!',
|
||||
'status' => REST_Controller::HTTP_NOT_FOUND
|
||||
], REST_Controller::HTTP_NOT_FOUND);
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
public function getStudentListForHallTicket_post()
|
||||
{
|
||||
$UID = $this->post('university');
|
||||
$courseID = $this->post('course');
|
||||
$batch = $this->post('batch');
|
||||
$requestedBy = $this->post('requestedBy');
|
||||
$branchId = $this->post('branchId');
|
||||
|
||||
$res = $this->Hallticket_model->getStudentListForHallTicketmodel($UID,$courseID,$batch,$requestedBy,$branchId);
|
||||
if(count($res) > 0)
|
||||
{
|
||||
$data['status'] = REST_Controller::HTTP_OK;
|
||||
$data['studentStatus'] = true;
|
||||
$data['studentDetails'] = $res;
|
||||
$this->response($data, REST_Controller::HTTP_OK);
|
||||
}
|
||||
else
|
||||
{
|
||||
$this->response([
|
||||
'message' => 'Something Went Wrong!',
|
||||
'status' => REST_Controller::HTTP_NOT_FOUND
|
||||
], REST_Controller::HTTP_NOT_FOUND);
|
||||
}
|
||||
}
|
||||
|
||||
public function getHallTicket_post()
|
||||
{
|
||||
$UID = $this->post('universityID');
|
||||
$courseID = $this->post('courseID');
|
||||
$batch = $this->post('batchName');
|
||||
$requestedBy = $this->post('requestedBy');
|
||||
$branchId = $this->post('branchId');
|
||||
$studentIDs = $this->post('StudentIDs');
|
||||
$centerName = $this->post('centerName');
|
||||
|
||||
$res['UniversityDetails'] = $this->Hallticket_model->getUniversityDetials($UID,$branchId);
|
||||
$res['studentDetails'] = $this->Hallticket_model->getStudentDetails($UID,$courseID,$branchId,$studentIDs);
|
||||
|
||||
|
||||
if(count($res['UniversityDetails']) != 0 || count($res['studentDetails']) != 0 )
|
||||
{
|
||||
$data['status'] = REST_Controller::HTTP_OK;
|
||||
$data['hallTicketStatus'] = true;
|
||||
$data['hallTicketData'] = $res;
|
||||
$data['semDataType'] = $res['studentDetails']['NUMTYPE'];
|
||||
$this->response($data, REST_Controller::HTTP_OK);
|
||||
}
|
||||
else
|
||||
{
|
||||
$this->response([
|
||||
'message' => 'Something Went Wrong!',
|
||||
'status' => REST_Controller::HTTP_NOT_FOUND
|
||||
], REST_Controller::HTTP_NOT_FOUND);
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
@ -422,9 +422,26 @@ class Fees_status_model extends CI_Model
|
||||
else{
|
||||
$storePaidDetails['BalanceAmount']=$storePaidDetails['PayableAmount'] - $paidBillAmount[0]->PaidBillAmount;
|
||||
}
|
||||
// sepearte for student waiver and referral bill list
|
||||
$this->db->select('ifnull(SUM((BillAmount)),0) as StudentWaiverRefAmount');
|
||||
$this->db->where('FeesId',$feeRow->FeesID);
|
||||
$this->db->where('IsActive','1');
|
||||
$this->db->where_in('ModeOfPayment',$serachArray);
|
||||
$studentWaiverRefAmount = $this->db->get(STUDENTS_FEES_PAID)->result();
|
||||
|
||||
$storePaidDetails['StudentWaiverRefAmount']=$studentWaiverRefAmount[0]->StudentWaiverRefAmount;
|
||||
|
||||
$this->db->select('ifnull(SUM((BillAmount)),0) as StudentPaidAmount');
|
||||
$this->db->where('FeesId',$feeRow->FeesID);
|
||||
$this->db->where('IsActive','1');
|
||||
$this->db->where('ModeOfPayment !=',WAIVER);
|
||||
$this->db->where('ModeOfPayment !=',REFERRAL);
|
||||
$studentPaidAmount = $this->db->get(STUDENTS_FEES_PAID)->result();
|
||||
|
||||
$storePaidDetails['StudentPaidAmount']=$studentPaidAmount[0]->StudentPaidAmount;
|
||||
|
||||
// for get paid bill details
|
||||
$this->db->select('ifnull(SUM((BillAmount)),0) as BillAmount,BillNO,BillDate,ModeOfPayment,ReceiptNo,BR.BranchName,BR.Address,BR.LogoPath,STF.Firstname as ReceivedBy');
|
||||
$this->db->select('ifnull(SUM((BillAmount)),0) as BillAmount,BillNO,BillDate,ModeOfPayment,ReceiptNo,BR.BranchName,BR.Address,BR.LogoPath,BR.FeesReceiptTitle,STF.Firstname as ReceivedBy,SFP.CommentsForStudent,SFP.InternalComments');
|
||||
$this->db->from(STUDENTS_FEES_PAID.' as SFP');
|
||||
$this->db->join(BRANCH.' as BR','BR.BranchCode = SFP.UpdatedBy','left');
|
||||
$this->db->join(LOGIN.' as LO','LO.ID = SFP.CreatedBy');
|
||||
|
||||
@ -15,7 +15,7 @@ class Hallticket_model extends CI_Model
|
||||
* get university details
|
||||
* created by velz
|
||||
* */
|
||||
public function getUniversityDetails($branchId)
|
||||
public function getUniversityDetails($branchId)
|
||||
{
|
||||
$this->db->select('UniversityID,UniversityName');
|
||||
$this->db->where('IsActive','1');
|
||||
@ -32,9 +32,11 @@ class Hallticket_model extends CI_Model
|
||||
$university_array['universityID'] = $row->UniversityID;
|
||||
$university_array['universityName'] = $row->UniversityName;
|
||||
$university_array['courseDetails']= $this->getCourseDetails($row->UniversityID,$branchId);
|
||||
$result_array[]=$university_array;
|
||||
$university_array['batchDetails']= $this->getBatchDetails($row->UniversityID,$branchId);
|
||||
$result_array[]=$university_array;
|
||||
}
|
||||
$result_university['univerSityDetails']= $result_array;
|
||||
$result_university['centerDetails'] = $this->getCenterDetails($branchId);
|
||||
}
|
||||
else {
|
||||
$result_university['universityStatus'] = false;
|
||||
@ -48,6 +50,17 @@ class Hallticket_model extends CI_Model
|
||||
return $result_university;
|
||||
|
||||
}
|
||||
|
||||
|
||||
public function getCenterDetails($branchId)
|
||||
{
|
||||
$this->db->select('CenterID,CenterCode,CenterName,CenterAddress');
|
||||
$this->db->from('T_CenterMaster');
|
||||
$this->db->where('IsActive',1);
|
||||
$this->db->where('BranchCode',$branchId);
|
||||
$res = $this->db->get();
|
||||
return $res->result();
|
||||
}
|
||||
/*
|
||||
* get university details and course details
|
||||
* for view shedule
|
||||
@ -418,17 +431,482 @@ class Hallticket_model extends CI_Model
|
||||
* */
|
||||
public function getAllSemesterSubjectsmodel($branchId)
|
||||
{
|
||||
$this->db->select('T_SemSubMap_Master.*,T_UniversityMaster.UniversityName,T_CourseMaster.CourseID,T_CourseMaster.CourseCode,T_CourseMaster.CourseName,T_SubjectMaster.SubjectID,T_SubjectMaster.SubjectCode,T_SubjectMaster.SubjectName');
|
||||
$this->db->select('T_SemSubMap_Master.UniversityID,T_UniversityMaster.UniversityName,T_CourseMaster.CourseID,T_CourseMaster.CourseCode,T_CourseMaster.CourseName');
|
||||
$this->db->from('T_SemSubMap_Master');
|
||||
$this->db->join('T_UniversityMaster','T_SemSubMap_Master.UniversityID=T_UniversityMaster.UniversityID') ;
|
||||
$this->db->join('T_CourseMaster','T_SemSubMap_Master.CourseID=T_CourseMaster.CourseID');
|
||||
$this->db->join('T_SemSubMap_Child','T_SemSubMap_Master.MapID=T_SemSubMap_Child.MapID','left');
|
||||
$this->db->join('T_SubjectMaster','T_SemSubMap_Child.SubjectID=T_SubjectMaster.SubjectID');
|
||||
$this->db->join('T_UniversityMaster','T_SemSubMap_Master.UniversityID=T_UniversityMaster.UniversityID and T_SemSubMap_Master.BranchCode=T_UniversityMaster.BranchCode') ;
|
||||
$this->db->join('T_CourseMaster','T_SemSubMap_Master.CourseID=T_CourseMaster.CourseID and T_SemSubMap_Master.BranchCode=T_CourseMaster.BranchCode');
|
||||
$this->db->group_by('T_SemSubMap_Master.UniversityID,T_SemSubMap_Master.CourseID');
|
||||
$res = $this->db->get();
|
||||
return $res->result();
|
||||
|
||||
|
||||
}
|
||||
|
||||
public function getIndividualCourseSemMappingDetailsmodel($universityID,$courseID,$branchId)
|
||||
{
|
||||
//FOR GET MAPPED SUBJECTS FOR $universityID,$courseID,$branchId
|
||||
$this->db->select('T_SemSubMap_Master.UniversityID,T_SemSubMap_Master.SemesterID,T_UniversityMaster.UniversityName,T_CourseMaster.CourseID,T_CourseMaster.CourseCode,T_CourseMaster.CourseName,T_SubjectMaster.SubjectID,T_SubjectMaster.SubjectCode,T_SubjectMaster.SubjectName');
|
||||
$this->db->from('T_SemSubMap_Master');
|
||||
$this->db->join('T_UniversityMaster','T_SemSubMap_Master.UniversityID=T_UniversityMaster.UniversityID and T_SemSubMap_Master.BranchCode=T_UniversityMaster.BranchCode','left') ;
|
||||
$this->db->join('T_CourseMaster','T_SemSubMap_Master.CourseID=T_CourseMaster.CourseID and T_SemSubMap_Master.BranchCode=T_CourseMaster.BranchCode','left');
|
||||
$this->db->join('T_SemSubMap_Child','T_SemSubMap_Master.MapID=T_SemSubMap_Child.MapID and T_SemSubMap_Child.isActive = 1','left');
|
||||
$this->db->join('T_SubjectMaster','T_SemSubMap_Child.SubjectID=T_SubjectMaster.SubjectID','left');
|
||||
$this->db->where('T_SemSubMap_Master.UniversityID',$universityID);
|
||||
$this->db->where('T_SemSubMap_Master.CourseID',$courseID);
|
||||
$this->db->where('T_SemSubMap_Master.BranchCode',$branchId);
|
||||
|
||||
//$this->db->group_by('T_SemSubMap_Master.UniversityID,T_SemSubMap_Master.CourseID');
|
||||
$res1 = $this->db->get();
|
||||
$res['mappedSubjects'] = $res1->result();
|
||||
|
||||
//FOR GET OVERALL SUBJECTS FOR $universityID,$courseID,$branchId
|
||||
$this->db->distinct();
|
||||
$this->db->select('T_SubjectMaster.SubjectID,T_SubjectMaster.SubjectCode,T_SubjectMaster.SubjectName');
|
||||
$this->db->from('T_SubjectMaster');
|
||||
$this->db->where('T_SubjectMaster.IsActive','1');
|
||||
$this->db->where('T_SubjectMaster.BranchCode',$branchId);
|
||||
$result = $this->db->get();
|
||||
$res['overAllSubjects'] = $result->result();
|
||||
|
||||
return $res;
|
||||
}
|
||||
|
||||
|
||||
/*
|
||||
* update All Semester Subject Mapping Info
|
||||
* @params university id,CourseID,requestedBy,branchId,semArray
|
||||
* created by velz
|
||||
* */
|
||||
public function updateAllSemesterSubjectMappingmodel($UID,$courseIDS,$requestedBy,$branchId,$semArray)
|
||||
{
|
||||
$sem1 = 0;$sem2=0;$sem3=0;$sem4=0;$sem5=0;$sem6=0;$sem7=0;$sem8 = 0;
|
||||
foreach($semArray as $key => $s)
|
||||
{
|
||||
if($key == 0)
|
||||
{
|
||||
$sem1 = $s;
|
||||
}
|
||||
if($key == 1)
|
||||
{
|
||||
$sem2 = $s;
|
||||
}if($key == 2)
|
||||
{
|
||||
$sem3 = $s;
|
||||
}if($key == 3)
|
||||
{
|
||||
$sem4 = $s;
|
||||
}if($key == 4)
|
||||
{
|
||||
$sem5 = $s;
|
||||
}if($key == 5)
|
||||
{
|
||||
$sem6 = $s;
|
||||
}
|
||||
if($key == 6)
|
||||
{
|
||||
$sem7 = $s;
|
||||
}
|
||||
if($key == 7)
|
||||
{
|
||||
$sem8 = $s;
|
||||
}
|
||||
}
|
||||
//Check If Exist or Not for UniversityID and CourseID's
|
||||
// echo 'FROM MODEL-'.$UID.'-'.$courseIDS.'-'.$branchId.'-'.$requestedBy;
|
||||
// print_r(array($sem1,$sem2,$sem3,$sem4,$sem5,$sem6,$sem7,$sem8));
|
||||
// die();
|
||||
|
||||
|
||||
|
||||
|
||||
for($i=1;$i<=8;$i++)
|
||||
{
|
||||
$this->db->trans_start();
|
||||
$this->db->select('MapID');
|
||||
$this->db->from('T_SemSubMap_Master');
|
||||
$this->db->where('BranchCode',$branchId);
|
||||
$this->db->where('UniversityID',$UID);
|
||||
$this->db->where('CourseID',$courseIDS);
|
||||
$this->db->where('SemesterID',$i);
|
||||
$isExist = $this->db->get();
|
||||
$this->db->trans_complete();
|
||||
$isExist = $isExist->result();
|
||||
if(!empty($isExist[0]->MapID))
|
||||
{
|
||||
|
||||
$MapID = $isExist[0]->MapID;
|
||||
|
||||
$this->db->trans_start();
|
||||
$this->db->set('UpdatedBy',$requestedBy);
|
||||
$this->db->where('MapID',$MapID);
|
||||
$this->db->update('T_SemSubMap_Master');
|
||||
$this->db->trans_complete();
|
||||
|
||||
|
||||
$this->db->trans_start();
|
||||
$this->db->set('isActive',0);
|
||||
$this->db->where('MapID',$MapID);
|
||||
$this->db->update('T_SemSubMap_Child');
|
||||
$this->db->trans_complete();
|
||||
|
||||
if($i == 1)
|
||||
{
|
||||
if(count($sem1) != 0){
|
||||
foreach($sem1 as $s)
|
||||
{
|
||||
$childArray = array('MapID'=>$MapID,'SubjectID'=>$s['SubjectID']);
|
||||
$this->db->trans_start();
|
||||
$this->db->insert('T_SemSubMap_Child',$childArray);
|
||||
$this->db->trans_complete();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
if($i == 2)
|
||||
{
|
||||
if(count($sem2) != 0){
|
||||
foreach($sem2 as $s)
|
||||
{
|
||||
$childArray = array('MapID'=>$MapID,'SubjectID'=>$s['SubjectID']);
|
||||
$this->db->trans_start();
|
||||
$this->db->insert('T_SemSubMap_Child',$childArray);
|
||||
$this->db->trans_complete();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
if($i == 3)
|
||||
{
|
||||
if(count($sem3) != 0){
|
||||
foreach($sem3 as $s)
|
||||
{
|
||||
$childArray = array('MapID'=>$MapID,'SubjectID'=>$s['SubjectID']);
|
||||
$this->db->trans_start();
|
||||
$this->db->insert('T_SemSubMap_Child',$childArray);
|
||||
$this->db->trans_complete();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
if($i == 4)
|
||||
{
|
||||
if(count($sem4) != 0){
|
||||
foreach($sem4 as $s)
|
||||
{
|
||||
$childArray = array('MapID'=>$MapID,'SubjectID'=>$s['SubjectID']);
|
||||
$this->db->trans_start();
|
||||
$this->db->insert('T_SemSubMap_Child',$childArray);
|
||||
$this->db->trans_complete();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
if($i == 5)
|
||||
{
|
||||
if(count($sem5) != 0){
|
||||
foreach($sem5 as $s)
|
||||
{
|
||||
$childArray = array('MapID'=>$MapID,'SubjectID'=>$s['SubjectID']);
|
||||
$this->db->trans_start();
|
||||
$this->db->insert('T_SemSubMap_Child',$childArray);
|
||||
$this->db->trans_complete();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
if($i == 6)
|
||||
{
|
||||
if(count($sem6) != 0){
|
||||
foreach($sem6 as $s)
|
||||
{
|
||||
$childArray = array('MapID'=>$MapID,'SubjectID'=>$s['SubjectID']);
|
||||
$this->db->trans_start();
|
||||
$this->db->insert('T_SemSubMap_Child',$childArray);
|
||||
$this->db->trans_complete();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
if($i == 7)
|
||||
{
|
||||
if(count($sem7) != 0){
|
||||
foreach($sem7 as $s)
|
||||
{
|
||||
$childArray = array('MapID'=>$MapID,'SubjectID'=>$s['SubjectID']);
|
||||
$this->db->trans_start();
|
||||
$this->db->insert('T_SemSubMap_Child',$childArray);
|
||||
$this->db->trans_complete();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
if($i == 8)
|
||||
{
|
||||
if(count($sem8) != 0){
|
||||
foreach($sem8 as $s)
|
||||
{
|
||||
$childArray = array('MapID'=>$MapID,'SubjectID'=>$s['SubjectID']);
|
||||
$this->db->trans_start();
|
||||
$this->db->insert('T_SemSubMap_Child',$childArray);
|
||||
$this->db->trans_complete();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
return true;
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
||||
public function getBatchDetails($UniversityID,$branchId)
|
||||
{
|
||||
$this->db->select('BatchID,BatchCode,BatchName');
|
||||
$this->db->from('T_BatchMaster');
|
||||
$this->db->where('UniversityID',$UniversityID);
|
||||
$this->db->where('IsActive',1);
|
||||
$this->db->where('BranchCode',$branchId);
|
||||
$res = $this->db->get();
|
||||
return $res->result();
|
||||
|
||||
}
|
||||
|
||||
public function getStudentListForHallTicketmodel($UID,$courseID,$batch,$requestedBy,$branchId)
|
||||
{
|
||||
$this->db->select('T_StudentDetails.StudentID,T_StudentDetails.MobileNumber,T_StudentDetails.Firstname,T_StudentDetails.Lastname,T_StudentDetails.EmailID,T_StudentDetails.ProfilePicPath,T_Student_CourseDetails.EnrollmentID');
|
||||
$this->db->from('T_Students_Fees_Status');
|
||||
$this->db->join('T_StudentDetails','T_Students_Fees_Status.StudentID=T_StudentDetails.StudentID and T_StudentDetails.IsActive = 1');
|
||||
$this->db->join('T_Student_CourseDetails','T_StudentDetails.StudentID = T_Student_CourseDetails.StudentID');
|
||||
$this->db->where('T_Students_Fees_Status.BatchCode',$batch['BatchCode']);
|
||||
$this->db->where('T_Students_Fees_Status.BranchCode',$branchId);
|
||||
$this->db->where('T_Students_Fees_Status.CourseID',$courseID['CourseID']);
|
||||
|
||||
$res = $this->db->get();
|
||||
$data = $res->result();
|
||||
$result_array = array();
|
||||
if(count($data) > 0)
|
||||
{
|
||||
$result_array = array();
|
||||
$prestu = "";
|
||||
foreach($data as $r)
|
||||
{
|
||||
if($prestu != $r->StudentID)
|
||||
{
|
||||
$studetdetails['StudentID'] = $r->StudentID;
|
||||
$studetdetails['MobileNumber'] = $r->MobileNumber;
|
||||
$studetdetails['Firstname'] = $r->Firstname;
|
||||
$studetdetails['Lastname'] = $r->Lastname;
|
||||
$studetdetails['EmailID'] = $r->EmailID;
|
||||
$studetdetails['ProfilePicPath'] = $r->ProfilePicPath;
|
||||
$studetdetails['EnrollmentID'] = $r->EnrollmentID;
|
||||
$studetdetails['FeeDetails'] = $this->getFeeSemesterDetails($r->StudentID,$batch['BatchCode'],$branchId,$courseID);
|
||||
$result_array[] = $studetdetails;
|
||||
$prestu = $r->StudentID;
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
return $result_array;
|
||||
|
||||
}
|
||||
|
||||
function getFeeSemesterDetails($stuid,$bcode,$branchId,$courseID)
|
||||
{
|
||||
$this->db->select("T_Course_Fees_Details.ID as FeesID,if(substr(substr(T_Course_Fees_Details.sem_Year,-4),1,3) = 'sem',substr(sem_Year,-1),if(substr(substr(T_Course_Fees_Details.sem_Year,-5),1,4) = 'year',substr(T_Course_Fees_Details.sem_Year,-1),false)) as SemID,if(substr(substr(T_Course_Fees_Details.sem_Year,-4),1,3) = 'sem','SEM',if(substr(substr(T_Course_Fees_Details.sem_Year,-5),1,4) = 'year','YEAR',false)) as SubType,T_Course_Fees_Details.Sem_Year,if(T_Course_Fees_Details.ProgramType = 'Y001','SEM',if(ProgramType = 'P001','REG',if(ProgramType = 'P002','LAT','FALSE'))) as Type");
|
||||
$this->db->from('T_Students_Fees_Status');
|
||||
//$this->db->join('T_StudentDetails','T_Students_Fees_Status.StudentID=T_StudentDetails.StudentID');
|
||||
$this->db->join('T_Course_Fees_Details','T_Students_Fees_Status.FeesType=T_Course_Fees_Details.ID');
|
||||
$this->db->where('T_Students_Fees_Status.BatchCode',$bcode);
|
||||
$this->db->where('T_Students_Fees_Status.BranchCode',$branchId);
|
||||
$this->db->where('T_Students_Fees_Status.CourseID',$courseID['CourseID']);
|
||||
$this->db->where('T_Students_Fees_Status.StudentID',$stuid);
|
||||
$res = $this->db->get();
|
||||
return $res->result();
|
||||
}
|
||||
|
||||
public function getUniversityDetials($UID,$branchId)
|
||||
{
|
||||
$this->db->select('UniversityID,UniversityName,MobileNumber,EmailID,Address');
|
||||
$this->db->from('T_UniversityMaster');
|
||||
$this->db->where('T_UniversityMaster.BranchCode',$branchId);
|
||||
$this->db->where('T_UniversityMaster.IsActive',1);
|
||||
$this->db->where('T_UniversityMaster.UniversityID',$UID['universityID']);
|
||||
$res = $this->db->get();
|
||||
return $res->result();
|
||||
|
||||
}
|
||||
|
||||
//Student Details with All Corresponding Semesters and Subjects
|
||||
public function getStudentDetails($UID,$courseID,$branchId,$studentIDs)
|
||||
{
|
||||
|
||||
foreach($studentIDs as $key1 => $id)
|
||||
{
|
||||
foreach($id['FeeDetails'] as $key2 => $ind)
|
||||
{
|
||||
// Get Normel Semester
|
||||
if(strcasecmp($ind['Type'],'sem') == 0 && strcasecmp($ind['SubType'],'sem') == 0 )
|
||||
{
|
||||
|
||||
$sql = "SELECT T_SemSubMap_Child.SubjectID,T_SubjectMaster.SubjectCode,T_SubjectMaster.SubjectName,T_SemSubMap_Master.SemesterID,T_Batch_Schedule_Child.ScheduleDate,T_Batch_Schedule_Child.FromTime,T_Batch_Schedule_Child.ToTime FROM T_SemSubMap_Child
|
||||
JOIN T_SubjectMaster on T_SemSubMap_Child.SubjectID = T_SubjectMaster.SubjectID
|
||||
JOIN T_SemSubMap_Master on T_SemSubMap_Child.MapID = T_SemSubMap_Master.MapID and T_SemSubMap_Master.UniversityID = ? and T_SemSubMap_Master.CourseID = ? and T_SemSubMap_Master.SemesterID = ? and T_SemSubMap_Master.BranchCode = ? and T_SemSubMap_Child.IsActive = 1
|
||||
JOIN T_Batch_Schedule_Master on T_Batch_Schedule_Master.UniversityID = ? and T_Batch_Schedule_Master.CourseID = ? and T_Batch_Schedule_Master.BranchCode = ?
|
||||
JOIN T_Batch_Schedule_Child on T_Batch_Schedule_Master.SchId = T_Batch_Schedule_Child.SchId and T_SemSubMap_Child.SubjectID = T_Batch_Schedule_Child.SubjectID and T_Batch_Schedule_Child.IsActive = 1
|
||||
order by T_SemSubMap_Master.SemesterID";
|
||||
$res = $this->db->query($sql,array($UID['universityID'],$courseID['CourseID'],$ind['SemID'],$branchId,$UID['universityID'],$courseID['CourseID'],$branchId));
|
||||
//$id['FeeDetails'][$key2] = $res->result();
|
||||
$in = $res->result();
|
||||
//array_push($id['FeeDetails'][$key2],$ind);
|
||||
array_splice($id['FeeDetails'][$key2],0,6,$in);
|
||||
$studentIDs['NUMTYPE'] = 'SEM';
|
||||
//return $ind;
|
||||
}
|
||||
else if(strcasecmp($ind['Type'],'sem') == 0 && strcasecmp($ind['SubType'],'year') == 0)
|
||||
{
|
||||
//GET Year Based Semester
|
||||
if($ind['SemID'] == 1)//First Year
|
||||
{
|
||||
for($i = 1;$i <= 2; $i++)
|
||||
{
|
||||
$sql = "SELECT T_SemSubMap_Child.SubjectID,T_SubjectMaster.SubjectCode,T_SubjectMaster.SubjectName,T_SemSubMap_Master.SemesterID,T_Batch_Schedule_Child.ScheduleDate,T_Batch_Schedule_Child.FromTime,T_Batch_Schedule_Child.ToTime FROM T_SemSubMap_Child
|
||||
JOIN T_SubjectMaster on T_SemSubMap_Child.SubjectID = T_SubjectMaster.SubjectID
|
||||
JOIN T_SemSubMap_Master on T_SemSubMap_Child.MapID = T_SemSubMap_Master.MapID and T_SemSubMap_Master.UniversityID = ? and T_SemSubMap_Master.CourseID = ? and T_SemSubMap_Master.SemesterID = ? and T_SemSubMap_Master.BranchCode = ? and T_SemSubMap_Child.IsActive = 1
|
||||
JOIN T_Batch_Schedule_Master on T_Batch_Schedule_Master.UniversityID = ? and T_Batch_Schedule_Master.CourseID = ? and T_Batch_Schedule_Master.BranchCode = ?
|
||||
JOIN T_Batch_Schedule_Child on T_Batch_Schedule_Master.SchId = T_Batch_Schedule_Child.SchId and T_SemSubMap_Child.SubjectID = T_Batch_Schedule_Child.SubjectID and T_Batch_Schedule_Child.IsActive = 1
|
||||
order by T_SemSubMap_Master.SemesterID";
|
||||
$res = $this->db->query($sql,array($UID['universityID'],$courseID['CourseID'],$i,$branchId,$UID['universityID'],$courseID['CourseID'],$branchId));
|
||||
//$id['FeeDetails'][$key2] = $res->result();
|
||||
$in1[] = $res->result();
|
||||
//array_push($id['FeeDetails'][$key2],$ind);
|
||||
|
||||
|
||||
}
|
||||
array_splice($id['FeeDetails'][$key2],0,6,$in1);
|
||||
|
||||
}
|
||||
|
||||
else if($ind['SemID'] == 2)//Sec Year
|
||||
{
|
||||
for($j = 3;$j <= 4; $j++)
|
||||
{
|
||||
$sql = "SELECT T_SemSubMap_Child.SubjectID,T_SubjectMaster.SubjectCode,T_SubjectMaster.SubjectName,T_SemSubMap_Master.SemesterID,T_Batch_Schedule_Child.ScheduleDate,T_Batch_Schedule_Child.FromTime,T_Batch_Schedule_Child.ToTime FROM T_SemSubMap_Child
|
||||
JOIN T_SubjectMaster on T_SemSubMap_Child.SubjectID = T_SubjectMaster.SubjectID
|
||||
JOIN T_SemSubMap_Master on T_SemSubMap_Child.MapID = T_SemSubMap_Master.MapID and T_SemSubMap_Master.UniversityID = ? and T_SemSubMap_Master.CourseID = ? and T_SemSubMap_Master.SemesterID = ? and T_SemSubMap_Master.BranchCode = ? and T_SemSubMap_Child.IsActive = 1
|
||||
JOIN T_Batch_Schedule_Master on T_Batch_Schedule_Master.UniversityID = ? and T_Batch_Schedule_Master.CourseID = ? and T_Batch_Schedule_Master.BranchCode = ?
|
||||
JOIN T_Batch_Schedule_Child on T_Batch_Schedule_Master.SchId = T_Batch_Schedule_Child.SchId and T_SemSubMap_Child.SubjectID = T_Batch_Schedule_Child.SubjectID and T_Batch_Schedule_Child.IsActive = 1
|
||||
order by T_SemSubMap_Master.SemesterID";
|
||||
$res = $this->db->query($sql,array($UID['universityID'],$courseID['CourseID'],$j,$branchId,$UID['universityID'],$courseID['CourseID'],$branchId));
|
||||
//$id['FeeDetails'][$key2] = $res->result();
|
||||
$in2[] = $res->result();
|
||||
//array_push($id['FeeDetails'][$key2],$ind);
|
||||
|
||||
|
||||
}
|
||||
array_splice($id['FeeDetails'][$key2],0,6,$in2);
|
||||
}
|
||||
|
||||
|
||||
else if($ind['SemID'] == 3)
|
||||
{
|
||||
for($k = 5;$k <= 6; $k++)
|
||||
{
|
||||
$sql = "SELECT T_SemSubMap_Child.SubjectID,T_SubjectMaster.SubjectCode,T_SubjectMaster.SubjectName,T_SemSubMap_Master.SemesterID,T_Batch_Schedule_Child.ScheduleDate,T_Batch_Schedule_Child.FromTime,T_Batch_Schedule_Child.ToTime FROM T_SemSubMap_Child
|
||||
JOIN T_SubjectMaster on T_SemSubMap_Child.SubjectID = T_SubjectMaster.SubjectID
|
||||
JOIN T_SemSubMap_Master on T_SemSubMap_Child.MapID = T_SemSubMap_Master.MapID and T_SemSubMap_Master.UniversityID = ? and T_SemSubMap_Master.CourseID = ? and T_SemSubMap_Master.SemesterID = ? and T_SemSubMap_Master.BranchCode = ? and T_SemSubMap_Child.IsActive = 1
|
||||
JOIN T_Batch_Schedule_Master on T_Batch_Schedule_Master.UniversityID = ? and T_Batch_Schedule_Master.CourseID = ? and T_Batch_Schedule_Master.BranchCode = ?
|
||||
JOIN T_Batch_Schedule_Child on T_Batch_Schedule_Master.SchId = T_Batch_Schedule_Child.SchId and T_SemSubMap_Child.SubjectID = T_Batch_Schedule_Child.SubjectID and T_Batch_Schedule_Child.IsActive = 1
|
||||
order by T_SemSubMap_Master.SemesterID";
|
||||
$res = $this->db->query($sql,array($UID['universityID'],$courseID['CourseID'],$k,$branchId,$UID['universityID'],$courseID['CourseID'],$branchId));
|
||||
//$id['FeeDetails'][$key2] = $res->result();
|
||||
$in3[] = $res->result();
|
||||
//array_push($id['FeeDetails'][$key2],$ind);
|
||||
|
||||
|
||||
}
|
||||
array_splice($id['FeeDetails'][$key2],0,6,$in3);
|
||||
}
|
||||
|
||||
|
||||
else if($ind['SemID'] == 4)
|
||||
{
|
||||
for($l = 7;$l <= 8; $l++)
|
||||
{
|
||||
$sql = "SELECT T_SemSubMap_Child.SubjectID,T_SubjectMaster.SubjectCode,T_SubjectMaster.SubjectName,T_SemSubMap_Master.SemesterID,T_Batch_Schedule_Child.ScheduleDate,T_Batch_Schedule_Child.FromTime,T_Batch_Schedule_Child.ToTime FROM T_SemSubMap_Child
|
||||
JOIN T_SubjectMaster on T_SemSubMap_Child.SubjectID = T_SubjectMaster.SubjectID
|
||||
JOIN T_SemSubMap_Master on T_SemSubMap_Child.MapID = T_SemSubMap_Master.MapID and T_SemSubMap_Master.UniversityID = ? and T_SemSubMap_Master.CourseID = ? and T_SemSubMap_Master.SemesterID = ? and T_SemSubMap_Master.BranchCode = ? and T_SemSubMap_Child.IsActive = 1
|
||||
JOIN T_Batch_Schedule_Master on T_Batch_Schedule_Master.UniversityID = ? and T_Batch_Schedule_Master.CourseID = ? and T_Batch_Schedule_Master.BranchCode = ?
|
||||
JOIN T_Batch_Schedule_Child on T_Batch_Schedule_Master.SchId = T_Batch_Schedule_Child.SchId and T_SemSubMap_Child.SubjectID = T_Batch_Schedule_Child.SubjectID and T_Batch_Schedule_Child.IsActive = 1
|
||||
order by T_SemSubMap_Master.SemesterID";
|
||||
$res = $this->db->query($sql,array($UID['universityID'],$courseID['CourseID'],$l,$branchId,$UID['universityID'],$courseID['CourseID'],$branchId));
|
||||
//$id['FeeDetails'][$key2] = $res->result();
|
||||
$in4[] = $res->result();
|
||||
//array_push($id['FeeDetails'][$key2],$ind);
|
||||
|
||||
|
||||
}
|
||||
array_splice($id['FeeDetails'][$key2],0,6,$in4);
|
||||
}
|
||||
|
||||
$studentIDs['NUMTYPE'] = 'YEAR';
|
||||
}
|
||||
else if(strcasecmp($ind['Type'],'REG') == 0)
|
||||
{
|
||||
//Get Regular(All Semester)
|
||||
for($m = 1;$m <= 8; $m++)
|
||||
{
|
||||
$sql = "SELECT T_SemSubMap_Child.SubjectID,T_SubjectMaster.SubjectCode,T_SubjectMaster.SubjectName,T_SemSubMap_Master.SemesterID,T_Batch_Schedule_Child.ScheduleDate,T_Batch_Schedule_Child.FromTime,T_Batch_Schedule_Child.ToTime FROM T_SemSubMap_Child
|
||||
JOIN T_SubjectMaster on T_SemSubMap_Child.SubjectID = T_SubjectMaster.SubjectID
|
||||
JOIN T_SemSubMap_Master on T_SemSubMap_Child.MapID = T_SemSubMap_Master.MapID and T_SemSubMap_Master.UniversityID = ? and T_SemSubMap_Master.CourseID = ? and T_SemSubMap_Master.SemesterID = ? and T_SemSubMap_Master.BranchCode = ? and T_SemSubMap_Child.IsActive = 1
|
||||
JOIN T_Batch_Schedule_Master on T_Batch_Schedule_Master.UniversityID = ? and T_Batch_Schedule_Master.CourseID = ? and T_Batch_Schedule_Master.BranchCode = ?
|
||||
JOIN T_Batch_Schedule_Child on T_Batch_Schedule_Master.SchId = T_Batch_Schedule_Child.SchId and T_SemSubMap_Child.SubjectID = T_Batch_Schedule_Child.SubjectID and T_Batch_Schedule_Child.IsActive = 1
|
||||
order by T_SemSubMap_Master.SemesterID";
|
||||
$res = $this->db->query($sql,array($UID['universityID'],$courseID['CourseID'],$m,$branchId,$UID['universityID'],$courseID['CourseID'],$branchId));
|
||||
//$id['FeeDetails'][$key2] = $res->result();
|
||||
$in[] = $res->result();
|
||||
//array_push($id['FeeDetails'][$key2],$ind);
|
||||
|
||||
|
||||
}
|
||||
array_splice($id['FeeDetails'][$key2],0,6,$in);
|
||||
$studentIDs['NUMTYPE'] = 'REG';
|
||||
}
|
||||
else if(strcasecmp($ind['Type'],'LAT') == 0)
|
||||
{
|
||||
//Get Later Entry all semester except 1 and 2
|
||||
for($i = 3;$i <= 8; $i++)
|
||||
{
|
||||
$sql = "SELECT T_SemSubMap_Child.SubjectID,T_SubjectMaster.SubjectCode,T_SubjectMaster.SubjectName,T_SemSubMap_Master.SemesterID,T_Batch_Schedule_Child.ScheduleDate,T_Batch_Schedule_Child.FromTime,T_Batch_Schedule_Child.ToTime FROM T_SemSubMap_Child
|
||||
JOIN T_SubjectMaster on T_SemSubMap_Child.SubjectID = T_SubjectMaster.SubjectID
|
||||
JOIN T_SemSubMap_Master on T_SemSubMap_Child.MapID = T_SemSubMap_Master.MapID and T_SemSubMap_Master.UniversityID = ? and T_SemSubMap_Master.CourseID = ? and T_SemSubMap_Master.SemesterID = ? and T_SemSubMap_Master.BranchCode = ? and T_SemSubMap_Child.IsActive = 1
|
||||
JOIN T_Batch_Schedule_Master on T_Batch_Schedule_Master.UniversityID = ? and T_Batch_Schedule_Master.CourseID = ? and T_Batch_Schedule_Master.BranchCode = ?
|
||||
JOIN T_Batch_Schedule_Child on T_Batch_Schedule_Master.SchId = T_Batch_Schedule_Child.SchId and T_SemSubMap_Child.SubjectID = T_Batch_Schedule_Child.SubjectID and T_Batch_Schedule_Child.IsActive = 1
|
||||
order by T_SemSubMap_Master.SemesterID";
|
||||
$res = $this->db->query($sql,array($UID['universityID'],$courseID['CourseID'],$i,$branchId,$UID['universityID'],$courseID['CourseID'],$branchId));
|
||||
//$id['FeeDetails'][$key2] = $res->result();
|
||||
$in[] = $res->result();
|
||||
//array_push($id['FeeDetails'][$key2],$ind);
|
||||
|
||||
|
||||
}
|
||||
array_splice($id['FeeDetails'][$key2],0,6,$in);
|
||||
$studentIDs['NUMTYPE'] = 'LAT';
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
array_splice($studentIDs[$key1]['FeeDetails'],0,10,$id['FeeDetails']) ;
|
||||
|
||||
}
|
||||
//print_r($studentIDs);//die();
|
||||
return $studentIDs;
|
||||
}
|
||||
|
||||
|
||||
|
||||
|
||||
public function AddBatchScheduleMaster($schedulemaster,$detailArray)
|
||||
|
||||
@ -300,6 +300,22 @@ class Studentview_model extends CI_Model
|
||||
else{
|
||||
$storePaidDetails['BalanceAmount']=$storePaidDetails['PayableAmount'] - $paidBillAmount[0]->PaidBillAmount;
|
||||
}
|
||||
// sepearte for student waiver and referral bill list
|
||||
$this->db->select('ifnull(SUM((BillAmount)),0) as StudentWaiverRefAmount');
|
||||
$this->db->where('FeesId',$feeRow->FeesID);
|
||||
$this->db->where_in('ModeOfPayment',$serachArray);
|
||||
$studentWaiverRefAmount = $this->db->get(STUDENTS_FEES_PAID)->result();
|
||||
|
||||
$storePaidDetails['StudentWaiverRefAmount']=$studentWaiverRefAmount[0]->StudentWaiverRefAmount;
|
||||
|
||||
$this->db->select('ifnull(SUM((BillAmount)),0) as StudentPaidAmount');
|
||||
$this->db->where('FeesId',$feeRow->FeesID);
|
||||
$this->db->where('ModeOfPayment !=',WAIVER);
|
||||
$this->db->where('ModeOfPayment !=',REFERRAL);
|
||||
$this->db->where('IsActive', '1');
|
||||
$studentPaidAmount = $this->db->get(STUDENTS_FEES_PAID)->result();
|
||||
|
||||
$storePaidDetails['StudentPaidAmount']=$studentPaidAmount[0]->StudentPaidAmount;
|
||||
$storePaidDetails['BatchName'] = "Not Applicable";
|
||||
$storePaidDetails['BatchDate'] = "";
|
||||
|
||||
|
||||
@ -2651,7 +2651,18 @@ a.text-light:hover {
|
||||
visibility: inherit;
|
||||
z-index: 20;*/
|
||||
}
|
||||
|
||||
.eduimgbg{
|
||||
background-repeat: no-repeat;
|
||||
background-image: url(../images/eduimg.png);
|
||||
background-size: cover;
|
||||
background-position: center top;
|
||||
|
||||
/*width: 100%;
|
||||
height: 100%;*/
|
||||
/*opacity: 0.9;
|
||||
visibility: inherit;
|
||||
z-index: 20;*/
|
||||
}
|
||||
.bg-black {
|
||||
background: #2C2F3B !important;
|
||||
color: #ffffff;
|
||||
|
||||
BIN
Apollo/assets/images/eduimg.png
Normal file
BIN
Apollo/assets/images/eduimg.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 280 KiB |
@ -62,7 +62,7 @@
|
||||
</thead>
|
||||
<tbody>
|
||||
<tr ng-repeat="sub in subjects">
|
||||
<td>0{{sub.SemesterID}}</td><td style="padding-left:3px;">{{sub.SubjectCode}}</td><td style="padding-left:3px;">{{sub.SubjectName}}</td><td >{{sub.ScheduleDate | date: "dd-MM-y" }}</td><td>{{sub.FromTime}} - {{sub.ToTime}}</td><td > </td>
|
||||
<td>0{{sub.SemesterID}}</td><td style="padding-left:3px;">{{sub.SubjectCode}}</td><td style="padding-left:3px;">{{sub.SubjectName}}</td><td >{{sub.ScheduleDate | date: "dd-MM-y" }}</td><td>{{sub.FromTime | date :"hh:mm a"}} - {{sub.ToTime | date :"hh:mm: a"}}</td><td > </td>
|
||||
</tr>
|
||||
</tbody>
|
||||
|
||||
@ -80,7 +80,7 @@
|
||||
</thead>
|
||||
<tbody>
|
||||
<tr ng-repeat="sub in sem">
|
||||
<td ng-if="$parent.$index == 0">0{{sub.SemesterID}}</td><td ng-if="$parent.$index == 1">0{{sub.SemesterID-1}}</td><td style="padding-left:3px;">{{sub.SubjectCode}}</td><td style="padding-left:3px;">{{sub.SubjectName}}</td><td >{{sub.ScheduleDate | date: "dd-MM-y" }}</td><td>{{sub.FromTime}} - {{sub.ToTime}}</td><td > </td>
|
||||
<td ng-if="$parent.$index == 0">0{{sub.SemesterID}}</td><td ng-if="$parent.$index == 1">0{{sub.SemesterID-1}}</td><td style="padding-left:3px;">{{sub.SubjectCode}}</td><td style="padding-left:3px;">{{sub.SubjectName}}</td><td >{{sub.ScheduleDate | date: "dd-MM-y" }}</td><td>{{sub.FromTime | date :"hh:mm: a"}} - {{sub.ToTime | date :"hh:mm: a"}}</td><td > </td>
|
||||
</tr>
|
||||
</tbody>
|
||||
|
||||
@ -97,7 +97,7 @@
|
||||
</thead>
|
||||
<tbody>
|
||||
<tr ng-repeat="sub in sem">
|
||||
<td ng-if="$parent.$index == 0">0{{sub.SemesterID-1}}</td><td ng-if="$parent.$index == 1">0{{sub.SemesterID-2}}</td><td style="padding-left:3px;">{{sub.SubjectCode}}</td><td style="padding-left:3px;">{{sub.SubjectName}}</td><td >{{sub.ScheduleDate | date: "dd-MM-y" }}</td><td>{{sub.FromTime}} - {{sub.ToTime}}</td><td > </td>
|
||||
<td ng-if="$parent.$index == 0">0{{sub.SemesterID-1}}</td><td ng-if="$parent.$index == 1">0{{sub.SemesterID-2}}</td><td style="padding-left:3px;">{{sub.SubjectCode}}</td><td style="padding-left:3px;">{{sub.SubjectName}}</td><td >{{sub.ScheduleDate | date: "dd-MM-y" }}</td><td>{{sub.FromTime | date :"hh:mm: a"}} - {{sub.ToTime | date :"hh:mm: a"}}</td><td > </td>
|
||||
</tr>
|
||||
</tbody>
|
||||
|
||||
@ -114,7 +114,7 @@
|
||||
</thead>
|
||||
<tbody>
|
||||
<tr ng-repeat="sub in sem">
|
||||
<td ng-if="$parent.$index == 0">0{{sub.SemesterID-2}}</td><td ng-if="$parent.$index == 1">0{{sub.SemesterID-3}}</td><td style="padding-left:3px;">{{sub.SubjectCode}}</td><td style="padding-left:3px;">{{sub.SubjectName}}</td><td >{{sub.ScheduleDate | date: "dd-MM-y" }}</td><td>{{sub.FromTime}} - {{sub.ToTime}}</td><td > </td>
|
||||
<td ng-if="$parent.$index == 0">0{{sub.SemesterID-2}}</td><td ng-if="$parent.$index == 1">0{{sub.SemesterID-3}}</td><td style="padding-left:3px;">{{sub.SubjectCode}}</td><td style="padding-left:3px;">{{sub.SubjectName}}</td><td >{{sub.ScheduleDate | date: "dd-MM-y" }}</td><td>{{sub.FromTime | date :"hh:mm: a"}} - {{sub.ToTime | date :"hh:mm: a"}}</td><td > </td>
|
||||
</tr>
|
||||
</tbody>
|
||||
|
||||
@ -131,7 +131,7 @@
|
||||
</thead>
|
||||
<tbody>
|
||||
<tr ng-repeat="sub in sem">
|
||||
<td ng-if="$parent.$index == 0">0{{sub.SemesterID-3}}</td><td ng-if="$parent.$index == 1">0{{sub.SemesterID-4}}</td><td style="padding-left:3px;">{{sub.SubjectCode}}</td><td style="padding-left:3px;">{{sub.SubjectName}}</td><td >{{sub.ScheduleDate | date: "dd-MM-y" }}</td><td>{{sub.FromTime}} - {{sub.ToTime}}</td><td > </td>
|
||||
<td ng-if="$parent.$index == 0">0{{sub.SemesterID-3}}</td><td ng-if="$parent.$index == 1">0{{sub.SemesterID-4}}</td><td style="padding-left:3px;">{{sub.SubjectCode}}</td><td style="padding-left:3px;">{{sub.SubjectName}}</td><td >{{sub.ScheduleDate | date: "dd-MM-y" }}</td><td>{{sub.FromTime | date :"hh:mm: a"}} - {{sub.ToTime | date :"hh:mm: a"}}</td><td > </td>
|
||||
</tr>
|
||||
</tbody>
|
||||
|
||||
@ -151,7 +151,7 @@
|
||||
</thead>
|
||||
<tbody>
|
||||
<tr ng-repeat="sub in subjects">
|
||||
<td>0{{sub.SemesterID}}</td><td style="padding-left:3px;">{{sub.SubjectCode}}</td><td style="padding-left:3px;">{{sub.SubjectName}}</td><td >{{sub.ScheduleDate | date: "dd-MM-y" }}</td><td>{{sub.FromTime}} - {{sub.ToTime}}</td><td > </td>
|
||||
<td>0{{sub.SemesterID}}</td><td style="padding-left:3px;">{{sub.SubjectCode}}</td><td style="padding-left:3px;">{{sub.SubjectName}}</td><td >{{sub.ScheduleDate | date: "dd-MM-y" }}</td><td>{{sub.FromTime | date :"hh:mm: a"}} - {{sub.ToTime | date :"hh:mm: a"}}</td><td > </td>
|
||||
</tr>
|
||||
</tbody>
|
||||
|
||||
|
||||
@ -8,11 +8,11 @@
|
||||
/*.carousel-indicators li {
|
||||
border:1px solid #000 !important;
|
||||
}*/
|
||||
.carousel-indicators
|
||||
/*.carousel-indicators
|
||||
{
|
||||
position:fixed !important;
|
||||
|
||||
}
|
||||
}*/
|
||||
.glyphicon-chevron-right:before{
|
||||
margin-left: -16px;
|
||||
}
|
||||
@ -20,14 +20,14 @@
|
||||
margin-top: 67px;
|
||||
margin-bottom: 90px;
|
||||
}
|
||||
.carousel-control.right{
|
||||
/*.carousel-control.right{
|
||||
position: fixed;
|
||||
right: 428px;
|
||||
}
|
||||
.carousel-control.left{
|
||||
position: fixed;
|
||||
left: 95px;
|
||||
}
|
||||
}*/
|
||||
.carousel-inner {
|
||||
position: inherit !important;
|
||||
/*overflow:visible !important;*/
|
||||
@ -52,15 +52,208 @@
|
||||
color: #fff;
|
||||
|
||||
}
|
||||
|
||||
/**********navbar css start*************/
|
||||
/* Add a black background color to the top navigation */
|
||||
.topnav {
|
||||
height: 80px;
|
||||
top:0;
|
||||
/*background-color: #333;*/
|
||||
overflow: hidden;
|
||||
width: 100%;
|
||||
max-width: 100%;
|
||||
position: fixed;
|
||||
z-index: 999;
|
||||
background: rgba(34,34,34,0.9);
|
||||
/*box-shadow: 0 10px 20px rgba(50,50,50,.95);*/
|
||||
}
|
||||
|
||||
/* Style the links inside the navigation bar */
|
||||
.topnav a {
|
||||
margin-right: 30px;
|
||||
float: right;
|
||||
display: block;
|
||||
color: #f2f2f2;
|
||||
text-align: center;
|
||||
padding: 28px 15px;
|
||||
text-decoration: none;
|
||||
font-size: 17px;
|
||||
}
|
||||
|
||||
/* Change the color of links on hover */
|
||||
.topnav a:hover {
|
||||
background-color: #ddd;
|
||||
color: black;
|
||||
}
|
||||
|
||||
/* Add an active class to highlight the current page */
|
||||
.active {
|
||||
background-color: rgba(31, 27, 24, 0.72);
|
||||
color: white;
|
||||
}
|
||||
|
||||
/* Hide the link that should open and close the topnav on small screens */
|
||||
.topnav .icon {
|
||||
display: none;
|
||||
}
|
||||
/*********** navbar css end************/
|
||||
/*
|
||||
.footer1 {
|
||||
background: #fff url("../images/footer/footer-bg.png") repeat scroll left top;
|
||||
padding-top: 40px;
|
||||
padding-right: 0;
|
||||
padding-bottom: 20px;
|
||||
padding-left: 0;
|
||||
}*/
|
||||
|
||||
|
||||
/*
|
||||
.title-widget {
|
||||
color: #898989;
|
||||
font-size: 20px;
|
||||
font-weight: 300;
|
||||
line-height: 1;
|
||||
position: relative;
|
||||
text-transform: uppercase;
|
||||
font-family: 'Fjalla One', sans-serif;
|
||||
margin-top: 0;
|
||||
margin-right: 0;
|
||||
margin-bottom: 25px;
|
||||
margin-left: 0;
|
||||
padding-left: 28px;
|
||||
}
|
||||
|
||||
.title-widget::before {
|
||||
background-color: #ea5644;
|
||||
content: "";
|
||||
height: 22px;
|
||||
left: 0px;
|
||||
position: absolute;
|
||||
top: -2px;
|
||||
width: 5px;
|
||||
}
|
||||
|
||||
|
||||
|
||||
.widget_nav_menu ul {
|
||||
list-style: outside none none;
|
||||
padding-left: 0;
|
||||
}
|
||||
|
||||
.widget_archive ul li {
|
||||
background-color: rgba(0, 0, 0, 0.3);
|
||||
content: "";
|
||||
height: 3px;
|
||||
left: 0;
|
||||
position: absolute;
|
||||
top: 7px;
|
||||
width: 3px;
|
||||
}
|
||||
|
||||
|
||||
.widget_nav_menu ul li {
|
||||
font-size: 13px;
|
||||
font-weight: 700;
|
||||
line-height: 20px;
|
||||
position: relative;
|
||||
text-transform: uppercase;
|
||||
border-bottom: 1px solid rgba(0, 0, 0, 0.05);
|
||||
margin-bottom: 7px;
|
||||
padding-bottom: 7px;
|
||||
width:95%;
|
||||
}
|
||||
|
||||
|
||||
|
||||
.title-median {
|
||||
color: #636363;
|
||||
font-size: 20px;
|
||||
line-height: 20px;
|
||||
margin: 0 0 15px;
|
||||
text-transform: uppercase;
|
||||
font-family: 'Fjalla One', sans-serif;
|
||||
}
|
||||
|
||||
.footerp p {font-family: 'Gudea', sans-serif; }
|
||||
|
||||
|
||||
#social:hover {
|
||||
-webkit-transform:scale(1.1);
|
||||
-moz-transform:scale(1.1);
|
||||
-o-transform:scale(1.1);
|
||||
}
|
||||
#social {
|
||||
-webkit-transform:scale(0.8);*/
|
||||
/* Browser Variations: */
|
||||
/*-moz-transform:scale(0.8);
|
||||
-o-transform:scale(0.8);
|
||||
-webkit-transition-duration: 0.5s;
|
||||
-moz-transition-duration: 0.5s;
|
||||
-o-transition-duration: 0.5s;
|
||||
} */
|
||||
/*
|
||||
Only Needed in Multi-Coloured Variation
|
||||
*/
|
||||
/*.social-fb:hover {
|
||||
color: #3B5998;
|
||||
}
|
||||
.social-tw:hover {
|
||||
color: #4099FF;
|
||||
}
|
||||
.social-gp:hover {
|
||||
color: #d34836;
|
||||
}
|
||||
.social-em:hover {
|
||||
color: #f39c12;
|
||||
}
|
||||
.nomargin { margin:0px; padding:0px;}*/
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
.footer-bottom {
|
||||
background-color: rgba(34,34,34,0.9);
|
||||
min-height: 30px;
|
||||
width: 100%;
|
||||
}
|
||||
.copyright {
|
||||
color: #fff;
|
||||
line-height: 30px;
|
||||
min-height: 30px;
|
||||
padding: 7px 0;
|
||||
}
|
||||
.design {
|
||||
color: #fff;
|
||||
line-height: 30px;
|
||||
min-height: 30px;
|
||||
padding: 7px 0;
|
||||
text-align: right;
|
||||
}
|
||||
.design a {
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
|
||||
|
||||
</style>
|
||||
|
||||
|
||||
<header>
|
||||
|
||||
<div class="topnav" id="myTopnav">
|
||||
|
||||
<a href="#contact">Contact</a>
|
||||
<a href="#about">About Us</a>
|
||||
<a href="#home" class="active">Home</a>
|
||||
<!--<a href="javascript:void(0);" class="icon" onclick="myFunction()">
|
||||
<i class="fa fa-bars"></i>
|
||||
</a>-->
|
||||
</div>
|
||||
</header>
|
||||
|
||||
<div ng-controller="loginCtrl">
|
||||
|
||||
|
||||
<div class="row">
|
||||
<div class="row" style="margin-top: 50px;" id="home">
|
||||
|
||||
|
||||
<!-- Start: View Of Announcement -->
|
||||
@ -149,11 +342,298 @@
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<!--abouts starts-->
|
||||
<section id="about" style="margin-left: 110px; margin-right: 110px;">
|
||||
|
||||
<div class="row" style="background-color:burlywood;">
|
||||
<div>
|
||||
<h1 style="text-align:center;font-weight: 400;margin-top: 40px;color: rgb(24, 24, 25);"><b style="border-bottom: 3px solid #8183cc;width:30px;">About Us</b></h1>
|
||||
</div>
|
||||
<div class="col-md-5">
|
||||
<div class="eduimgbg" style="height:500px;margin-top: 58px;"></div>
|
||||
</div>
|
||||
<div class="col-md-7" style="line-height:18px;padding:35px;color: white;
|
||||
text-align: justify;">
|
||||
<div>
|
||||
Education is the only way to abolish poverty in our nation.
|
||||
There are several educationists that have fought a good fight
|
||||
against illiteracy. Although the battle is still on, there are miles to go.
|
||||
Gone are the days when education was viewed as a service to the mankind.
|
||||
Today the <span style="color:black;">Distance Education in India</span>
|
||||
is one of the largest industries with a very high turnover.
|
||||
The changes in foreign policies of the country
|
||||
have also attracted several foreign investors to invest in India
|
||||
hoping for great returns. <br><br>
|
||||
</div>
|
||||
<div>
|
||||
Apollo is one among the few that consider higher education at low cost through
|
||||
<span style="color:black;">Distance Education</span> Wing still as a service rendered to mankind.
|
||||
The ISO 9001:2008 certified institution strives to provide quality higher
|
||||
education to the Indian students via <span style="color:black;">distance learning</span> mode. With its head
|
||||
quarters in Chennai, it is best institute for <span style="color:black;">Distance Education in India,</span>
|
||||
the institution offers various <span style="color:black;">B Tech Distance Education, M Tech Distance Education,
|
||||
Diploma Distance Education</span> and<span style="color:black;"> MBA Correspondence </span> and <span style="color:black;">MCA Correspondence courses </span>
|
||||
accredited by various universities in india with the view of empowering students
|
||||
with the best of knowledge and enhance their employability.<br><br>
|
||||
</div>
|
||||
<div>
|
||||
Apollo offered the disciplines <span style="color:black;"> B Tech and M Tech distance education</span>
|
||||
courses is wide and students can choose the one which best suits for them.
|
||||
Top engineering courses like Electronics and Communication Engineering,
|
||||
Electronics and Electrical Engineering, Computer Science Engineering,
|
||||
Information Technology, Mechanical Engineering,
|
||||
Civil Engineering and much more are offered at top distance education
|
||||
universities in India. The range of courses is even wider in case of
|
||||
<span style="color:black;"> M Tech Distance education</span>. Apart from regular courses, research
|
||||
course is also offered under part time education.<br>
|
||||
<br>
|
||||
</div>
|
||||
<div>
|
||||
Apollo was established in the year 1999,
|
||||
in order to provide high quality education under
|
||||
the <span style="color:black;">distance education / distance learning / correspondence</span> method to
|
||||
students. The college focuses on students that wish to pursue higher
|
||||
education but are unable to attend the regular colleges due to various
|
||||
reasons. One other lot that benefits from the institution is the employed
|
||||
ones that look forward to qualify themselves for promotions and gain additional
|
||||
knowledge over their domain.
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</section>
|
||||
<!--abouts ends-->
|
||||
|
||||
<!--Contact Us starts-->
|
||||
<section id="contact" style="margin:20px 95px 30px 95px;line-height:30px;">
|
||||
<div>
|
||||
<h1 style="text-align:center;font-weight: 400;margin-top: 40px;color: rgb(24, 24, 25);"><b style="border-bottom: 3px solid #8183cc;width:30px;">Contact Us</b></h1>
|
||||
</div>
|
||||
|
||||
<div class="row">
|
||||
<div class="col-md-4 col-md-offset-2">
|
||||
<div>
|
||||
<h4 style="font-weight: 400;margin-top: 40px;color: rgb(24, 24, 25);"><b style="border-bottom: 3px solid #8183cc;width:30px;">Anna Salai Branch</b></h4>
|
||||
</div>
|
||||
<span><i class="fa fa-location-arrow"></i> Centre Plaza, Second Floor,<br>
|
||||
Near Anna Statue in Mount Road<br>
|
||||
No.7, Anna Salai, Chennai - 600 002.</span><br>
|
||||
<span><i class="fa fa-mobile-phone"></i> 6936548452</span><br>
|
||||
<span><i class="fa fa-envelope"></i> apollo@gmail.com</span><br>
|
||||
<span><i class="fa fa-link"></i> http://apollo.com</span>
|
||||
</div>
|
||||
<div class="col-md-4 col-md-offset-2">
|
||||
<div>
|
||||
<h4 style="font-weight: 400;margin-top: 40px;color: rgb(24, 24, 25);"><b style="border-bottom: 3px solid #8183cc;width:30px;">Guindy Branch</b></h4>
|
||||
</div>
|
||||
<span><i class="fa fa-location-arrow"></i> Centre Plaza, Second Floor,<br>
|
||||
Near Guindy in Mount Road<br>
|
||||
No.7, Anna Salai, Chennai - 600 002.</span><br>
|
||||
<span><i class="fa fa-mobile-phone"></i> 6936548452</span><br>
|
||||
<span><i class="fa fa-envelope"></i> apollo@gmail.com</span><br>
|
||||
<span><i class="fa fa-link"></i> http://apollo.com</span>
|
||||
</div>
|
||||
</div>
|
||||
<div class="row" style="margin-top:10px;">
|
||||
<div class="col-md-4 col-md-offset-2">
|
||||
<div>
|
||||
<h4 style="font-weight: 400;margin-top: 40px;color: rgb(24, 24, 25);"><b style="border-bottom: 3px solid #8183cc;width:30px;">Saidapet Branch</b></h4>
|
||||
</div>
|
||||
<span><i class="fa fa-location-arrow"></i> Centre Plaza, Second Floor,<br>
|
||||
Near Saidapet in Mount Road<br>
|
||||
No.7, Anna Salai, Chennai - 600 002.</span><br>
|
||||
<span><i class="fa fa-mobile-phone"></i> 6936548452</span><br>
|
||||
<span><i class="fa fa-envelope"></i> apollo@gmail.com</span><br>
|
||||
<span><i class="fa fa-link"></i> http://apollo.com</span>
|
||||
</div>
|
||||
<div class="col-md-4 col-md-offset-2">
|
||||
<div>
|
||||
<h4 style="font-weight: 400;margin-top: 40px;color: rgb(24, 24, 25);"><b style="border-bottom: 3px solid #8183cc;width:30px;">Tambaram Branch</b></h4>
|
||||
</div>
|
||||
<span><i class="fa fa-location-arrow"></i> Centre Plaza, Second Floor,<br>
|
||||
Near Tambaram in Mount Road<br>
|
||||
No.7, Anna Salai, Chennai - 600 002.</span><br>
|
||||
<span><i class="fa fa-mobile-phone"></i> 6936548452</span><br>
|
||||
<span><i class="fa fa-envelope"></i> apollo@gmail.com</span><br>
|
||||
<span><i class="fa fa-link"></i> http://apollo.com</span>
|
||||
</div>
|
||||
</div>
|
||||
</section>
|
||||
<!--Contact Us ends-->
|
||||
|
||||
|
||||
<!--footer-->
|
||||
<!--<footer class="footer1">
|
||||
<div class="container">
|
||||
|
||||
<div class="row">-->
|
||||
<!-- widgets column left -->
|
||||
<!--<div class="col-lg-3 col-md-3">
|
||||
<ul class="list-unstyled clear-margins">
|
||||
|
||||
<li class="widget-container widget_nav_menu">
|
||||
|
||||
<h1 class="title-widget">Useful links</h1>
|
||||
|
||||
<ul>
|
||||
<li><a href="#"><i class="fa fa-angle-double-right"></i> About Us</a></li>
|
||||
<li><a href="#"><i class="fa fa-angle-double-right"></i> Contact Us</a></li>
|
||||
<li><a href="#"><i class="fa fa-angle-double-right"></i> Success Stories</a></li>
|
||||
<li><a href="#"><i class="fa fa-angle-double-right"></i> PG Courses</a></li>
|
||||
<li><a href="#"><i class="fa fa-angle-double-right"></i> Achiever's Batch</a></li>
|
||||
<li><a href="#"><i class="fa fa-angle-double-right"></i> Regular Batch</a></li>
|
||||
<li><a href="#"><i class="fa fa-angle-double-right"></i> Test & Discussion</a></li>
|
||||
<li><a href="#"><i class="fa fa-angle-double-right"></i> Fast Track T & D</a></li>
|
||||
</ul>
|
||||
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
|
||||
|
||||
</div>-->
|
||||
<!-- widgets column left end -->
|
||||
|
||||
|
||||
|
||||
<!-- widgets column left -->
|
||||
<!--<div class="col-lg-3 col-md-3">
|
||||
|
||||
<ul class="list-unstyled clear-margins">
|
||||
|
||||
<li class="widget-container widget_nav_menu">
|
||||
|
||||
<h1 class="title-widget">Useful links</h1>
|
||||
|
||||
<ul>
|
||||
<li><a href="#"><i class="fa fa-angle-double-right"></i> Test Series Schedule</a></li>
|
||||
<li><a href="#"><i class="fa fa-angle-double-right"></i> Postal Coaching</a></li>
|
||||
<li><a href="#"><i class="fa fa-angle-double-right"></i> PG Dr. Bhatia Books</a></li>
|
||||
<li><a href="#"><i class="fa fa-angle-double-right"></i> UG Courses</a></li>
|
||||
<li><a href="#"><i class="fa fa-angle-double-right"></i> Satellite Education</a></li>
|
||||
<li><a href="#"><i class="fa fa-angle-double-right"></i> Study Centres</a></li>
|
||||
<li><a href="#"><i class="fa fa-angle-double-right"></i> State P.G. Mocks</a></li>
|
||||
<li><a href="#" target="_blank"><i class="fa fa-angle-double-right"></i> Results</a></li>
|
||||
|
||||
</ul>
|
||||
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
|
||||
|
||||
</div>-->
|
||||
<!-- widgets column left end -->
|
||||
|
||||
|
||||
|
||||
<!-- widgets column left -->
|
||||
<!--<div class="col-lg-3 col-md-3">
|
||||
|
||||
<ul class="list-unstyled clear-margins">
|
||||
|
||||
<li class="widget-container widget_nav_menu">
|
||||
|
||||
<h1 class="title-widget">Useful links</h1>
|
||||
|
||||
<ul>
|
||||
|
||||
|
||||
<li><a href="#"><i class="fa fa-angle-double-right"></i> Enquiry Form</a></li>
|
||||
<li><a href="#"><i class="fa fa-angle-double-right"></i> Online Test Series</a></li>
|
||||
<li><a href="#"><i class="fa fa-angle-double-right"></i> Grand Tests Series</a></li>
|
||||
<li><a href="#"><i class="fa fa-angle-double-right"></i> Subject Wise Test Series</a></li>
|
||||
<li><a href="#"><i class="fa fa-angle-double-right"></i> Smart Book</a></li>
|
||||
<li><a href="#"><i class="fa fa-angle-double-right"></i> Test Centres</a></li>
|
||||
<li><a href="#"><i class="fa fa-angle-double-right"></i> Admission Form</a></li>
|
||||
<li><a href="#"><i class="fa fa-angle-double-right"></i> Computer Live Test</a></li>
|
||||
|
||||
</ul>
|
||||
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
|
||||
|
||||
</div>-->
|
||||
<!-- widgets column left end -->
|
||||
|
||||
|
||||
<!--widgets column center--> <!--<div class="col-lg-3 col-md-3">
|
||||
|
||||
|
||||
|
||||
<ul class="list-unstyled clear-margins">
|
||||
|
||||
<li class="widget-container widget_recent_news">
|
||||
|
||||
<h1 class="title-widget">Contact Detail </h1>
|
||||
|
||||
<div class="footerp">
|
||||
|
||||
<h2 class="title-median">Webenlance Pvt. Ltd.</h2>
|
||||
<p><b>Email id:</b> <a href="mailto:info@webenlance.com">info@webenlance.com</a></p>
|
||||
<p><b>Helpline Numbers </b>
|
||||
|
||||
<b style="color:#ffc106;">(8AM to 10PM):</b> +91-8130890090, +91-8130190010 </p>
|
||||
|
||||
<p><b>Corp Office / Postal Address</b></p>
|
||||
<p><b>Phone Numbers : </b>7042827160, </p>
|
||||
<p> 011-27568832, 9868387223</p>
|
||||
</div>
|
||||
|
||||
<div class="social-icons">
|
||||
|
||||
<ul class="nomargin">
|
||||
|
||||
<a href="https://www.facebook.com/bootsnipp"><i class="fa fa-facebook-square fa-3x social-fb" id="social"></i></a>
|
||||
<a href="https://twitter.com/bootsnipp"><i class="fa fa-twitter-square fa-3x social-tw" id="social"></i></a>
|
||||
<a href="https://plus.google.com/+Bootsnipp-page"><i class="fa fa-google-plus-square fa-3x social-gp" id="social"></i></a>
|
||||
<a href="mailto:bootsnipp@gmail.com"><i class="fa fa-envelope-square fa-3x social-em" id="social"></i></a>
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</footer>-->
|
||||
<!--header-->
|
||||
|
||||
<div class="footer-bottom">
|
||||
|
||||
<div class="container">
|
||||
|
||||
<div class="row">
|
||||
|
||||
<div class="col-xs-12 col-sm-6 col-md-6 col-lg-6">
|
||||
|
||||
<div class="copyright">
|
||||
|
||||
© 2018 VENBA INFORMATION TECHNOLOGY. All rights reserved
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
<!--<div class="col-xs-12 col-sm-6 col-md-6 col-lg-6">
|
||||
|
||||
<div class="design">
|
||||
|
||||
<a href="#">Franchisee </a> | <a target="_blank" href="http://www.webenlance.com">Web Design & Development by Webenlance</a>
|
||||
|
||||
</div>
|
||||
|
||||
</div>-->
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user