|
|
@@ -69,14 +69,6 @@ class BillAccounting
|
|
|
#[ORM\JoinColumn(nullable: true)]
|
|
|
protected Jvs $jvs;
|
|
|
|
|
|
- #[ORM\ManyToOne(cascade: ['persist'], inversedBy: 'bills')]
|
|
|
- #[ORM\JoinColumn(nullable: true)]
|
|
|
- protected SddBank $sddBank;
|
|
|
-
|
|
|
- #[ORM\ManyToOne(cascade: ['persist'], inversedBy: 'bills')]
|
|
|
- #[ORM\JoinColumn(nullable: true)]
|
|
|
- protected SddRegie $sddRegie;
|
|
|
-
|
|
|
#[ORM\ManyToMany( targetEntity: Tagg::class, inversedBy: 'billAccountings', cascade: ['persist'])]
|
|
|
#[ORM\JoinTable(name: 'tag_billAccounting')]
|
|
|
#[ORM\JoinColumn(name: 'billAccounting_id', referencedColumnName: 'id')]
|
|
|
@@ -289,30 +281,6 @@ class BillAccounting
|
|
|
return $this;
|
|
|
}
|
|
|
|
|
|
- public function getSddBank(): ?SddBank
|
|
|
- {
|
|
|
- return $this->sddBank;
|
|
|
- }
|
|
|
-
|
|
|
- public function setSddBank(?SddBank $sddBank): self
|
|
|
- {
|
|
|
- $this->sddBank = $sddBank;
|
|
|
-
|
|
|
- return $this;
|
|
|
- }
|
|
|
-
|
|
|
- public function getSddRegie(): ?SddRegie
|
|
|
- {
|
|
|
- return $this->sddRegie;
|
|
|
- }
|
|
|
-
|
|
|
- public function setSddRegie(?SddRegie $sddRegie): self
|
|
|
- {
|
|
|
- $this->sddRegie = $sddRegie;
|
|
|
-
|
|
|
- return $this;
|
|
|
- }
|
|
|
-
|
|
|
/**
|
|
|
* @return Collection<int, Tagg>
|
|
|
*/
|
|
|
@@ -336,4 +304,4 @@ class BillAccounting
|
|
|
|
|
|
return $this;
|
|
|
}
|
|
|
-}
|
|
|
+}
|