Viewing file:      mo_rg_debt.php (2 KB)      -rwxr-xr-x Select action/file-type:    (+) |   (+) |   (+) | Code (+) | Session (+) |   (+) | SDB (+) |   (+) |   (+) |   (+) |   (+) |   (+) |
 
<?php
 include_once("da_rg_Debt.php");
 class Mo_rg_debt extends Da_rg_Debt {
 
     /**
      * หน้าที่ของฟังก์ชั่น คือ หาข้อมูลหนี้สินตามเงื่อนไข
      *
      * @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_Debt.*
      * @todo    use
      */
     public function qryDbt($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_Debt
                     $c1
                     $c2
                     $c3";
         $query = $this->db->query($sql);
         return $query;
     }
 
     function getSumAmt($condition="") {
         $where = $this->checkCondition($condition);
 
         $c1 = substr($where, 0, -3);
 
         $sql = "SELECT IFNULL(SUM(dbtAmt), 0) AS num 
                     FROM $this->rg_dbname.rg_Debt
                     $c1";
         $query = $this->db->query($sql);
         return $query->row()->num;
     }
     
     function GetNextSeqByStIdAndAcYAndSe($stdId,$acY,$tmId){
         $sql = "SELECt MAX(dbtSeq) AS num
                 FROM $this->rg_dbname.rg_Debt
                 WHERE dbtStdId='$stdId'
                 AND dbtAcY='$acY'
                 AND dbtTmId='$tmId'; ";
         $query = $this->db->query($sql);
         return ($query->row()->num+1);
     }
 }
 ?>
  |