Merge branch 'merge-statuses'
This commit is contained in:
commit
97481e8473
@ -10,7 +10,7 @@ interface IUserStudyLister
|
||||
{
|
||||
public function setRadiologist(int $radiologist_id): self;
|
||||
|
||||
public function setWorkflowLevel(WorkflowLevel $status): self;
|
||||
public function setWorkflowLevel(WorkflowLevel $level): self;
|
||||
|
||||
public function setPerPage(int $size): self;
|
||||
|
||||
|
@ -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);
|
||||
|
Loading…
Reference in New Issue
Block a user