Viewing file: processFormatDocNo.php (1.36 KB) -rw-r--r-- Select action/file-type: (+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
include_once("../../class/clsConnection.php");
include_once("../../class/clsDB.php");
include_once "../global.php";
include_once "../class/clsTable.php";
include_once "../class/clsPerson.php";
include_once "../link/function.php";
include_once "../class/clsDocType.php";
include_once "../class/clsSysConfig.php";
$oC = new clsConnection($GLOBALS['DBHOST'], $GLOBALS['DBNAME_EOFFICE'], $GLOBALS['DBUSER_EOFFICE'], $GLOBALS['DBPASS_EOFFICE']);
$oDt = new doctype($oC);
$oSys = new sysConfig($oC);
$oDt->RSdoctype();
while($oDt->GetRecord()){
$oDt->Edit();
$oDt->DtID=$oDt->DtID;
//echo $oDt->DtID;
$oDt->DtPDtID=$oDt->DtPDtID;
$oDt->DtName=$oDt->DtName;
$oDt->DtP=$oDt->DtP;
$oDt->DtRunAll=$oDt->DtRunAll;
$oDt->sendNoPrefix=$sendNoPrefix[$oDt->DtID];
$oDt->sendNoSuffix=$sendNoSuffix[$oDt->DtID];
$oDt->forRegis=$oDt->forRegis;
$oDt->Save();
}
$oSys->RSsysConfig();
$oSys->GetRecord();
$oSys->Edit();
$oSys->sysYear=$oSys->sysYear;
$oSys->sysDocNo=$formatDoc;
$oSys->editRunningPsId=$oSys->editRunningPsId;
$oSys->OutputThai=$oSys->OutputThai;
$oSys->InputThai=$oSys->InputThai;
$oSys->filesizebyte=$oSys->filesizebyte;
$oSys->pbriHost=$oSys->pbriHost;
$oSys->Save();
?>
<script language="JavaScript">
parent.location.href ="formatDocNo.php?s=1";
</script>
|