From add9f9e25dd47c01b51254c0b24f7a52900ab50f Mon Sep 17 00:00:00 2001 From: Matt Young Date: Tue, 14 Oct 2025 09:12:14 -0500 Subject: [PATCH] Check for a prelim result after entering a prelim score. --- app/Actions/Tabulation/EnterPrelimScore.php | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/app/Actions/Tabulation/EnterPrelimScore.php b/app/Actions/Tabulation/EnterPrelimScore.php index bf9d0c5..b9e916f 100644 --- a/app/Actions/Tabulation/EnterPrelimScore.php +++ b/app/Actions/Tabulation/EnterPrelimScore.php @@ -123,6 +123,10 @@ class EnterPrelimScore 'students' => [$entry->student_id], ]); + // Check if we can make a status decision + $checker = app(CheckPrelimResult::class); + $checker($entry, true); + return $prelimScoreSheet; } }