correct error in TabulationController
This commit is contained in:
parent
46d40adb6e
commit
91e92a3aa2
|
|
@ -39,7 +39,7 @@ class TabulationController extends Controller
|
|||
}
|
||||
|
||||
if ($this->doublerService->studentIsDoubler($entry->student_id)) { // If this entry is a doubler
|
||||
if ($this->doublerService->getDoublerInfo($entry->student_id)[$entry->id]['status']) { // If there is no decision for this entry
|
||||
if ($this->doublerService->getDoublerInfo($entry->student_id)[$entry->id]['status'] === 'undecided') { // If there is no decision for this entry
|
||||
$doublerComplete = false;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue