fix financial issues

This commit is contained in:
root
2026-06-01 02:08:27 -04:00
parent 090cb88573
commit 6444b61416
56 changed files with 4196 additions and 1824 deletions
+6 -3
View File
@@ -147,6 +147,7 @@ if (empty($schoolYears) && $schoolYear !== '') {
<thead class="table-light">
<tr>
<th style="min-width:160px">Student Name</th>
<th class="text-center">Age</th>
<th>Class-Section</th>
<th class="text-center">Year Score</th>
<th style="min-width:300px">Comments / Rationale &amp; Decision</th>
@@ -177,9 +178,11 @@ if (empty($schoolYears) && $schoolYear !== '') {
<tr class="<?= esc($rowClass) ?>">
<td><?= esc($studentLabel) ?></td>
<td class="text-center"><?= esc((string)($row['age'] ?? '—')) ?></td>
<td><?= esc($row['class_section_name'] ?? '—') ?></td>
<td class="text-center">
<td class="text-center" data-order="<?= esc($scoreVal !== null ? (string)$scoreVal : '-1') ?>">
<div class="fw-semibold"><?= $displayScore($scoreRaw) ?></div>
<button type="button"
@@ -400,7 +403,7 @@ if (empty($schoolYears) && $schoolYear !== '') {
pageLength: 100,
lengthMenu: [10, 25, 50, 100, 200],
columnDefs: [
{ orderable: false, targets: [3] }
{ orderable: false, targets: [4] }
]
});
} catch (_) {}
@@ -695,4 +698,4 @@ if (empty($schoolYears) && $schoolYear !== '') {
});
})();
</script>
<?= $this->endSection() ?>
<?= $this->endSection() ?>