Viewing file: clsDocattatches.php (3.58 KB) -rw-r--r-- Select action/file-type: (+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
//--Class base_DocAttatches--------------------------
//--PK of base_DocAttatches ::
// 1. DaID
include_once "../link/keyThai.php";
class Docattatches extends clsDB{
var $result;
var $DaID;
var $DocID;
var $DaFileName;
var $DaUpFileName;
var $DaSeq;
var $DaAddNew;
var $DaAddNewSended;
function Docattatches(&$c){
$this->c=$c->c;
$this->DB=$c->db;
}
function AddNew(){
$this->status = 1;
}
function Edit(){
$this->status = 2;
}
function Save(){
if ($this->status==1){
$sql = "insert into DocAttatches values('".th2a($this->DaID)."', '".th2a($this->DocID)."', '".th2a($this->DaFileName)."', '".th2a($this->DaUpFileName)."', '".th2a($this->DaSeq)."', '".th2a($this->DaAddNew)."' , '".th2a($this->DaAddNewSended)."')";
}else {
$sql = "update DocAttatches set DocID='".th2a($this->DocID)."', DaFileName='".th2a($this->DaFileName)."', DaUpFileName='".th2a($this->DaUpFileName)."', DaSeq='".th2a($this->DaSeq)."', DaAddNew='".th2a($this->DaAddNew)."' , DaAddNewSended='".th2a($this->DaAddNewSended)."' where DaID='".th2a($this->DaID)."'";
}
return $this->Dml($sql);
}
function Delete(){
return $this->Dml("delete from DocAttatches where DaID='$this->DaID'");
}
function GetNextCode(){
$this->SetQuery("select max(DaID) as num from DocAttatches");
if ($result=$this->GetResult()) {
return $result['num']+1;
}
}
function RSDocAttatches(){
$this->SetQuery("select * from DocAttatches order by DaID");
}
function GetRecord(){
$numFields = $this->NumField();
$row = $this->GetResult();
if ($row){
for ($i=0; $i<$numFields; $i++){
eval("\$this->".mysql_field_name($this->rs, $i)."=\$row['".mysql_field_name($this->rs, $i)."'];");
$this->DaFileName=a2th($this->DaFileName);
}
return true;
}else{ // clear value of Member;
for ($i=0; $i<$numFields; $i++){
eval("\$this->".mysql_field_name($this->rs, $i)."='';");
}
return false;
}
}
function SearchByKey($xKey){
if ($this->SetQuery("select * from DocAttatches where DaID= '$xKey'")){
return 1;
}else {
return 0;
}
}
//****************** You can add new functions below **********************//
function SearchByDocID($xKey){
if ($this->SetQuery("select * from DocAttatches where DocID= '$xKey' and DaAddNewSended!='Y' ")){
return 1;
}else {
return 0;
}
}
function CountDocByDocID($xKey){
$this->SetQuery("select count(DaID) as num from DocAttatches where DocID='$xKey' and DaAddNewSended!='Y'");
if ($result=$this->GetResult()) {
return $result['num'];
}
}
function SearchMaxDaSeqDocID($xKey){
$this->SetQuery("select max(DaSeq) as num from DocAttatches where DocID='$xKey' and DaAddNewSended!='Y'");
if ($result=$this->GetResult()) {
return $result['num'];
}
}
function SearchByDocIDMoreDaSeq($xKey,$yKey){
if ($this->SetQuery("select * from DocAttatches where DocID= '$xKey' and DaSeq > '$yKey' and DaAddNewSended!='Y'")){
return 1;
}else {
return 0;
}
}
function SearchByDaSeqCount0($xKey){
$this->SetQuery("select count(DaID) as num from DocAttatches where DocID='$xKey' and DaSeq = '0' and DaAddNewSended!='Y'");
if ($result=$this->GetResult()) {
return $result['num'];
}
}
function CountDocByDocIDSended($xKey){
$this->SetQuery("select count(DaID) as num from DocAttatches where DocID='$xKey' and DaAddNewSended='Y'");
if ($result=$this->GetResult()) {
return $result['num'];
}
}
function SearchByDocIDSended($xKey){
if ($this->SetQuery("select * from DocAttatches where DocID='$xKey' and DaAddNewSended='Y' ")){
return 1;
}else {
return 0;
}
}
} //--End class base_DocAttatches--
?>
|