209 lines
10 KiB
PHP
209 lines
10 KiB
PHP
<?php
|
|
declare(strict_types=1);
|
|
require_once __DIR__ . '/db/config.php';
|
|
|
|
$tenant_id = 1;
|
|
|
|
// Handle Add Labour
|
|
if ($_SERVER['REQUEST_METHOD'] === 'POST' && isset($_POST['add_labour'])) {
|
|
$project_id = (int)($_POST['project_id'] ?? 0);
|
|
$employee_id = (int)($_POST['employee_id'] ?? 0);
|
|
$entry_date = $_POST['entry_date'] ?? date('Y-m-d');
|
|
$hours = (float)($_POST['hours'] ?? 0);
|
|
$labour_type_id = (int)($_POST['labour_type_id'] ?? 0);
|
|
$evidence_type_id = (int)($_POST['evidence_type_id'] ?? 0);
|
|
$notes = $_POST['notes'] ?? '';
|
|
|
|
if ($project_id && $employee_id && $hours > 0) {
|
|
$stmt = db()->prepare("INSERT INTO labour_entries (tenant_id, project_id, employee_id, entry_date, hours, labour_type_id, evidence_type_id, notes) VALUES (?, ?, ?, ?, ?, ?, ?, ?)");
|
|
$stmt->execute([$tenant_id, $project_id, $employee_id, $entry_date, $hours, $labour_type_id, $evidence_type_id, $notes]);
|
|
$labour_entry_id = (int)db()->lastInsertId();
|
|
|
|
// Handle File Uploads
|
|
if (!empty($_FILES['attachments']['name'][0])) {
|
|
foreach ($_FILES['attachments']['tmp_name'] as $key => $tmp_name) {
|
|
if ($_FILES['attachments']['error'][$key] === UPLOAD_ERR_OK) {
|
|
$file_name = $_FILES['attachments']['name'][$key];
|
|
$file_size = $_FILES['attachments']['size'][$key];
|
|
$mime_type = $_FILES['attachments']['type'][$key];
|
|
$file_ext = pathinfo($file_name, PATHINFO_EXTENSION);
|
|
$new_file_name = uniqid() . '.' . $file_ext;
|
|
$file_path = 'uploads/' . $new_file_name;
|
|
|
|
if (!is_dir('uploads')) mkdir('uploads', 0775, true);
|
|
if (move_uploaded_file($tmp_name, $file_path)) {
|
|
$stmt = db()->prepare("INSERT INTO attachments (tenant_id, entity_type, entity_id, file_name, file_path, file_size, mime_type, uploaded_by) VALUES (?, 'labour_entry', ?, ?, ?, ?, ?, 'John Manager')");
|
|
$stmt->execute([$tenant_id, $labour_entry_id, $file_name, $file_path, $file_size, $mime_type]);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
$stmt = db()->prepare("INSERT INTO activity_log (tenant_id, action, details) VALUES (?, ?, ?)");
|
|
$stmt->execute([$tenant_id, 'Labour Added', "Logged $hours hours for employee ID $employee_id"]);
|
|
|
|
header("Location: labour.php?success=1");
|
|
exit;
|
|
}
|
|
}
|
|
|
|
// Fetch Data
|
|
$labourEntries = db()->prepare("
|
|
SELECT le.*, p.name as project_name, e.name as employee_name, lt.name as labour_type, et.name as evidence_type
|
|
FROM labour_entries le
|
|
JOIN projects p ON le.project_id = p.id
|
|
JOIN employees e ON le.employee_id = e.id
|
|
LEFT JOIN labour_types lt ON le.labour_type_id = lt.id
|
|
LEFT JOIN evidence_types et ON le.evidence_type_id = et.id
|
|
WHERE le.tenant_id = ?
|
|
ORDER BY le.entry_date DESC, le.created_at DESC
|
|
");
|
|
$labourEntries->execute([$tenant_id]);
|
|
$labourList = $labourEntries->fetchAll();
|
|
|
|
$projects = db()->prepare("SELECT id, name FROM projects WHERE tenant_id = ? ORDER BY name");
|
|
$projects->execute([$tenant_id]);
|
|
$projectList = $projects->fetchAll();
|
|
|
|
$employees = db()->prepare("SELECT id, first_name, last_name FROM employees WHERE tenant_id = ? ORDER BY first_name, last_name");
|
|
$employees->execute([$tenant_id]);
|
|
$employeeList = $employees->fetchAll();
|
|
|
|
$labourTypes = db()->prepare("SELECT * FROM labour_types WHERE tenant_id = ? ORDER BY name");
|
|
$labourTypes->execute([$tenant_id]);
|
|
$labourTypeList = $labourTypes->fetchAll();
|
|
|
|
$evidenceTypes = db()->prepare("SELECT * FROM evidence_types WHERE tenant_id = ? ORDER BY name");
|
|
$evidenceTypes->execute([$tenant_id]);
|
|
$evidenceTypeList = $evidenceTypes->fetchAll();
|
|
|
|
$pageTitle = "SR&ED Manager - Labour Tracking";
|
|
include __DIR__ . '/includes/header.php';
|
|
?>
|
|
|
|
<div class="container-fluid py-4">
|
|
<div class="d-flex justify-content-between align-items-center mb-4">
|
|
<h2 class="fw-bold mb-0">Labour Tracking</h2>
|
|
<button class="btn btn-primary" data-bs-toggle="modal" data-bs-target="#addLabourModal">+ Add Labour Entry</button>
|
|
</div>
|
|
|
|
<?php if (isset($_GET['success'])): ?>
|
|
<div class="alert alert-success alert-dismissible fade show border-0 shadow-sm mb-4" role="alert">
|
|
Labour entry successfully saved.
|
|
<button type="button" class="btn-close" data-bs-dismiss="alert"></button>
|
|
</div>
|
|
<?php endif; ?>
|
|
|
|
<div class="card border-0 shadow-sm">
|
|
<div class="table-responsive">
|
|
<table class="table align-middle mb-0">
|
|
<thead class="bg-light">
|
|
<tr>
|
|
<th>Date</th>
|
|
<th>Employee</th>
|
|
<th>Project</th>
|
|
<th>Hours</th>
|
|
<th>Type / Evidence</th>
|
|
<th>Notes</th>
|
|
<th class="text-end">Actions</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<?php if (empty($labourList)): ?>
|
|
<tr><td colspan="7" class="text-center py-5 text-muted">No labour entries found.</td></tr>
|
|
<?php endif; ?>
|
|
<?php foreach ($labourList as $l): ?>
|
|
<tr>
|
|
<td class="text-muted"><?= $l['entry_date'] ?></td>
|
|
<td><strong><?= htmlspecialchars($l['employee_name']) ?></strong></td>
|
|
<td><?= htmlspecialchars($l['project_name']) ?></td>
|
|
<td><span class="badge bg-light text-primary border"><?= number_format((float)$l['hours'], 2) ?> h</span></td>
|
|
<td>
|
|
<div class="small fw-bold"><?= htmlspecialchars($l['labour_type'] ?? 'N/A') ?></div>
|
|
<div class="extra-small text-muted"><?= htmlspecialchars($l['evidence_type'] ?? 'N/A') ?></div>
|
|
</td>
|
|
<td class="small text-muted"><?= htmlspecialchars($l['notes'] ?? '') ?></td>
|
|
<td class="text-end">
|
|
<button class="btn btn-sm btn-outline-secondary">Details</button>
|
|
</td>
|
|
</tr>
|
|
<?php endforeach; ?>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- Modal -->
|
|
<div class="modal fade" id="addLabourModal" tabindex="-1">
|
|
<div class="modal-dialog modal-lg modal-dialog-centered">
|
|
<div class="modal-content border-0 shadow">
|
|
<div class="modal-header">
|
|
<h5 class="modal-title fw-bold">Add Labour Entry</h5>
|
|
<button type="button" class="btn-close" data-bs-dismiss="modal"></button>
|
|
</div>
|
|
<form method="POST" enctype="multipart/form-data">
|
|
<div class="modal-body">
|
|
<div class="row">
|
|
<div class="col-md-6 mb-3">
|
|
<label class="form-label small fw-bold">Project</label>
|
|
<select name="project_id" class="form-select" required>
|
|
<option value="">Select Project...</option>
|
|
<?php foreach ($projectList as $p): ?>
|
|
<option value="<?= $p['id'] ?>"><?= htmlspecialchars($p['name']) ?></option>
|
|
<?php endforeach; ?>
|
|
</select>
|
|
</div>
|
|
<div class="col-md-6 mb-3">
|
|
<label class="form-label small fw-bold">Employee</label>
|
|
<select name="employee_id" class="form-select" required>
|
|
<option value="">Select Employee...</option>
|
|
<?php foreach ($employeeList as $e): ?>
|
|
<option value="<?= $e['id'] ?>"><?= htmlspecialchars($e['first_name'] . ' ' . $e['last_name']) ?></option>
|
|
<?php endforeach; ?>
|
|
</select>
|
|
</div>
|
|
<div class="col-md-6 mb-3">
|
|
<label class="form-label small fw-bold">Date</label>
|
|
<input type="date" name="entry_date" class="form-control" value="<?= date('Y-m-d') ?>" required>
|
|
</div>
|
|
<div class="col-md-6 mb-3">
|
|
<label class="form-label small fw-bold">Hours</label>
|
|
<input type="number" name="hours" class="form-control" step="0.25" min="0" required>
|
|
</div>
|
|
<div class="col-md-6 mb-3">
|
|
<label class="form-label small fw-bold">Type of Labour</label>
|
|
<select name="labour_type_id" class="form-select">
|
|
<?php foreach ($labourTypeList as $lt): ?>
|
|
<option value="<?= $lt['id'] ?>"><?= htmlspecialchars($lt['name']) ?></option>
|
|
<?php endforeach; ?>
|
|
</select>
|
|
</div>
|
|
<div class="col-md-6 mb-3">
|
|
<label class="form-label small fw-bold">Objective Evidence</label>
|
|
<select name="evidence_type_id" class="form-select">
|
|
<?php foreach ($evidenceTypeList as $et): ?>
|
|
<option value="<?= $et['id'] ?>"><?= htmlspecialchars($et['name']) ?></option>
|
|
<?php endforeach; ?>
|
|
</select>
|
|
</div>
|
|
<div class="col-12 mb-3">
|
|
<label class="form-label small fw-bold">Attachments</label>
|
|
<input type="file" name="attachments[]" class="form-control" multiple>
|
|
</div>
|
|
<div class="col-12">
|
|
<label class="form-label small fw-bold">Notes</label>
|
|
<textarea name="notes" class="form-control" rows="2"></textarea>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="modal-footer border-0">
|
|
<button type="submit" name="add_labour" class="btn btn-primary px-4">Save Entry</button>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<?php include __DIR__ . '/includes/footer.php'; ?>
|