feat: streamlined teamer info modals, internal teamer remarks
This commit is contained in:
@@ -83,6 +83,9 @@ class Teamer implements TimestampableEntityInterface
|
||||
#[ORM\Column(type: Types::TEXT, nullable: true)]
|
||||
private ?string $remarks = null;
|
||||
|
||||
#[ORM\Column(type: Types::TEXT, nullable: true)]
|
||||
private ?string $remarksInternal = null;
|
||||
|
||||
#[ORM\ManyToMany(targetEntity: Availability::class, inversedBy: 'teamers')]
|
||||
#[ORM\OrderBy(['dateFrom' => 'ASC'])]
|
||||
private Collection $availabilities;
|
||||
@@ -388,6 +391,18 @@ class Teamer implements TimestampableEntityInterface
|
||||
return $this;
|
||||
}
|
||||
|
||||
public function getRemarksInternal(): ?string
|
||||
{
|
||||
return $this->remarksInternal;
|
||||
}
|
||||
|
||||
public function setRemarksInternal(?string $remarksInternal): static
|
||||
{
|
||||
$this->remarksInternal = $remarksInternal;
|
||||
|
||||
return $this;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return Collection<int, Availability>
|
||||
*/
|
||||
|
||||
Reference in New Issue
Block a user