Viewing file: mo_rg_summarystudentstdy.php (3.34 KB) -rwxr-xr-x Select action/file-type: (+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
include_once("da_rg_SummaryStudentStdY.php");
class Mo_rg_summarystudentstdy extends Da_rg_SummaryStudentStdY {
function qrySmy($condition="",$order="") {
$where = $this->checkCondition($condition);
$order = $this->checkOrderBy($order);
$c1 = substr($where, 0, -3);
$c2 = substr($order, 0, -1);
$sql = "SELECT *
FROM $this->rg_dbname.rg_SummaryStudentStdY
$c1
$c2";
$query = $this->db->query($sql);
return $query;
}
/*
* create array of pk field and value for generate select list in view, must edit PK_FIELD and FIELD_NAME manually
* the first line of select list is '-----เลือก-----' by default.
* if you do not need the first list of select list is '-----เลือก-----', please pass $optional parameter to other values.
* you can delete this function if it not necessary.
*/
function get_options($optional='y') {
$qry = $this->get_all();
if ($optional=='y') $opt[''] = '-----เลือก-----';
foreach ($qry->result() as $row) {
$opt[$row->PK_FIELD] = $row->FIELD_NAME;
}
return $opt;
}
// add your functions here
function qrySmyByAcYNumSt($acY) {
$sql = "SELECT *
FROM $this->rg_dbname.rg_SummaryStudentStdY
INNER JOIN $this->rg_dbname.rg_Curriculum ON smyCurId = curId
INNER JOIN $this->rg_dbname.rg_StudyYear ON smySyId = syId
INNER JOIN $this->rg_dbname.rg_EntryType ON smyEtId = etId
WHERE smyAcY = ?
AND smyNumSt <> 0";
$query = $this->db->query($sql, array($acY));
return $query;
}
function qrySmyByAcYNumRepeatClassSt($acY) {
$sql = "SELECT *
FROM $this->rg_dbname.rg_SummaryStudentStdY
INNER JOIN $this->rg_dbname.rg_Curriculum ON smyCurId = curId
INNER JOIN $this->rg_dbname.rg_StudyYear ON smySyId = syId
INNER JOIN $this->rg_dbname.rg_EntryType ON smyEtId = etId
WHERE smyAcY = ?
AND smyNumRepeatClassSt <> 0";
$query = $this->db->query($sql, array($acY));
return $query;
}
function qrySmyByAcYNumOutSt($acY) {
$sql = "SELECT *
FROM $this->rg_dbname.rg_SummaryStudentStdY
INNER JOIN $this->rg_dbname.rg_Curriculum ON smyCurId = curId
INNER JOIN $this->rg_dbname.rg_StudyYear ON smySyId = syId
INNER JOIN $this->rg_dbname.rg_EntryType ON smyEtId = etId
WHERE smyAcY = ?
AND smyNumOutSt <> 0";
$query = $this->db->query($sql, array($acY));
return $query;
}
function getSumNumSt($condition="") {
$where = $this->checkCondition($condition);
$c1 = substr($where, 0, -3);
$sql = "SELECT SUM(smyNumSt) AS num
FROM $this->rg_dbname.rg_SummaryStudentStdY
$c1";
$query = $this->db->query($sql);
return $query->row()->num;
}
function getSumNumRepeatClassSt($condition="") {
$where = $this->checkCondition($condition);
$c1 = substr($where, 0, -3);
$sql = "SELECT SUM(smyNumRepeatClassSt) AS num
FROM $this->rg_dbname.rg_SummaryStudentStdY
$c1";
$query = $this->db->query($sql);
return $query->row()->num;
}
function getSumNumOutSt($condition="") {
$where = $this->checkCondition($condition);
$c1 = substr($where, 0, -3);
$sql = "SELECT SUM(smyNumOutSt) AS num
FROM $this->rg_dbname.rg_SummaryStudentStdY
$c1";
$query = $this->db->query($sql);
return $query->row()->num;
}
} // end class Mo_rg_summarystudentstdy
?>
|