浏览代码

update BillAccounting to match v1

Olivier Massot 3 年之前
父节点
当前提交
415971db6c
共有 1 个文件被更改,包括 1 次插入9 次删除
  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;
     }
-}
+}