<?php
//--Class departmentPE--------------------------
//--PK of departmenPEt ::
//    1. deptId

class departmentPE extends clsDB{

var 
$result;

var 
$deptId;
var 
$deptName;
var 
$deptDesc;
var 
$deptCode;
var 
$deptParent;
var 
$deptYear;
var 
$deptDate;
var 
$deptRef;

var 
$pbriId;
var 
$depttypeId;
var 
$deptParentId;
var 
$deptLevel;
var 
$deptGroup;


function 
departmentPE(&$c){
    
$this->c=$c->c;
    
$this->DB=$c->db;
}

function 
RSdepartment(){
    
$this->SetQuery("select * from Department order by deptId");
}

function 
GetRecord(){
    if (
$this->result $this->GetResult()) {
        
$this->deptId $this->result['deptId'];
        
$this->deptName $this->result['deptName'];
        
$this->deptDesc $this->result['deptDesc'];
        
$this->deptCode $this->result['deptCode'];
        
$this->deptParent $this->result['deptParent'];
        
$this->deptYear $this->result['deptYear'];
        
$this->deptDate $this->result['deptDate'];
        
$this->deptRef $this->result['deptRef'];
        
$this->pbriId $this->result['pbriId'];
        
        
$this->depttypeId $this->result['depttypeId'];
        
$this->deptParentId $this->result['deptParentId'];
        
$this->deptLevel $this->result['deptLevel'];
        
$this->deptGroup $this->result['deptGroup'];
                
        return 
1;
    }else {
        return 
0;
    }
}

function 
SearchByKey($xKey){
    if (
$this->SetQuery("select * from Department where deptId= '$xKey'")){ 
        return 
1;
    }else {
        return 
0;
    }
}
//****************** You can add new functions below **********************//
function RSdepartment2(){
    
$this->SetQuery("select * from Department where deptDate!='0000-00-00' order by deptId");
}
function 
MaxDate(){
    
$this->SetQuery("select max(deptDate) as num from Department");
    if (
$result=$this->GetResult()) {
        return 
$result['num'];
    }
}
function 
SearchDeptByMaxdeptDate(){
    
$maxdate $this->MaxDate();
    
$this->SetQuery("select * from Department where deptDate = '$maxdate'   order by deptId");
}
//--End class Department--

?>