feat: filter assignments and applications by teamer name

closes #869b9vgq7
This commit is contained in:
Björn Fromme
2026-03-15 12:42:28 +01:00
parent e45f6458d4
commit ed41d40059
10 changed files with 105 additions and 6 deletions
+13
View File
@@ -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;
}
}
+13
View File
@@ -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;