Viewing file: programTSR.php (2.32 KB) -rw-r--r-- Select action/file-type: (+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
function senddocSR($tsr_id){
include_once("../../class/clsConnection.php");
include_once("../../class/clsDB.php");
include_once "../global.php";
include_once "../class/clsSendReceive.php";
include_once "../link/function.php";
$oTsr = new sendreceive($oC);
if(sendTor1($tsr_id)=='mr'){
if(insertTSRs2($tsr_id)=='success'){
echo 'status s2 -----waiting download document-----<br>';
}else{
echo 'insertTSR s2 fail<br>';
}
}else{
echo 'send to r1 fail<br>';
}
}
function sendTor1($tsr_id){
include_once("../../class/clsConnection.php");
include_once("../../class/clsDB.php");
include_once "../global.php";
include_once "../class/clsSendReceive.php";
include_once "../class/clsCollegeDetail.php";
$oC = new clsConnection($GLOBALS['DBHOST'], $GLOBALS['DBNAME_EOFFICE'], $GLOBALS['DBUSER_EOFFICE'], $GLOBALS['DBPASS_EOFFICE']);
$oTsr = new sendreceive($oC);
$oCd = new collegedetail($oC);
echo '-------------sendTor1-----------------<br>';
$oTsr->SearchByKey($tsr_id);
$oTsr->GetRecord();
$tsr_fr_node_date=str_replace (' ','_',$oTsr->tsr_fr_node_date);
$oCd->SearchByKey($oTsr->tsr_to_node);
$oCd->GetRecord();
$msg='?fn=r1&tsr_fr_node='.$oTsr->tsr_fr_node.'&tsr_fr_node_date='.$tsr_fr_node_date.'&tsr_to_node='.$oTsr->tsr_to_node.'&tsr_docid='.$oTsr->tsr_docid.'&tsr_doc_url='.$oTsr->tsr_doc_url.'&tsr_doc_chksum='.$oTsr->tsr_doc_chksum.'&tsr_id_send='.$oTsr->tsr_id.'&tsr_docgroup='.$oTsr->tsr_docgroup.'&tsr_DocSubject='.$oTsr->tsr_DocSubject;
echo 'file_get_contents_to='.$path_send='http://'.$oCd->collegeHost.'/misbnc/'.'eoffice/admin/receiveTSR.php'.$msg;
echo '<br>';
$res=file_get_contents($path_send);
return $res;
}
function insertTSRs2($tsr_id){
include_once("../../class/clsConnection.php");
include_once("../../class/clsDB.php");
include_once "../global.php";
include_once "../class/clsSendReceive.php";
$oC = new clsConnection($GLOBALS['DBHOST'], $GLOBALS['DBNAME_EOFFICE'], $GLOBALS['DBUSER_EOFFICE'], $GLOBALS['DBPASS_EOFFICE']);
$oTsr = new sendreceive($oC);
$oTsr->SearchByKey($tsr_id);
$oTsr->GetRecord();
echo "<br>-------------update status = s2--------------<br>";
$oTsr->Edit();
echo '<b>tsr_status=</b>'.$oTsr->tsr_status='s2';
echo '<br>';
$oTsr->Save();
return 'success';
}
?>
|