bug fix in bank transfer
This commit is contained in:
parent
8da02aa32c
commit
282037cf73
|
@ -120,6 +120,9 @@ class Permission
|
||||||
#[ORM\Column(nullable: true)]
|
#[ORM\Column(nullable: true)]
|
||||||
private ?bool $plugRepservice = null;
|
private ?bool $plugRepservice = null;
|
||||||
|
|
||||||
|
#[ORM\Column(nullable: true)]
|
||||||
|
private ?bool $Transfer = null;
|
||||||
|
|
||||||
public function getId(): ?int
|
public function getId(): ?int
|
||||||
{
|
{
|
||||||
return $this->id;
|
return $this->id;
|
||||||
|
@ -544,4 +547,16 @@ class Permission
|
||||||
|
|
||||||
return $this;
|
return $this;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public function isTransfer(): ?bool
|
||||||
|
{
|
||||||
|
return $this->Transfer;
|
||||||
|
}
|
||||||
|
|
||||||
|
public function setTransfer(?bool $Transfer): static
|
||||||
|
{
|
||||||
|
$this->Transfer = $Transfer;
|
||||||
|
|
||||||
|
return $this;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue