Viewing file: clsbase_rg_CopyTimeTable.php (4.37 KB) -rw-r--r-- Select action/file-type: (+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
//--Class base_rg_CopyTimeTable--------------------------
//--PK of base_rg_CopyTimeTable ::
// 1. ctId
include_once "Db.php";
class base_rg_CopyTimeTable extends Db{
var $result;
var $status;
var $ctId;
var $ctClId;
var $ctRmId;
var $ctEpMepId;
var $ctEpSepId;
var $ctWdAcYWeekNo;
var $ctDyId;
var $ctFrPr;
var $ctToPr;
var $ctOfId;
var $ctSstId;
var $ctTtId;
var $ctLtId;
var $ctConfirm;
var $ctUpdateUserId;
var $ctUpdateDateTime;
function AddNew(){
//--ใช้เมธอดนี้เมื่อต้องการเพิ่มข้อมูลใหม่
//--โดยจะกำหนดสถานะของข้อมูลของอ๊อบเจ๊กให้เป็น 1
$this->status = 1;
}
function Edit(){
//--ใช้เมธอดนี้เมื่อต้องการปรับปรุงข้อมูล
//--โดยจะกำหนดสถานะของข้อมูลของอ๊อบเจ๊กให้เป็น 2
$this->status = 2;
}
function Save(){
//--ใช้เมธอดนี้เมื่อต้องการบันทึกข้อมูลในอ๊อบเจ๊กเข้าสู่ฐานข้อมูล
//--โดยจะตรวจสอบสถานะของข้อมูลว่าข้อมูลในอ๊อบเจ๊กเป็นข้อมูลใหม่หรือข้อมูลเดิม
//--1 เป็นข้อมูลใหม่ 2 เป็นข้อมูลเดิม
if ($this->status==1){
$this->ctId=$this->GetNextCode();
$sql = "insert into rg_TimeTableCopy values('$this->ctId', '$this->ctWdAcYWeekNo', '$this->ctConfirm', '$this->ctClId', $this->ctRmId, $this->ctEpMepId, $this->ctEpSepId, '$this->ctDyId', '$this->ctFrPr', '$this->ctToPr', '$this->ctOfId', '$this->ctSstId', $this->ctTtId, $this->ctLtId, '$this->ctUpdateDateTime', '$this->ctUpdateUserId')";
}else {
$sql = "update rg_TimeTableCopy set ttcCoId='$this->ctClId', ttcRmId=$this->ctRmId, ttcEtpMepId=$this->ctEpMepId, ttcEtpSepId=$this->ctEpSepId, ttcWdAcYWeekNo='$this->ctWdAcYWeekNo', ttcDyId='$this->ctDyId', ttcPrdFrTime='$this->ctFrPr', ttcPrdToTime='$this->ctToPr', ttcPrsId='$this->ctOfId', ttcStId='$this->ctSstId', ttcTtId=$this->ctTtId, ttcLtId=$this->ctLtId, ttcConfirm='$this->ctConfirm', ttcUpdateUserId='$this->ctUpdateUserId', ttcUpdateDate='$this->ctUpdateDateTime' where ttcId='$this->ctId'";
}
$this->SetQuery($sql);
}
function Delete(){
//--ใช้เมธอดนี้เพื่อลบข้อมูลเดิมในอ๊อบเจ๊ก
//--เป็นการลบข้อมูลทีละ 1 เรคอร์ด
//--ต้องเรียกเมธอดตามลำดับดังนี้ SearchByKey()-->GetRecord()-->Delete()
$this->SetQuery("delete from rg_TimeTableCopy where ttcId='$this->ctId'");
}
function GetNextCode(){
//--ใช้เมธอดนี้เพื่อหาค่าสูงสุดของฟิลด์ที่ใช้เป็นคีย์ของตาราง ในลักษณะ auto increment
//--ต้องเป็นฟิลด์ที่ไม่ได้กำหนดรหัสเองทางจอภาพ
$this->SetQuery("select max(ttcId) as num from rg_TimeTableCopy");
if ($result=$this->GetResult()) {
return $result['num']+1;
}
}
function RSrg_CopyTimeTable(){
//--เมธอดที่ขึ้นต้นด้วย RS (Result Set) มีความหมายว่าจะได้รับข้อมูลกลับมาจากการ select มากกว่า 1 เรคอร์ด
//--ปกติเมื่อเรียกใช้เมธอด RSxxxx จะต้องเรียกเมธอด GetRecord() ด้วยเสมอ
//--โดยสามารถเพิ่มเมธอดได้ตามต้องการ แต่ต้องขึ้นต้นด้วย RS
$this->SetQuery("select * from rg_CopyTimeTable order by ctId");
}
function GetRecord(){
//--เป็นเมธอดที่นำข้อมูลจาก ResultSet มากำหนดให้กับแอตทริบิวต์ของอ๊อบเจ็ก
//--เรียก GetRecord() หนึ่งครั้ง จะเลื่อนตัวชี้เรคอร์ดไปอีกหนึ่งเรคอร์ด
if ($this->result = $this->GetResult()) {
$this->ctId = $this->result['ttcId'];
$this->ctClId = $this->result['ttcCoId'];
$this->ctRmId = $this->result['ttcRmId'];
$this->ctEpMepId = $this->result['ttcEtpMepId'];
$this->ctEpSepId = $this->result['ttcEtpSepId'];
$this->ctWdAcYWeekNo = $this->result['ttcWdAcYWeekNo'];
$this->ctDyId = $this->result['ttcDyId'];
$this->ctFrPr = $this->result['ttcPrdFrTime'];
$this->ctToPr = $this->result['ttcPrdToTime'];
$this->ctOfId = $this->result['ttcPrsId'];
$this->ctSstId = $this->result['ttcStId'];
$this->ctTtId = $this->result['ttcTtId'];
$this->ctLtId = $this->result['ttcLtId'];
$this->ctConfirm = $this->result['ttcConfirm'];
$this->ctUpdateUserId = $this->result['ttcUpdateUserId'];
$this->ctUpdateDateTime = $this->result['ttcUpdateDate'];
return 1;
}else {
return 0;
}
}
function SearchByKey($xKey){
//--ใช้เมธอดนี้เพื่อค้นหาข้อมูลตาม PK ต้องระบุพารามิเตอร์ด้วย
//--และต้องตามด้วยเมธอด GetRecord() เสมอ
if ($this->SetQuery("select * from rg_TimeTableCopy where ttcId= '$xKey'")){
return 1;
}else {
return 0;
}
}
function NumRow(){
//--เป็นเมธอดที่คืนค่าจำนวนข้อมูลจากการ select โดยเมธอด RSxxxx
return $this->GetRowSelected();
}
function Destroy(){
//--เป็นเมธอดสำหรับปิดการติดต่อจากฐานข้อมูล
return $this->DestroyDb();
}
//****************** You can add new functions below **********************//
} //--End class base_rg_CopyTimeTable--
?>
|