| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394 |
- <?php
- declare(strict_types=1);
- namespace App\Entity\Billing;
- // use DH\Auditor\Provider\Doctrine\Auditing\Annotation\Auditable;
- use ApiPlatform\Metadata\ApiResource;
- use App\Entity\Core\File;
- use Doctrine\Common\Collections\ArrayCollection;
- use Doctrine\Common\Collections\Collection;
- use Doctrine\ORM\Mapping as ORM;
- /**
- * Classe ... qui ...
- * // TODO: possible factoriser avec SddBank?
- */
- // #[Auditable]
- #[ApiResource(operations: [])]
- #[ORM\Entity]
- class SddRegie
- {
- #[ORM\Id]
- #[ORM\Column]
- #[ORM\GeneratedValue]
- private ?int $id = null;
- #[ORM\OneToMany(mappedBy: 'sddRegie', targetEntity: BillPayment::class, cascade: [], orphanRemoval: false)]
- protected Collection $billPayments;
- #[ORM\OneToOne(targetEntity: File::class, cascade: ['persist'])]
- protected File $file;
- #[ORM\OneToOne(targetEntity: File::class, cascade: ['persist'])]
- protected File $bordereau;
- public function __construct()
- {
- $this->billPayments = new ArrayCollection();
- }
- public function getId(): ?int
- {
- return $this->id;
- }
- public function getBillPayments(): Collection
- {
- return $this->billPayments;
- }
- public function addBillPayment(BillPayment $billPayment): self
- {
- if (!$this->billPayments->contains($billPayment)) {
- $this->billPayments[] = $billPayment;
- $billPayment->setSddRegie($this);
- }
- return $this;
- }
- public function removeBillPayment(BillPayment $billPayment): self
- {
- if ($this->billPayments->removeElement($billPayment)) {
- // $billPayment->setSddBank(null); // TODO: actuellement, pas nullable: conserver?
- }
- return $this;
- }
- public function getFile(): File
- {
- return $this->file;
- }
- public function setFile(File $file): self
- {
- $this->file = $file;
- return $this;
- }
- public function getBordereau(): File
- {
- return $this->bordereau;
- }
- public function setBordereau(File $bordereau): self
- {
- $this->bordereau = $bordereau;
- return $this;
- }
- }
|