fees status model changes done

This commit is contained in:
gandhimathi 2018-04-23 11:45:03 +05:30
parent 5857fd8903
commit 5e28da1799

View File

@ -1602,7 +1602,8 @@ class Fees_status_model extends CI_Model
$this->db->join(UNIVERSITY.' as US', 'US.UniversityID = SD.UniversityID');
$this->db->join(COURSE.' as CU', 'CU.UniversityID = US.UniversityID');
// $this->db->where('SD.IsActive','1');
$this->db->order_by('CU.CreatedOn','DESC');
// $this->db->order_by('CU.CreatedOn','DESC');
$this->db->order_by('SM.SessionID','DESC');
$this->db->where('CU.CourseID',$details['CourseID']);
// $this->db->group_by('SM.SessionName','DESC');
$sessionDetails = $this->db->get();