update code
This commit is contained in:
@@ -5,7 +5,10 @@ namespace App\Controllers;
|
||||
use App\Models\ClassProgressReportModel;
|
||||
use App\Models\ClassProgressAttachmentModel;
|
||||
use App\Models\ClassSectionModel;
|
||||
use App\Models\CalendarModel;
|
||||
use App\Models\ConfigurationModel;
|
||||
use App\Models\StudentClassModel;
|
||||
use App\Services\SemesterRangeService;
|
||||
use CodeIgniter\Exceptions\PageNotFoundException;
|
||||
use CodeIgniter\HTTP\ResponseInterface;
|
||||
|
||||
@@ -15,6 +18,9 @@ class AdminProgressController extends BaseController
|
||||
protected ClassProgressAttachmentModel $attachmentModel;
|
||||
protected ClassSectionModel $classSectionModel;
|
||||
protected StudentClassModel $studentClassModel;
|
||||
protected CalendarModel $calendarModel;
|
||||
protected ConfigurationModel $configModel;
|
||||
protected SemesterRangeService $semesterRangeService;
|
||||
|
||||
public function __construct()
|
||||
{
|
||||
@@ -23,6 +29,9 @@ class AdminProgressController extends BaseController
|
||||
$this->attachmentModel = new ClassProgressAttachmentModel();
|
||||
$this->classSectionModel = new ClassSectionModel();
|
||||
$this->studentClassModel = new StudentClassModel();
|
||||
$this->calendarModel = new CalendarModel();
|
||||
$this->configModel = new ConfigurationModel();
|
||||
$this->semesterRangeService = new SemesterRangeService($this->configModel);
|
||||
}
|
||||
|
||||
public function index()
|
||||
@@ -53,22 +62,30 @@ class AdminProgressController extends BaseController
|
||||
}
|
||||
|
||||
$rows = $builder->orderBy('week_start', 'DESC')->get()->getResultArray();
|
||||
$reportGroups = [];
|
||||
$reportGroupsBySection = [];
|
||||
foreach ($rows as $row) {
|
||||
$row['status_label'] = ClassProgressController::STATUS_OPTIONS[$row['status']] ?? 'Unknown';
|
||||
$key = ($row['week_start'] ?? '') . '_' . ($row['class_section_id'] ?? '');
|
||||
if ($key === '_') {
|
||||
$sectionId = (int) ($row['class_section_id'] ?? 0);
|
||||
$weekKey = (string) ($row['week_start'] ?? '');
|
||||
if ($sectionId === 0 || $weekKey === '') {
|
||||
continue;
|
||||
}
|
||||
if (! isset($reportGroups[$key])) {
|
||||
$reportGroups[$key] = [
|
||||
if (! isset($reportGroupsBySection[$sectionId])) {
|
||||
$reportGroupsBySection[$sectionId] = [];
|
||||
}
|
||||
if (! isset($reportGroupsBySection[$sectionId][$weekKey])) {
|
||||
$reportGroupsBySection[$sectionId][$weekKey] = [
|
||||
'week_start' => $row['week_start'],
|
||||
'week_end' => $row['week_end'],
|
||||
'class_section_name' => $row['class_section_name'] ?? '',
|
||||
'reports' => [],
|
||||
];
|
||||
}
|
||||
$reportGroups[$key]['reports'][$row['subject']] = $row;
|
||||
$reportGroupsBySection[$sectionId][$weekKey]['reports'][$row['subject']] = $row;
|
||||
}
|
||||
foreach ($reportGroupsBySection as $sectionId => $groups) {
|
||||
krsort($groups);
|
||||
$reportGroupsBySection[$sectionId] = $groups;
|
||||
}
|
||||
|
||||
$classSections = $this->classSectionModel->getClassSections();
|
||||
@@ -78,12 +95,27 @@ class AdminProgressController extends BaseController
|
||||
return isset($studentCounts[$sectionId]) && $studentCounts[$sectionId] > 0;
|
||||
}));
|
||||
|
||||
$filterStart = $this->normalizeDate($filters['from'] ?? '');
|
||||
$filterEnd = $this->normalizeDate($filters['to'] ?? '');
|
||||
[$dateList, $noSchoolDays, $totalPassedDays, $passedDatesSet] = $this->buildSemesterDates();
|
||||
[$expectedDays, $activeDatesSet] = $this->resolveExpectedDays(
|
||||
$dateList,
|
||||
$noSchoolDays,
|
||||
$totalPassedDays,
|
||||
$passedDatesSet,
|
||||
$filterStart,
|
||||
$filterEnd
|
||||
);
|
||||
$sectionStats = $this->buildSectionSubmissionStats($rows, $activeDatesSet, $expectedDays);
|
||||
|
||||
return view('admin/class_progress_list', [
|
||||
'reportGroups' => $reportGroups,
|
||||
'reportGroupsBySection' => $reportGroupsBySection,
|
||||
'filters' => $filters,
|
||||
'classSections' => $filteredSections,
|
||||
'statusOptions' => ClassProgressController::STATUS_OPTIONS,
|
||||
'subjectSections' => ClassProgressController::SUBJECT_SECTIONS,
|
||||
'sectionStats' => $sectionStats,
|
||||
'expectedDays' => $expectedDays,
|
||||
]);
|
||||
}
|
||||
|
||||
@@ -211,4 +243,214 @@ class AdminProgressController extends BaseController
|
||||
$flags = json_decode($json, true);
|
||||
return is_array($flags) ? $flags : [];
|
||||
}
|
||||
|
||||
protected function normalizeDate(string $value): string
|
||||
{
|
||||
$value = trim($value);
|
||||
if (! preg_match('/^\d{4}-\d{2}-\d{2}$/', $value)) {
|
||||
return '';
|
||||
}
|
||||
[$y, $m, $d] = array_map('intval', explode('-', $value));
|
||||
return checkdate($m, $d, $y) ? $value : '';
|
||||
}
|
||||
|
||||
protected function buildSemesterDates(): array
|
||||
{
|
||||
$schoolYear = (string) ($this->configModel->getConfig('school_year') ?? '');
|
||||
$semester = (string) ($this->configModel->getConfig('semester') ?? '');
|
||||
$schoolYearForRange = $schoolYear !== '' ? $schoolYear : (string) ($this->configModel->getConfig('school_year') ?? '');
|
||||
[$rangeStart, $rangeEnd] = $this->semesterRangeService->getSchoolYearRange($schoolYearForRange);
|
||||
$semesterNorm = $this->semesterRangeService->normalizeSemester($semester);
|
||||
if ($semesterNorm !== '' && $schoolYearForRange !== '') {
|
||||
$semRange = $this->semesterRangeService->getSemesterRange($schoolYearForRange, $semesterNorm);
|
||||
if ($semRange) {
|
||||
[$rangeStart, $rangeEnd] = $semRange;
|
||||
}
|
||||
}
|
||||
|
||||
$dateList = [];
|
||||
try {
|
||||
$start = new \DateTimeImmutable($rangeStart);
|
||||
$end = new \DateTimeImmutable($rangeEnd);
|
||||
$cursor = $start;
|
||||
$w = (int) $cursor->format('w');
|
||||
if ($w !== 0) {
|
||||
$cursor = $cursor->modify('next sunday');
|
||||
}
|
||||
while ($cursor <= $end) {
|
||||
$dateList[] = $cursor->format('Y-m-d');
|
||||
$cursor = $cursor->modify('+7 days');
|
||||
}
|
||||
} catch (\Throwable $e) {
|
||||
$dateList = [];
|
||||
}
|
||||
|
||||
$noSchoolDays = [];
|
||||
$events = [];
|
||||
try {
|
||||
$events = $this->calendarModel->getEvents();
|
||||
} catch (\Throwable $e) {
|
||||
$events = [];
|
||||
}
|
||||
foreach ($events as $event) {
|
||||
$d = substr((string) ($event['date'] ?? ''), 0, 10);
|
||||
if ($d === '' || empty($event['no_school'])) {
|
||||
continue;
|
||||
}
|
||||
if ($d < $rangeStart || $d > $rangeEnd) {
|
||||
continue;
|
||||
}
|
||||
$eventYear = trim((string) ($event['school_year'] ?? ''));
|
||||
if ($schoolYearForRange !== '' && $eventYear !== '' && $eventYear !== $schoolYearForRange) {
|
||||
continue;
|
||||
}
|
||||
$noSchoolDays[$d] = true;
|
||||
}
|
||||
|
||||
$anchorSundayYmd = '';
|
||||
try {
|
||||
$tzName = (string) (config('School')->attendance['timezone'] ?? user_timezone());
|
||||
$tzObj = new \DateTimeZone($tzName ?: 'UTC');
|
||||
} catch (\Throwable $e) {
|
||||
try {
|
||||
$tzObj = new \DateTimeZone(user_timezone() ?: 'UTC');
|
||||
} catch (\Throwable $e2) {
|
||||
$tzObj = new \DateTimeZone('UTC');
|
||||
}
|
||||
}
|
||||
try {
|
||||
$nowDate = new \DateTime('now', $tzObj);
|
||||
} catch (\Throwable $e) {
|
||||
$nowDate = new \DateTime('now');
|
||||
}
|
||||
$weekday = (int) $nowDate->format('w');
|
||||
$anchorSundayYmd = $weekday === 0
|
||||
? $nowDate->format('Y-m-d')
|
||||
: $nowDate->modify('next sunday')->format('Y-m-d');
|
||||
|
||||
$passedDatesSet = [];
|
||||
if (! empty($dateList) && $anchorSundayYmd !== '') {
|
||||
foreach ($dateList as $d) {
|
||||
if ($d <= $anchorSundayYmd && empty($noSchoolDays[$d])) {
|
||||
$passedDatesSet[$d] = true;
|
||||
}
|
||||
}
|
||||
}
|
||||
$totalPassedDays = count($passedDatesSet);
|
||||
|
||||
return [$dateList, $noSchoolDays, $totalPassedDays, $passedDatesSet];
|
||||
}
|
||||
|
||||
protected function resolveExpectedDays(
|
||||
array $dateList,
|
||||
array $noSchoolDays,
|
||||
int $totalPassedDays,
|
||||
array $passedDatesSet,
|
||||
string $filterStart,
|
||||
string $filterEnd
|
||||
): array {
|
||||
$activeDatesSet = [];
|
||||
if ($filterStart === '' && $filterEnd === '') {
|
||||
$expectedDays = $totalPassedDays;
|
||||
if ($expectedDays > 0) {
|
||||
$activeDatesSet = $passedDatesSet;
|
||||
}
|
||||
return [$expectedDays, $activeDatesSet];
|
||||
}
|
||||
|
||||
$expectedDays = 0;
|
||||
foreach ($dateList as $d) {
|
||||
if ($d === '') {
|
||||
continue;
|
||||
}
|
||||
if ($filterStart !== '' && $d < $filterStart) {
|
||||
continue;
|
||||
}
|
||||
if ($filterEnd !== '' && $d > $filterEnd) {
|
||||
continue;
|
||||
}
|
||||
if (! empty($noSchoolDays[$d])) {
|
||||
continue;
|
||||
}
|
||||
$activeDatesSet[$d] = true;
|
||||
$expectedDays++;
|
||||
}
|
||||
|
||||
return [$expectedDays, $activeDatesSet];
|
||||
}
|
||||
|
||||
protected function buildSectionSubmissionStats(array $rows, array $activeDatesSet, int $expectedDays): array
|
||||
{
|
||||
$requiredSubjects = [];
|
||||
foreach (ClassProgressController::SUBJECT_SECTIONS as $section) {
|
||||
$requiredSubjects[] = $section['db_subject'] ?? $section['label'] ?? '';
|
||||
}
|
||||
$requiredSubjects = array_values(array_filter($requiredSubjects));
|
||||
|
||||
$submittedBySection = [];
|
||||
foreach ($rows as $row) {
|
||||
$sectionId = (int) ($row['class_section_id'] ?? 0);
|
||||
$weekStart = (string) ($row['week_start'] ?? '');
|
||||
$subject = (string) ($row['subject'] ?? '');
|
||||
if ($sectionId === 0 || $weekStart === '' || $subject === '') {
|
||||
continue;
|
||||
}
|
||||
if (! empty($activeDatesSet) && empty($activeDatesSet[$weekStart])) {
|
||||
continue;
|
||||
}
|
||||
if (! in_array($subject, $requiredSubjects, true)) {
|
||||
continue;
|
||||
}
|
||||
$submittedBySection[$sectionId][$weekStart][$subject] = true;
|
||||
}
|
||||
|
||||
$stats = [];
|
||||
foreach ($submittedBySection as $sectionId => $weeks) {
|
||||
$submitted = 0;
|
||||
foreach ($weeks as $subjects) {
|
||||
$all = true;
|
||||
foreach ($requiredSubjects as $subject) {
|
||||
if (empty($subjects[$subject])) {
|
||||
$all = false;
|
||||
break;
|
||||
}
|
||||
}
|
||||
if ($all) {
|
||||
$submitted++;
|
||||
}
|
||||
}
|
||||
$stats[$sectionId] = $this->buildSectionStat($submitted, $expectedDays);
|
||||
}
|
||||
|
||||
return $stats;
|
||||
}
|
||||
|
||||
protected function buildSectionStat(int $submitted, int $expectedDays): array
|
||||
{
|
||||
$percent = $expectedDays > 0 ? round(($submitted * 100) / $expectedDays, 1) : 0.0;
|
||||
if ($expectedDays === 0) {
|
||||
$badgeClass = 'bg-secondary';
|
||||
$labelClass = 'text-muted';
|
||||
} elseif ($percent >= 100) {
|
||||
$badgeClass = 'bg-success';
|
||||
$labelClass = 'text-success';
|
||||
} elseif ($percent >= 60) {
|
||||
$badgeClass = 'bg-warning text-dark';
|
||||
$labelClass = 'text-warning';
|
||||
} elseif ($percent >= 40) {
|
||||
$badgeClass = 'bg-orange text-dark';
|
||||
$labelClass = 'text-warning';
|
||||
} else {
|
||||
$badgeClass = 'bg-danger';
|
||||
$labelClass = 'text-danger';
|
||||
}
|
||||
|
||||
return [
|
||||
'submitted' => $submitted,
|
||||
'expected' => $expectedDays,
|
||||
'percent' => $percent,
|
||||
'badgeClass' => $badgeClass,
|
||||
'labelClass' => $labelClass,
|
||||
];
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user