prepare("SELECT fiscal_year_end FROM company_settings WHERE id = 1"); $stmt->execute(); $settings = $stmt->fetch(); $fiscal_year_end = $settings['fiscal_year_end'] ?? null; // Determine possible years based on data $years = []; $res = db()->query("SELECT DISTINCT YEAR(entry_date) as y FROM labour_entries UNION SELECT DISTINCT YEAR(entry_date) as y FROM expenses ORDER BY y DESC"); while($row = $res->fetch()) { $years[] = (int)$row['y']; } if (empty($years)) $years[] = (int)date('Y'); $pageTitle = "SR&ED Claim Report Selector"; include __DIR__ . '/includes/header.php'; ?>

SRED Claim Report

Generate a comprehensive Scientific Research and Experimental Development (SR&ED) claim report for a specific fiscal year.

Your fiscal year ends on:
Fiscal year end not set in Company Preferences.