Browse Source

update BillAccounting to match v1

Olivier Massot 3 years ago
parent
commit
415971db6c
1 changed files with 1 additions and 9 deletions
  1. 1 9
      src/Entity/Billing/BillAccounting.php

+ 1 - 9
src/Entity/Billing/BillAccounting.php

@@ -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')]
@@ -336,4 +328,4 @@ class BillAccounting
 
         return $this;
     }
-}
+}