71 lines
3.5 KiB
PHP
Executable File
71 lines
3.5 KiB
PHP
Executable File
<?php
|
|
session_start();
|
|
require_once("config.inc.php");
|
|
require_once($yaptc_inc . "functions.inc.php");
|
|
$yaptc_pagename = "Reports";
|
|
$yaptc_pageicon = '<i class="fa fa-newspaper-o"></i> ';
|
|
require_once($yaptc_inc . "header.inc.php");
|
|
if (getSessionStatus() == false):
|
|
killSession();
|
|
else: ?>
|
|
<!-- ********** BEGIN CONTENT ********** -->
|
|
|
|
<?php if ($session_user["0"]["usertype"] == "Administrator"): ?>
|
|
<h2 class="content-subhead"><i class="fa fa-history"></i> Historical Reports</h2>
|
|
<p>The drop-down below can be used to select pre-configured reports. Other reports are currently being written.</p>
|
|
<form class="pure-form pure-form-stacked" action="reports.php" method="post">
|
|
<fieldset>
|
|
<div class="pure-g">
|
|
<div class="pure-u-1 pure-u-md-1-2">
|
|
<select name="reporttype" class="pure-input-1-2">
|
|
<?php if (isset($_POST['reporttype'])): ?>
|
|
<option value="<?php echo $_POST['reporttype']; ?>" placeholder="Report Type"><?php echo $_POST['reporttype']; ?></option>
|
|
<option>----------</option>
|
|
<?php else: ?>
|
|
<option></option>
|
|
<?php endif; ?>
|
|
<option value="Hours per week per user">Hours per week per user</option>
|
|
<option value="Hours per month per user">Hours per month per user</option>
|
|
<option value="All Punches">All Punches</option>
|
|
</select>
|
|
</div>
|
|
<div class="pure-u-1 pure-u-md-1-2">
|
|
<button type="submit" class="pure-button button-success pure-input-1-2"><i class="fa fa-play-circle"></i></button>
|
|
</div>
|
|
</div>
|
|
</fieldset>
|
|
</form>
|
|
|
|
|
|
<?php if (isset($_POST['reporttype'])): ?>
|
|
<?php if ($_POST['reporttype'] == "Hours per week per user"): ?><table class="pure-table pure-table-striped">
|
|
<thead><tr><th>Year</th><th>Week#</th><th>Name</th><th>Hours</th></tr></thead>
|
|
<tbody><?php foreach (reportWeeklyByUser($yaptc_db) as $row): ?>
|
|
<tr><td><?php echo $row['g_year']; ?></td><td><?php echo $row['g_week']; ?></td><td><?php echo $row['lastname'] . ", " . $row['firstname']; ?></td><td><?php echo $row['punchhours']; ?></td></tr><?php endforeach; ?>
|
|
</tbody>
|
|
</table>
|
|
<?php endif; ?>
|
|
<?php if ($_POST['reporttype'] == "Hours per month per user"): ?><table class="pure-table pure-table-striped">
|
|
<thead><tr><th>Year</th><th>Month</th><th>Name</th><th>Hours</th></tr></thead>
|
|
<tbody><?php foreach (reportMonthlyByUser($yaptc_db) as $row): ?>
|
|
<tr><td><?php echo $row['g_year']; ?></td><td><?php echo $row['g_month']; ?></td><td><?php echo $row['lastname'] . ", " . $row['firstname']; ?></td><td><?php echo $row['punchhours']; ?></td></tr><?php endforeach; ?>
|
|
</tbody>
|
|
</table>
|
|
<?php endif; ?>
|
|
<?php if ($_POST['reporttype'] == "All Punches"): ?><table class="pure-table pure-table-striped">
|
|
<thead><tr><th>In</th><th>Out</th><th>Name</th><th>Hours</th><th>Flagged</th><th>Notes</th></tr></thead>
|
|
<tbody><?php foreach (listPunches($yaptc_db, "%") as $row): ?>
|
|
<tr><td><?php echo $row['intime']; ?></td><td><?php echo $row['outtime']; ?></td><td><?php echo $row['lastname'] . ", " . $row['firstname']; ?></td><td><?php echo $row['punchhours']; ?></td><td><?php echo $row['modified']; ?></td><td><?php echo $row['notes']; ?></td></tr><?php endforeach; ?>
|
|
</tbody>
|
|
</table>
|
|
<?php endif; ?>
|
|
<?php else: ?>
|
|
<p>No query to display. Please select from the dropdown above...</p>
|
|
<?php endif; ?>
|
|
<?php else: ?>
|
|
<h2 class="content-subhead">NOT AUTHORIZED!</h2>
|
|
<?php endif; ?>
|
|
|
|
<!-- ********** END CONTENT ********** -->
|
|
<?php endif; require_once($yaptc_inc . "footer.inc.php"); ?>
|