src/Entity/RemesasRecibos.php line 12

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\RemesasRecibosRepository;
  4. use Doctrine\Common\Collections\ArrayCollection;
  5. use Doctrine\Common\Collections\Collection;
  6. use Doctrine\DBAL\Types\Types;
  7. use Doctrine\ORM\Mapping as ORM;
  8. #[ORM\Entity(repositoryClassRemesasRecibosRepository::class)]
  9. class RemesasRecibos
  10. {
  11.     #[ORM\Id]
  12.     #[ORM\GeneratedValue]
  13.     #[ORM\Column]
  14.     private ?int $id null;
  15.     #[ORM\Column(typeTypes::DATETIME_MUTABLE)]
  16.     private ?\DateTimeInterface $fecha null;
  17.     #[ORM\Column(typeTypes::TEXT)]
  18.     private ?string $ficheroremesa null;
  19.     #[ORM\Column]
  20.     private ?bool $enviado null;
  21.     #[ORM\OneToMany(mappedBy'remesa'targetEntityRecibosTenants::class, cascade:['persist'] )]
  22.     private Collection $recibosTenants;
  23.     #[ORM\Column(length100)]
  24.     private ?string $nombre null;
  25.     #[ORM\OneToMany(mappedBy'remesa'targetEntityRecibosUtilities::class, cascade:['persist'] )]
  26.     private Collection $recibosUtilities;
  27.     private float $importeRemesa=0;
  28.     #[ORM\OneToMany(mappedBy'remesaRecibo'targetEntityRecibosGestion::class, cascade:['persist'])]
  29.     private Collection $recibosGestions;
  30.     #[ORM\OneToMany(mappedBy'remesa'targetEntityRecibosReparaciones::class, cascade:['persist'])]
  31.     private Collection $recibosReparaciones;
  32.     public function __construct()
  33.     {
  34.         $this->recibosTenants = new ArrayCollection();
  35.         $this->recibosUtilities = new ArrayCollection();
  36.         $this->recibosGestions = new ArrayCollection();
  37.         $this->recibosReparaciones = new ArrayCollection();
  38.     }
  39.     public function getId(): ?int
  40.     {
  41.         return $this->id;
  42.     }
  43.     public function getFecha(): ?\DateTimeInterface
  44.     {
  45.         return $this->fecha;
  46.     }
  47.     public function setFecha(\DateTimeInterface $fecha): static
  48.     {
  49.         $this->fecha $fecha;
  50.         return $this;
  51.     }
  52.     public function getFicheroremesa(): ?string
  53.     {
  54.         return $this->ficheroremesa;
  55.     }
  56.     public function setFicheroremesa(string $ficheroremesa): static
  57.     {
  58.         $this->ficheroremesa $ficheroremesa;
  59.         return $this;
  60.     }
  61.     public function isEnviado(): ?bool
  62.     {
  63.         return $this->enviado;
  64.     }
  65.     public function setEnviado(bool $enviado): static
  66.     {
  67.         $this->enviado $enviado;
  68.         return $this;
  69.     }
  70.     /**
  71.      * @return Collection<int, RecibosTenants>
  72.      */
  73.     public function getRecibosTenants(): Collection
  74.     {
  75.         return $this->recibosTenants;
  76.     }
  77.     public function addRecibosTenant(RecibosTenants $recibosTenant): static
  78.     {
  79.         if (!$this->recibosTenants->contains($recibosTenant)) {
  80.             $this->recibosTenants->add($recibosTenant);
  81.             $recibosTenant->setRemesa($this);
  82.         }
  83.         return $this;
  84.     }
  85.     public function removeRecibosTenant(RecibosTenants $recibosTenant): static
  86.     {
  87.         if ($this->recibosTenants->removeElement($recibosTenant)) {
  88.             // set the owning side to null (unless already changed)
  89.             if ($recibosTenant->getRemesa() === $this) {
  90.                 $recibosTenant->setRemesa(null);
  91.             }
  92.         }
  93.         return $this;
  94.     }
  95.     public function getNombre(): ?string
  96.     {
  97.         return $this->nombre;
  98.     }
  99.     public function setNombre(string $nombre): static
  100.     {
  101.         $this->nombre $nombre;
  102.         return $this;
  103.     }
  104.     /**
  105.      * @return Collection<int, RecibosUtilities>
  106.      */
  107.     public function getRecibosUtilities(): Collection
  108.     {
  109.         return $this->recibosUtilities;
  110.     }
  111.     public function addRecibosUtility(RecibosUtilities $recibosUtility): static
  112.     {
  113.         if (!$this->recibosUtilities->contains($recibosUtility)) {
  114.             $this->recibosUtilities->add($recibosUtility);
  115.             $recibosUtility->setRemesa($this);
  116.         }
  117.         return $this;
  118.     }
  119.     public function removeRecibosUtility(RecibosUtilities $recibosUtility): static
  120.     {
  121.         if ($this->recibosUtilities->removeElement($recibosUtility)) {
  122.             // set the owning side to null (unless already changed)
  123.             if ($recibosUtility->getRemesa() === $this) {
  124.                 $recibosUtility->setRemesa(null);
  125.             }
  126.         }
  127.         return $this;
  128.     }
  129.     public function getImporteRemesa():float{
  130.         $importe=0;
  131.         foreach($this->getRecibosTenants() as $recibo) {
  132.             $importe+=$recibo->getImporte();
  133.         }
  134.         foreach($this->getRecibosUtilities() as $reciboUtility){
  135.             $importe+=$reciboUtility->getImporte();
  136.         }
  137.         return $importe;
  138.     }
  139.     /**
  140.      * @return Collection<int, RecibosGestion>
  141.      */
  142.     public function getRecibosGestions(): Collection
  143.     {
  144.         return $this->recibosGestions;
  145.     }
  146.     public function addRecibosGestion(RecibosGestion $recibosGestion): static
  147.     {
  148.         if (!$this->recibosGestions->contains($recibosGestion)) {
  149.             $this->recibosGestions->add($recibosGestion);
  150.             $recibosGestion->setRemesaRecibo($this);
  151.         }
  152.         return $this;
  153.     }
  154.     public function removeRecibosGestion(RecibosGestion $recibosGestion): static
  155.     {
  156.         if ($this->recibosGestions->removeElement($recibosGestion)) {
  157.             // set the owning side to null (unless already changed)
  158.             if ($recibosGestion->getRemesaRecibo() === $this) {
  159.                 $recibosGestion->setRemesaRecibo(null);
  160.             }
  161.         }
  162.         return $this;
  163.     }
  164.     /**
  165.      * @return Collection<int, RecibosReparaciones>
  166.      */
  167.     public function getRecibosReparaciones(): Collection
  168.     {
  169.         return $this->recibosReparaciones;
  170.     }
  171.     public function addRecibosReparacione(RecibosReparaciones $recibosReparacione): static
  172.     {
  173.         if (!$this->recibosReparaciones->contains($recibosReparacione)) {
  174.             $this->recibosReparaciones->add($recibosReparacione);
  175.             $recibosReparacione->setRemesa($this);
  176.         }
  177.         return $this;
  178.     }
  179.     public function removeRecibosReparacione(RecibosReparaciones $recibosReparacione): static
  180.     {
  181.         if ($this->recibosReparaciones->removeElement($recibosReparacione)) {
  182.             // set the owning side to null (unless already changed)
  183.             if ($recibosReparacione->getRemesa() === $this) {
  184.                 $recibosReparacione->setRemesa(null);
  185.             }
  186.         }
  187.         return $this;
  188.     }
  189. }