This commit is contained in:
sriramv 2018-12-31 16:03:55 +05:30
commit 0466a49317
2 changed files with 28 additions and 8 deletions

View File

@ -202,16 +202,17 @@ class Login_model extends CI_Model
else if($loginDetails->ListCode ==SUPER_ADMIN) else if($loginDetails->ListCode ==SUPER_ADMIN)
{ {
// echo 'SUPER_ADMIN';die(); if ($password == $loginDetails->Password) {
/// echo 'SUPER_ADMIN';die();
$superadminpwd= md5($password);
$this->db->select('t1.MobileNumber, t1.ListCode, t1.ID, t2.BranchCode, t2.FinanceModuleAccess'); $this->db->select('t1.MobileNumber, t1.ListCode, t1.ID, t2.BranchCode, t2.FinanceModuleAccess');
$this->db->from('' . LOGIN . ' as t1'); $this->db->from('' . LOGIN . ' as t1');
$this->db->join('' . STAFF . ' as t2', 't1.StaffID = t2.StaffID', 'LEFT'); $this->db->join('' . STAFF . ' as t2', 't1.StaffID = t2.StaffID', 'LEFT');
$this->db->where('t1.MobileNumber', $mobile); $this->db->where('t1.MobileNumber', $mobile);
$this->db->where('t2.IsActive', 1); $this->db->where('t2.IsActive', 1);
$responseDetails = $this->db->get()->first_row(); $responseDetails = $this->db->get()->first_row();// print_r($this->db->last_query());die();
if($responseDetails) if($responseDetails)
{ {
if ($responseDetails->ListCode == SUPER_ADMIN) if ($responseDetails->ListCode == SUPER_ADMIN)
@ -252,6 +253,16 @@ class Login_model extends CI_Model
} }
else
{
$result['loginStatus'] = false;
$result['message'] = "Please Enter Valid Password !!";
}
}
} }
} }

View File

@ -1561,18 +1561,27 @@ if(count($qry)>0)
$Enrollment = $reqArr['EnrollmentID']; $Enrollment = $reqArr['EnrollmentID'];
$universityid = $reqArr['UniversityID'];
//echo $Enrollment ;
//print_r($reqArr);die();
if($Enrollment !='') if($Enrollment !='')
{ {
// echo 'in if';
$this->db->select('*'); $this->db->select('*');
$this->db->from('T_Student_CourseDetails'); $this->db->from('T_Student_CourseDetails');
$this->db->where('EnrollmentID',$Enrollment); $this->db->where('EnrollmentID',$Enrollment);
$this->db->where_not_in('StudentID', $reqArr['StudentID']); $this->db->where('UniversityID',$universityid);
$this->db->where_not_in('CourseID', $reqArr['CourseID']); // $this->db->where_not_in('StudentID', $reqArr['StudentID']);
// $this->db->where_not_in('CourseID', $reqArr['CourseID']);
$qry=$this->db->get(); $qry=$this->db->get();
$qry=$qry->result(); $qry=$qry->result();
// print_r($this->db->last_query());die();
//echo count($qry);die(); //echo count($qry);die();
if(count($qry)>0) if(count($qry)>0)