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; } }