Viewing file:      mo_rg_persondepartment.php (2.59 KB)      -rwxr-xr-x Select action/file-type:    (+) |   (+) |   (+) | Code (+) | Session (+) |   (+) | SDB (+) |   (+) |   (+) |   (+) |   (+) |   (+) |
 
<?php
 include_once("da_rg_PersonDepartment.php");
 class Mo_rg_persondepartment extends Da_rg_PersonDepartment {
 
     /**
      * หน้าที่ของฟังก์ชั่น คือ หาข้อมูลการกำหนดบุคลากรในหน่วยงานที่สังกัดตามเงื่อนไข
      *
      * @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_PersonDepartment.*
      * @todo    use
      */
     public function qryPd($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_PersonDepartment
                     $c1
                     $c2
                     $c3";
         $query = $this->db->query($sql);
         return $query;
     }
 
     function qryPdJoinDpt($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_PersonDepartment 
                     INNER JOIN $this->rg_dbname.rg_Department ON pdDptId = dptId 
                     $c1
                     $c2";
         $query = $this->db->query($sql);
         return $query;
     }
 
     function getMaxSeq($condition="") {
         $where = $this->checkCondition($condition);
 
         $c1 = substr($where, 0, -3);
 
         $sql = "SELECT IFNULL(MAX(pdSeq), 0) AS num 
                     FROM $this->rg_dbname.rg_PersonDepartment 
                     $c1";
         $query = $this->db->query($sql);
         return $query->row()->num;
     }
 
     function getNextSeq($condition="") {
         $where = $this->checkCondition($condition);
 
         $c1 = substr($where, 0, -3);
 
         $sql = "SELECT IFNULL(MAX(pdSeq), 0) + 1 AS num 
                     FROM $this->rg_dbname.rg_PersonDepartment 
                     $c1";
         $query = $this->db->query($sql);
         return $query->row()->num;
     }
 }
 ?>
  |