<?

function ShowSendtoPs22($deptId){
include_once(
"../../class/clsConnection.php");
include_once(
"../../class/clsDB.php");
include_once 
"../global.php";
include_once 
"../class/clsDocLineConfig.php";
include_once 
"../class/clsDepartment.php";
include_once 
"getPrefix.php";

$oC = new clsConnection($GLOBALS['DBHOST'], $GLOBALS['DBNAME_EOFFICE'], $GLOBALS['DBUSER_EOFFICE'], $GLOBALS['DBPASS_EOFFICE']);

$oDlc = new DocLineConfig($oC);
$oDlc2 = new DocLineConfig($oC);
$oDlc3 = new DocLineConfig($oC);
$oDP = new Department($oC);
$maxgroup=$oDP->SearchMaxDocGroup();

    
$oDlc3->SearchDlcID11($maxgroup,$deptId);
    if(
$oDlc3->GetRecord()==1){
        
$dlc_search=11;
        
$nextdlc_search=12;
    }else{
        
$dlc_search=5;
        
$nextdlc_search=6;
    }
    
$oDlc->SearchByDocGroupDlcID2($maxgroup,$deptId,$dlc_search);
    
//$oDlc->SearchByDocGroupDlcID($maxgroup,$deptId,$dlc_search);
    
if($oDlc->GetRecord()=="1"){
        
//    if($oDlc->DlcActive=="Y"){
                    
$pssend=$oDlc->DlcID;
                    return 
$pssend;
        
/*    }else{
                $oDlc2->SearchByDocGroupDlcID($maxgroup,$deptId,$nextdlc_search);
                if($oDlc2->GetRecord()=="1"){
                    if($oDlc2->DlcActive=="Y"){
                            $pssend=$oDlc2->DlcID;
                            return $pssend;
                    }else{
                        return "N";
                    }
                }else{
                    return "N";
                }
            }
        */
    /*}else{
            $oDlc2->SearchByDocGroupDlcID($maxgroup,$deptId,$nextdlc_search);
            if($oDlc2->GetRecord()=="1"){
                        $pssend=$oDlc2->DlcID;
                        return $pssend;
                }else{
                    return "N";
                }
            }else{
                return "N";
            }
            */
    
}

}
include_once(
"../../class/clsConnection.php");
include_once(
"../../class/clsDB.php");
include_once 
"../global.php";
include_once 
"../class/clsDocLineConfig.php";
include_once 
"../class/clsDepartment.php";
include_once 
"../class/clsPerson.php";
include_once 
"../link/functionshow.php";
include_once 
"../link/function.php";

$oC = new clsConnection($GLOBALS['DBHOST'], $GLOBALS['DBNAME_EOFFICE'], $GLOBALS['DBUSER_EOFFICE'], $GLOBALS['DBPASS_EOFFICE']);

$oDlc = new DocLineConfig($oC);
$oDlc4 = new DocLineConfig($oC);
$oDlc3 = new DocLineConfig($oC);
$oDP2 = new Department($oC);
$oDP = new Department($oC);
$oPS2 = new person($oC);

$oDP2->SearchBydeptDateDocGroup($oDP->SearchMaxDocGroup());
        while(
$oDP2->GetRecord()){ 
                
$pssend=ShowSendtoPs22($oDP2->deptId);
                if(
$pssend!=''){
                    echo 
$pssend.'-'.$oDP2->deptId.'-'.$oDP2->deptName;    
                    
$oDlc4->SearchByKey($pssend); $oDlc4->GetRecord(); 
                    
$oPS2->SearchByKey($oDlc4->personId); $oPS2->GetRecord();         
                    echo 
"&nbsp;[".GetPrefix($oPS2->prefixId).$oPS2->fName."&nbsp;".$oPS2->lName."]<br>"
                }
                        
        }
        
        
        
?>