This commit is contained in:
2024-11-21 08:32:59 +01:00
parent ce7f5a1b4a
commit 1289b22a93
9 changed files with 58 additions and 20 deletions

View File

@ -24,11 +24,11 @@ class Accounting
#[ORM\Column(length: 255)]
private ?string $title = null;
#[ORM\Column(length: 255)]
#[ORM\Column(length: 255, nullable: true)]
private ?string $icon = null;
#[ORM\Column]
private ?bool $actif = null;
#[ORM\Column(length: 255)]
private ?string $category = null;
#[ORM\ManyToOne(inversedBy: 'accountings')]
#[ORM\JoinColumn(nullable: false)]
@ -98,21 +98,21 @@ class Accounting
return $this->icon;
}
public function setIcon(string $icon): static
public function setIcon(?string $icon): static
{
$this->icon = $icon;
return $this;
}
public function isActif(): ?bool
public function getCategory(): ?string
{
return $this->actif;
return $this->category;
}
public function setActif(bool $actif): static
public function setCategory(string $category): static
{
$this->actif = $actif;
$this->category = $category;
return $this;
}

View File

@ -89,7 +89,7 @@ class Company
return $this->adress;
}
public function setAdress(string $adress): static
public function setAdress(?string $adress): static
{
$this->adress = $adress;
@ -260,4 +260,5 @@ class Company
return $this;
}
}

View File

@ -95,4 +95,5 @@ class Operation
return $this;
}
}