fix school year for all tables
Tests / PHPUnit (push) Failing after 1m20s

This commit is contained in:
root
2026-07-18 14:45:38 -04:00
parent 4db8334a3c
commit 716cc8b8d3
125 changed files with 2315 additions and 81 deletions
+2
View File
@@ -97,6 +97,7 @@ $deadline = parseDbDateTime($dueDate, 'UTC', $displayTz); // format either DATE
<th>Invoice Number</th>
<th>Issue Date</th>
<th>Due Date</th>
<th>Description</th>
<th>Balance</th>
<th>Last Payment Amount</th>
<th>Last Payment Date</th>
@@ -117,6 +118,7 @@ $deadline = parseDbDateTime($dueDate, 'UTC', $displayTz); // format either DATE
<td><?= esc($invoice['invoice_number']) ?></td>
<td><?= $issueDt ? esc($issueDt->format('m-d-Y h:i A')) : '—' ?></td>
<td><?= $dueDt ? esc($dueDt->format('m-d-Y')) : '—' ?></td>
<td><?= esc($invoice['description'] ?? '') ?: '—' ?></td>
<td>$<?= number_format((float)($invoice['balance'] ?? 0), 2) ?></td>
<td>$<?= number_format((float)($invoice['last_paid_amount'] ?? 0), 2) ?></td>
<td><?= $lastPay ? esc($lastPay->format('m-d-Y h:i A')) : '—' ?></td>