student view changed
This commit is contained in:
parent
1e574a53d4
commit
51322b1508
@ -205,7 +205,7 @@ class Studentview_model extends CI_Model
|
||||
* created by kms
|
||||
* */
|
||||
public function getStudentMaterialDetails($studentID=null,$courseID=null){
|
||||
$this->db->select('SMS.SDate,SMS.Comments,CF.Sem_Year,PLD.ListName');
|
||||
$this->db->select('SMS.CourseID,SMS.SDate,SMS.Comments,CF.Sem_Year,PLD.ListName');
|
||||
$this->db->from(STUDY_MATERIAL_STATUS.' as SMS');
|
||||
$this->db->join(COURSE_FEES.' as CF','CF.ID = SMS.CourseID');
|
||||
$this->db->join(COURSE.' as CU', 'CU.CourseID = CF.CourseID');
|
||||
@ -252,7 +252,7 @@ class Studentview_model extends CI_Model
|
||||
* */
|
||||
public function getMarkcardDetails($studentID=null,$courseID=null){
|
||||
|
||||
$this->db->select('CS.CertificationNo,CS.CDate,CS.Comments,CS.CertificationType as CertificateName,CF.Sem_Year,PLD.ListName');
|
||||
$this->db->select('CS.CourseID,CS.CertificationNo,CS.CDate,CS.Comments,CS.CertificationType as CertificateName,CF.Sem_Year,PLD.ListName');
|
||||
$this->db->from(CERTIFICATION_STATUS.' as CS');
|
||||
$this->db->join(COURSE_FEES.' as CF','CF.ID = CS.CourseID');
|
||||
$this->db->join(COURSE.' as CU', 'CU.CourseID = CF.CourseID');
|
||||
@ -273,7 +273,7 @@ class Studentview_model extends CI_Model
|
||||
* get student application details
|
||||
* created by kms*/
|
||||
public function getStudentApplicationDetails($studentID=null,$courseID=null){
|
||||
$this->db->select('AS.AppDate,AS.Comments,CF.Sem_Year,PLD.ListName');
|
||||
$this->db->select('AS.CourseID,AS.AppDate,AS.Comments,CF.Sem_Year,PLD.ListName');
|
||||
$this->db->from(APPLICATION_STATUS.' as AS');
|
||||
$this->db->join(COURSE_FEES.' as CF','CF.ID = AS.CourseID');
|
||||
$this->db->join(COURSE.' as CU', 'CU.CourseID = CF.CourseID');
|
||||
|
||||
Loading…
Reference in New Issue
Block a user