<? session_start();
/*
* e-hris (Electonic-Human Resource Information System v 1.3.0 Alpha) Is an open source human resource information management system
* developed to automate all aspects of human resource management, with the dual benefits of reducing the workload of the HR department as well as increasing the efficiency of the department by standardising
* HR processes for any organization from small-enterprises to large scale organizations.
* Copyright (C) 2008 David Muturi
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
?>
<!DOCTYPE html
PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<link rel="stylesheet" type="text/css" href="css/employees.css" />
<link rel="stylesheet" type="text/css" href="css/main.css"/>
<title>Employees Leave Applications details report </title>
<style type="text/css">
<!--
.style4 {color: #FFFFFF}
.info { color: black; background-color: transparent; font-weight: normal; }
.warn { color: rgb(120,0,0); background-color: transparent; font-weight: normal; }
.error { color: red; background-color: transparent; font-weight: bold }
-->
</style>
<link rel="stylesheet" type="text/css" href="css/epoch_styles.css"/>
<script type="text/javascript" src="css/epoch_classes.js"></script>
<script type="text/javascript" src="js/formval.js"></script>
<script language="JavaScript" src="js/calendar1.js"></script><!-- -->
<script type="text/Javascript">
/*You can also place this code in a separate file and link to it like epoch_classes.js*/
var dp1_cal,dp2_cal
window.onload = function () {
dp1_cal = new Epoch('epoch_popup','popup',document.getElementById('datefrom'));
dp2_cal = new Epoch('epoch_popup','popup',document.getElementById('dateto'));
};
function validateOnSubmit() {
var elem;
var errs=0;
// execute all element validations in reverse order, so focus gets
// set to the first one in error.
if (!validatePresent(document.forms.addbankfrm.bank,'inf_bank')) errs += 1;
if (errs>1) alert('There are fields which need correction before submitting');
if (errs==1) alert('There is a field which needs correction before submitting');
return (errs==0);
}
</script>
<style type="text/css">
<!--
.style2 {font-size: x-small}
-->
</style>
</head>
<body bgcolor="#FFFFFF">
<?
include "includes/functions.php";
include "includes/config.php";
require_once "includes/db.php";
$d = new dbC();
$d->connect($db_host, $db_user, $db_pass, $db);
if (!empty($_GET["leaveid"]))
$id=$_GET["leaveid"];
if (!empty($_POST["leaveid"]))
$id=$_POST["leaveid"];
if (!empty($_POST["datefrom"]) && !empty($_POST["dateto"]))
{
$dispmsg = "<b>Employees Leave Types between ".$_POST["datefrom"]." and ".$_POST["dateto"]."</b>";
$datefrom=dateconvert($_POST["datefrom"],1);
$dateto=dateconvert($_POST["dateto"],1);
$sqlstr=" select *,tbl_empstatus.status from tbl_leaveapplic inner join tbl_leavetypes on tbl_leaveapplic.leavetype=tbl_leavetypes.id inner join prmember on prmember.memberno=empid_fk
inner join prdept on prmember.dept=prdept.deptcode where tbl_leavetypes.id = $id
inner join tbl_empstatus on tbl_empstatus.id=empstatus_fk
and datefrom >= '$datefrom' and dateto <= '$dateto'";
}
else
$sqlstr="select *,tbl_empstatus.status from tbl_leaveapplic inner join tbl_leavetypes on tbl_leaveapplic.leavetype=tbl_leavetypes.id inner join prmember on prmember.memberno=empid_fk
inner join prdept on prmember.dept=prdept.deptcode
inner join tbl_empstatus on tbl_empstatus.id=empstatus_fk
where tbl_leavetypes.id = $id ";
//echo $sqlstr;
if (!empty($dispmsg))
echo "$dispmsg";
?>
<table width="847" cellpadding="0" cellspacing="0" id="main">
<tr>
<td id="cell_top">
</td>
</tr>
<tr>
<td >
• <a href="index.php" onfocus="blurLink(this);">Home</a> • </td>
</tr>
<tr>
<td width="1646" bgcolor="#FFFFFF" >
<form name="totalsrepfrm" method="post" action="leaverepdet.php">
<table width="100%" border="0">
<tr>
<th width="20%"><div align="right">Application Date From</div></th>
<th width="20%">
<div class="highlight" id="inf_bank">
<input name="datefrom" type="text" id="datefrom" <? if (!empty($dob)) echo "value=$dob"; ?>>
</div>
</th>
<th width="16%"><div align="right">Application Date To</div></th>
<th width="44%"><input name="dateto" type="text" id="dateto" <? if (!empty($dob)) echo "value=$dob"; ?>></th>
</tr>
<tr>
<th>
<input type="hidden" name="action" <? if (!empty($action)) echo "value=$action"; ?>>
<input type="hidden" name="leaveid" <? if (!empty($id)) echo "value=$id"; ?>>
</th>
<th colspan="3"><div align="right">
<input type="reset" name="Reset" value="Reset">
<input type="submit" name="Submit" value="Submit" onclick="return validateOnSubmit()">
</div></th>
</tr>
</table>
</form>
</td>
</tr>
<tr>
<td bgcolor="#FFFFFF" ><table width="100%" border="0">
<tr>
<th width="2%">Employee </th>
<th width="2%">DeptName</th>
<th width="2%">Status</th>
<th width="5%"><div align="center">No. of days Applied </div></th>
<th width="5%"><div align="center">Date From </fdiv></th>
<th width="5%"><div align="center">Date To </div></th>
</tr>
<?
//count active staff for now
$result=$d->query($sqlstr) or die(mysql_error());
while ($row=$d->fetch_object($result))
{
echo "<tr>";
echo "<td>".$row->FullName."</td>";
echo "<td>".$row->DeptName."</td>";
echo "<td>".$row->status."</td>";
echo "<td align=right>".$row->numdays."</td>";
echo "<td>".dateconvert($row->datefrom,2)."</td>";
echo "<td>".dateconvert($row->dateto,2)."</td>";
echo "</td></tr>";
}
?>
</table></td>
</tr>
</table>
<?
$d->close();
?>
</body>
</html>