exec($sql);
return true;
} catch (PDOException $e) {
// Ignore errors about tables/columns that already exist
if (strpos($e->getMessage(), 'already exists') === false && strpos($e->getMessage(), 'Duplicate column name') === false) {
error_log("SQL Execution Error in $filepath: " . $e->getMessage());
}
return false;
}
}
try {
$pdo = db();
$migration_files = glob(__DIR__ . '/db/migrations/*.sql');
sort($migration_files);
foreach ($migration_files as $file) {
execute_sql_from_file($pdo, $file);
}
} catch (PDOException $e) {
$db_error = "Database connection failed: " . $e->getMessage();
// Stop execution if DB connection fails
die($db_error);
}
// --- DATA FETCHING & CALCULATION ---
$project = null;
$project_id = $_GET['id'] ?? null;
$financial_data = [];
$months = [];
$metrics = ["Opening Balance", "Billings", "WIP", "Expenses", "Cost", "NSR", "Margin"];
if ($project_id) {
$stmt = $pdo->prepare("SELECT * FROM projects WHERE id = :id");
$stmt->execute([':id' => $project_id]);
$project = $stmt->fetch(PDO::FETCH_ASSOC);
if ($project) {
// Helper to generate month range
function get_month_range($start_date_str, $end_date_str) {
$months = [];
if (empty($start_date_str) || empty($end_date_str)) return $months;
$start = new DateTime($start_date_str);
$end = new DateTime($end_date_str);
$current = clone $start;
$current->modify('first day of this month');
while ($current <= $end) {
$months[] = $current->format('Y-m-01');
$current->modify('+1 month');
}
return $months;
}
$months = get_month_range($project['startDate'], $project['endDate']);
// Initialize financial data structure
foreach ($metrics as $metric) {
foreach ($months as $month) {
$financial_data[$metric][$month] = 0;
}
}
// Find the latest forecast version
$forecast_stmt = $pdo->prepare("SELECT id FROM forecasting WHERE projectId = :pid ORDER BY versionNumber DESC LIMIT 1");
$forecast_stmt->execute([':pid' => $project_id]);
$latest_forecast = $forecast_stmt->fetch(PDO::FETCH_ASSOC);
if ($latest_forecast) {
// Calculate monthly costs
$cost_sql = "
SELECT
fa.month,
SUM(fa.allocatedDays * r.totalMonthlyCost) as totalCost
FROM forecastAllocation fa
JOIN roster r ON fa.rosterId = r.id
WHERE fa.forecastingId = :fid
GROUP BY fa.month
";
$cost_stmt = $pdo->prepare($cost_sql);
$cost_stmt->execute([':fid' => $latest_forecast['id']]);
$monthly_costs = $cost_stmt->fetchAll(PDO::FETCH_KEY_PAIR);
foreach ($monthly_costs as $month => $cost) {
// Ensure month format is consistent
$formatted_month = date('Y-m-01', strtotime($month));
if (isset($financial_data['Cost'][$formatted_month])) {
$financial_data['Cost'][$formatted_month] = $cost;
}
}
}
}
}
// --- PAGE RENDER ---
if (!$project) {
http_response_code(404);
$page_title = "Project Not Found";
} else {
$page_title = "Details for " . htmlspecialchars($project['name']);
}
?>
Project with ID not found.
- Name
- WBS
- Start Date
- End Date
- Budget
- €
- Recoverability
- %
- Target Margin
- %