bug fix in bank transfer

This commit is contained in:
Hesabix 2025-01-11 15:50:30 +00:00
parent 8da02aa32c
commit 282037cf73

View file

@ -120,6 +120,9 @@ class Permission
#[ORM\Column(nullable: true)]
private ?bool $plugRepservice = null;
#[ORM\Column(nullable: true)]
private ?bool $Transfer = null;
public function getId(): ?int
{
return $this->id;
@ -544,4 +547,16 @@ class Permission
return $this;
}
public function isTransfer(): ?bool
{
return $this->Transfer;
}
public function setTransfer(?bool $Transfer): static
{
$this->Transfer = $Transfer;
return $this;
}
}