Viewing file:      mo_rg_coursefee.php (3.16 KB)      -rwxr-xr-x Select action/file-type:    (+) |   (+) |   (+) | Code (+) | Session (+) |   (+) | SDB (+) |   (+) |   (+) |   (+) |   (+) |   (+) |
 
<?php
 include_once("da_rg_CourseFee.php");
 class Mo_rg_coursefee extends Da_rg_CourseFee {
 
     /**
      * หน้าที่ของฟังก์ชั่น คือ หาข้อมูลการกำหนดค่าใช้จ่ายตามหลักสูตรตามเงื่อนไข
      *
      * @access    public
      * @param    array condition โดยรูปแบบของ array จะอยู่ในรูป condition('key' => value) ไว้สำหรับระบุเงื่อนไขของคำสั่ง SELECT
      * @param    array order โดยรูปแบบของ array จะอยู่ในรูป condition('key' => value) ไว้สำหรับระบุเงื่อนไขการเรียงลำดับ ORDER BY
      * @param    array group โดยรูปแบบของ array จะอยู่ในรูป condition('key' => value) ไว้สำหรับระบุเงื่อนไขการจัดกลุ่ม GROUP BY
      * @return    query >= 1 rows : rg_CourseFee.*
      * @todo    use
      */
     public function qryCrf($condition="",$order="",$group="") {
         $where = $this->checkCondition($condition);
         $order = $this->checkOrderBy($order);
         $group = $this->checkGroupBy($group);
 
         $c1 = substr($where, 0, -3);
         $c2 = substr($order, 0, -1);
         $c3 = substr($group, 0, -1);
 
         $sql = "SELECT *
                     FROM $this->rg_dbname.rg_CourseFee
                     $c1
                     $c2
                     $c3";
         $query = $this->db->query($sql);
         return $query;
     }
 
     public function GetSumcrfLecFeeAmtCourseFee($condition="",$order="",$group="") {
         $where = $this->checkCondition($condition);
         $order = $this->checkOrderBy($order);
         $group = $this->checkGroupBy($group);
 
         $c1 = substr($where, 0, -3);
         $c2 = substr($order, 0, -1);
         $c3 = substr($group, 0, -1);
 
         $sql = "SELECT SUM(crfLecFeeAmt) as num
                     FROM $this->rg_dbname.rg_CourseFee
                     $c1
                     $c2
                     $c3";
         $query = $this->db->query($sql);
         if($query->num_rows()){
             return $query->row()->num;
         }else{
             return 0;
         }
     }
 
     public function GetSumcrfLabFeeAmtCourseFee($condition="",$order="",$group="") {
         $where = $this->checkCondition($condition);
         $order = $this->checkOrderBy($order);
         $group = $this->checkGroupBy($group);
 
         $c1 = substr($where, 0, -3);
         $c2 = substr($order, 0, -1);
         $c3 = substr($group, 0, -1);
 
         $sql = "SELECT SUM(crfLabFeeAmt) as num
                     FROM $this->rg_dbname.rg_CourseFee
                     $c1
                     $c2
                     $c3";
         $query = $this->db->query($sql);
         if($query->num_rows()){
             return $query->row()->num;
         }else{
             return 0;
         }
     }
 
     public function GetSumcrfKssFeeAmtCourseFee($condition="",$order="",$group="") {
         $where = $this->checkCondition($condition);
         $order = $this->checkOrderBy($order);
         $group = $this->checkGroupBy($group);
 
         $c1 = substr($where, 0, -3);
         $c2 = substr($order, 0, -1);
         $c3 = substr($group, 0, -1);
 
         $sql = "SELECT SUM(crfKssFeeAmt) as num
                     FROM $this->rg_dbname.rg_CourseFee
                     $c1
                     $c2
                     $c3";
         $query = $this->db->query($sql);
         if($query->num_rows()){
             return $query->row()->num;
         }else{
             return 0;
         }
     }
 
 
 }
 ?>
  |