This commit is contained in:
Dr Masroor Ehsan 2025-01-29 23:29:53 +06:00
parent 7f5e916d80
commit 3a775c4f21

View File

@ -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);