Viewing file: printRepPerson.php (5.15 KB) -rw-r--r-- Select action/file-type: (+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
set_time_limit(0);
include_once "template.php";
include_once "../class/clsTable.php";
include_once "../class/clsDepartment.php";
include_once "../class/clsPerson.php";
include_once "../link/function.php";
include_once "../class/clsUmuser.php";
include_once "../class/clsadmin.php";
include_once "../class/clshire.php";
$oC = new clsConnection($GLOBALS['DBHOST'], $GLOBALS['DBNAME_EPERSON'], $GLOBALS['DBUSER_EPERSON'], $GLOBALS['DBPASS_EPERSON']);
$oUs = new clsConnection($GLOBALS['DBHOST'], $GLOBALS['DBNAME_UMS'], $GLOBALS['DBUSER_UMS'], $GLOBALS['DBPASS_UMS']);
$oDP = new Department($oC);
$oDP2 = new Department($oC);
$oDP3 = new Department($oC);
$oPS = new Person($oC);
$oUms= new umuser($oUs);
$oUms2= new umuser($oUs);
$oAd = new admin($oC);
$oHr = new hire($oC);
?>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=tis-620">
<link href="../source/style.css" rel="stylesheet" type="text/css">
</head>
<body>
<br>
<table width=730 align="center">
<tr><td height="150">
<fieldset>
<legend><font size="2" color="<?php echo $GLOBALS["COLOR_FONT_3"]; ?>"><a href="?mm=1">ข้อมูลบุคลากร</a>
<img src="../picture/ico3.gif" width="10" height="10" border="0" align="absmiddle">รายงานข้อมูลบุคลากรทุกหน่วยงาน
</font></legend>
<form name="ff" method="post" action="printRepPersonex.php">
<table border="0" width="100%"><tr><td align="right"><strong>Excel</strong> <a onClick='return showDocex();'><img src="../picture/ico_excel.gif" alt="พิมพ์ excel" border="0" style="cursor:pointer;"></a> </td></tr></table>
<table border="0" align="center" width="100%"><tr>
<td align="center">
<table width="99%" border="0" align="center" cellpadding="1" cellspacing="1" bgcolor="silver">
<tr><td colspan="8" align="center" bgcolor="<?php echo $GLOBALS["COLOR_BG_TD_9"];?>" height="24"><font size="2" color="<?php echo $GLOBALS["COLOR_FONT_1"];?>"><b>ข้อมูลบุคลากร</b></font></td></tr>
<tr align="center" bgcolor="<?php echo $GLOBALS["COLOR_BG_TD_9"];?>">
<td width="6%" align="center"><font size="2" color="<?php echo $GLOBALS["COLOR_FONT_1"];?>"><b>#</b></font></td>
<td width="7%" align="center"><font size="2" color="<?php echo $GLOBALS["COLOR_FONT_1"];?>"><b>
คำนำหน้า<br>ชื่อ</b></font></td>
<td width="16%" align="center"><font size="2" color="<?php echo $GLOBALS["COLOR_FONT_1"];?>"><b>ชื่อ</b></font></td>
<td width="18%" align="center"><font size="2" color="<?php echo $GLOBALS["COLOR_FONT_1"];?>"><b>นามสกุล</b></font></td>
<td width="19%" align="center"><font size="2" color="<?php echo $GLOBALS["COLOR_FONT_1"];?>"><b>ตำแหน่ง<br>ในการเรียงลำดับ</b></font></td>
<td width="19%" align="center"><font size="2" color="<?php echo $GLOBALS["COLOR_FONT_1"];?>"><b>ประเภทบุคลากร</b></font></td>
<td width="14%" align="center"><font size="2" color="<?php echo $GLOBALS["COLOR_FONT_1"];?>"><b>ชื่อผู้ใช้<br>
(Username)</b></font></td>
</tr>
<? $oDP->RSDeptByMaxdeptDate2();
while($oDP->GetRecord()){
?>
<tr><td colspan="7" bgcolor="<?php echo $GLOBALS["COLOR_BG_TD_12"]; ?>" height="22"> <strong><? echo $oDP->deptName; ?></strong></td></tr>
<?
$oPS->RSPersonf1dept($oDP->deptId);
$i=0;
while($oPS->GetRecord()){
$oUms->SearchByUsPsCode($oPS->personId);
$oUms->GetRecord();
if(($i%2) == 0)
echo "<tr bgcolor=\"".$GLOBALS["COLOR_BG_TD_5"]."\">";
else
echo "<tr bgcolor=\"".$GLOBALS["COLOR_BG_TD_11"]."\">";
?>
<td align="center" height="22"><? echo $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>
<td align="left"> <? $oAd->SearchByKey($oPS->adminId); if($oAd->GetRecord()==1){ echo $oAd->adminName; }?></td>
<td align="left"> <? $oHr->SearchByKey($oPS->hireId); if($oHr->GetRecord()==1){ echo $oHr->hireName; }?></td>
<td align="left"> <? echo $oUms->UsLogin; ?></td>
</tr>
<? $i++; }
if($i==0){
?>
<tr><td colspan="7" align="center" bgcolor="#FFFFFF" height="22"><font color="<?php echo $GLOBALS["COLOR_FONT_3"]; ?>" size="2">** ไม่มีข้อมูลบุคลากร **</font></td></tr>
<? }
$j++;
}
if($j==0){
?>
<tr><td colspan="7" align="center" bgcolor="#FFFFFF" height="22"><font color="<?php echo $GLOBALS["COLOR_FONT_3"]; ?>" size="2">** ไม่มีข้อมูลบุคลากร **</font></td></tr>
<? } ?>
</table>
</td></tr>
<tr><td> </td></tr>
<tr><td align="center"><input type="button" name="cancel" value="กลับสู่เมนูหลัก" onClick="location.href = '?mm=1'"></td></tr>
</table>
</form><br>
</fieldset>
<br>
<br>
<br><br> <br><br>
</td>
</tr>
</table>
</body>
</html>
<script language="javascript">
function showDocex(){
document.ff.submit();
}
</script>
|