feat: filter assignments and applications by teamer name
closes #869b9vgq7
This commit is contained in:
@@ -18,6 +18,7 @@ class ApplicationFilterDto extends AbstractFilterDto
|
||||
protected array $status = [];
|
||||
protected bool $includePast = false;
|
||||
protected ?string $country = null;
|
||||
protected ?string $teamerName = null;
|
||||
|
||||
public function getId(): ?int
|
||||
{
|
||||
@@ -126,4 +127,16 @@ class ApplicationFilterDto extends AbstractFilterDto
|
||||
|
||||
return $this;
|
||||
}
|
||||
|
||||
public function getTeamerName(): ?string
|
||||
{
|
||||
return $this->teamerName;
|
||||
}
|
||||
|
||||
public function setTeamerName(?string $teamerName): static
|
||||
{
|
||||
$this->teamerName = $teamerName;
|
||||
|
||||
return $this;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -18,6 +18,7 @@ class AssignmentFilterDto extends AbstractFilterDto
|
||||
protected array $status = [];
|
||||
protected bool $includePast = false;
|
||||
protected ?string $country = null;
|
||||
protected ?string $teamerName = null;
|
||||
protected bool $notSyncedWithBusProNet = false;
|
||||
|
||||
public function getId(): ?int
|
||||
@@ -128,6 +129,18 @@ class AssignmentFilterDto extends AbstractFilterDto
|
||||
return $this;
|
||||
}
|
||||
|
||||
public function getTeamerName(): ?string
|
||||
{
|
||||
return $this->teamerName;
|
||||
}
|
||||
|
||||
public function setTeamerName(?string $teamerName): static
|
||||
{
|
||||
$this->teamerName = $teamerName;
|
||||
|
||||
return $this;
|
||||
}
|
||||
|
||||
public function isNotSyncedWithBusProNet(): bool
|
||||
{
|
||||
return $this->notSyncedWithBusProNet;
|
||||
|
||||
Reference in New Issue
Block a user