diff --git a/app/DAL/Studies/WorklistBase.php b/app/DAL/Studies/WorklistBase.php index d6cefd4..dad6288 100644 --- a/app/DAL/Studies/WorklistBase.php +++ b/app/DAL/Studies/WorklistBase.php @@ -48,9 +48,9 @@ public function setRadiologist(int $radiologist_id): self return $this; } - public function setWorkflowLevel(WorkflowLevel $status): self + public function setWorkflowLevel(WorkflowLevel $level): self { - $this->workflowLevel = $status; + $this->workflowLevel = $level; return $this; } @@ -71,7 +71,6 @@ public function get(?int $user_id = null): LengthAwarePaginator $query = $this->applySearch($query); $query = $this->applyRadiologist($query); $query = $this->applyWorkflowLevel($query); - $query = $this->applyReportStatus($query); $query = $this->applyArchived($query); $query = $this->applyLocked($query); $query = $this->applyDateFilters($query);