Viewing file: printRepPersonex.php (4.1 KB) -rw-r--r-- Select action/file-type: (+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php set_time_limit(0); header('Content-type: application/xls'); header('Content-Disposition: attachment; filename="printPsInDeptex.xls"'); include_once("../../class/clsConnection.php"); include_once("../../class/clsDB.php"); include_once "../global.php"; include_once "../class/clsTable.php"; include_once "../class/clsDepartment.php"; include_once "../class/clsPerson.php"; include_once "../link/keyThai.php"; include_once "getPrefix.php"; include_once "functforRptEx.php"; $oC = new clsConnection($GLOBALS['DBHOST'], $GLOBALS['DBNAME_EOFFICE'], $GLOBALS['DBUSER_EOFFICE'], $GLOBALS['DBPASS_EOFFICE']);
$oDP = new Department($oC); $oDP2 = new Department($oC); $oDP3 = new Department($oC); $oPS = new person($oC); $oPS2 = new person($oC); $oPS3 = new person($oC); $oPS4 = new person($oC); $maxdate = $oDP3->MaxDate();
?> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=tis-620"> </head> <body> <br> <table width=730 align="center"> <tr> <td height="150"> <table width="100%" border="1" cellpadding="0" cellspacing="0" align="center" style="border-collapse:collapse" bordercolor="#000000" > <tr><td colspan="4" align="center" height="24"><font size="2" ><b>ข้อมูลบุคลากร</b></font></td></tr> <tr align="center" > <td width="5%" height="35" align="center"><font size="2" ><b>#</b></font></td> <td width="15%" align="center"><font size="2" ><b> คำนำหน้าชื่อ</b></font></td> <td width="25%" align="center"><font size="2" ><b>ชื่อ</b></font></td> <td width="30%" align="center"><font size="2" ><b>นามสกุล</b></font></td> </tr> <? $oDP->RSDeptByMaxdeptDate(); while($oDP->GetRecord()){ ?> <tr><td colspan="4" height="22"> <strong><? echo $oDP->deptName; ?></strong></td></tr> <? $oPS->RSPersonf1dept2($oDP->deptId); $i=0; while($oPS->GetRecord()){ ?><tr> <td align="center"><? echo a2th($i+1); ?></td> <td align="left"> <? echo GetPrefix($oPS->prefixId); ?></td> <td align="left"> <? echo $oPS->fName; ?></td> <td align="left"> <? echo $oPS->lName; ?></td> </tr> <? $i++; } if($i==0){ ?> <tr><td colspan="4" align="center" bgcolor="#FFFFFF" height="22"><font size="2">** ไม่มีข้อมูลบุคลากร **</font></td></tr> <? } $j++; } //-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- if($oPS3->SearchCountByNodeptNamedocGroup($oDP->MaxDate())!='0'){ ?> <tr><td bgcolor="#FFFFFF" colspan="4"> </td></tr> <tr><td colspan="4" height="22"> <strong>ไม่มีหน่วยงานที่สังกัด</strong></td></tr> <? $oPS2->SearchByNodeptNamedocGroup($oDP->MaxDate()); $z=0; while($oPS2->GetRecord()){ ?><tr> <td align="center" height="22"><? echo a2th($z+1); ?></td> <td align="left"> <? echo GetPrefix($oPS2->prefixId); ?></td> <td align="left"> <? echo $oPS2->fName; ?></td> <td align="left"> <? echo $oPS2->lName; ?></td> </tr> <? $z++; } if($z==0){ ?> <tr><td colspan="4" align="center" bgcolor="#FFFFFF" height="22"><font size="2">** ไม่มีข้อมูลบุคลากร **</font></td></tr> <? } } //------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ ?> <? if($j==0){ ?> <tr><td colspan="4" align="center" bgcolor="#FFFFFF" height="18"><font size="2">** ไม่มีข้อมูลบุคลากร **</font></td></tr> <? } ?> </table> </td></tr> <tr><td> </td></tr> <tr> <td><font size="2" color="<?php echo $GLOBALS["COLOR_FONT_4"];?>">วันที่พิมพ์ : <?php echo abbreDate2((date('Y')+543).'-'.date('m').'-'.date('d')).' '.a2th(date('H:i:s'));?></font></td> </tr> </table> </body> </html>
|