From 282037cf73b82b70e2f010a65115e132f540c748 Mon Sep 17 00:00:00 2001 From: Babak Alizadeh Date: Sat, 11 Jan 2025 15:50:30 +0000 Subject: [PATCH] bug fix in bank transfer --- hesabixCore/src/Entity/Permission.php | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/hesabixCore/src/Entity/Permission.php b/hesabixCore/src/Entity/Permission.php index d906fd0..d135008 100644 --- a/hesabixCore/src/Entity/Permission.php +++ b/hesabixCore/src/Entity/Permission.php @@ -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; + } }