src/Entity/Escandallo.php line 15

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\EscandalloRepository;
  4. use Doctrine\Common\Collections\ArrayCollection;
  5. use Doctrine\Common\Collections\Collection;
  6. use Doctrine\ORM\Mapping as ORM;
  7. use Symfony\Component\Serializer\Annotation\Groups;
  8. /**
  9.  * @ORM\Entity(repositoryClass=EscandalloRepository::class)
  10.  * @ORM\HasLifecycleCallbacks()
  11.  */
  12. class Escandallo
  13. {
  14.     /**
  15.      * @ORM\Id
  16.      * @ORM\GeneratedValue
  17.      * @ORM\Column(type="integer")
  18.      * @Groups("escandallo:read")
  19.      */
  20.     private $id;
  21.     /**
  22.      * @ORM\Column(type="float")
  23.      */
  24.     private $totalTenPax;
  25.     /**
  26.      * @ORM\Column(type="float")
  27.      * @Groups("escandallo:read")
  28.      */
  29.     private $costePax;
  30.     /**
  31.      * @ORM\Column(type="float")
  32.      * @Groups("escandallo:read")
  33.      */
  34.     private $pvp;
  35.     /**
  36.      * @ORM\Column(type="float")
  37.      * @Groups("escandallo:read")
  38.      */
  39.     private $pvpNotVat;
  40.     /**
  41.      * @ORM\Column(type="float")
  42.      */
  43.     private $costeDirectoPerc;
  44.     /**
  45.      * @ORM\Column(type="float")
  46.      */
  47.     private $beneficio;
  48.     /**
  49.      * @ORM\Column(type="string", length=255, nullable=true)
  50.      * @Groups("escandallo:read")
  51.      */
  52.     private $foto;
  53.     /**
  54.      * @ORM\Column(type="text", nullable=true)
  55.      */
  56.     private $decription;
  57.     /**
  58.      * @ORM\Column(type="text", nullable=true)
  59.      */
  60.     private $observaciones;
  61.     /**
  62.      * @ORM\Column(type="datetime_immutable")
  63.      */
  64.     private $createdAt;
  65.     /**
  66.      * @ORM\Column(type="datetime_immutable")
  67.      */
  68.     private $updatedAt;
  69.     /**
  70.      * @ORM\ManyToOne(targetEntity=User::class)
  71.      * @ORM\JoinColumn(nullable=false)
  72.      */
  73.     private $createdId;
  74.     /**
  75.      * @ORM\ManyToOne(targetEntity=User::class)
  76.      * @ORM\JoinColumn(nullable=false)
  77.      */
  78.     private $updatedId;
  79.     /**
  80.      * @ORM\OneToMany(targetEntity=EscandalloProduct::class, mappedBy="escandallo", orphanRemoval=true, cascade={"persist", "remove"})
  81.      */
  82.     private $escandalloProducts;
  83.     /**
  84.      * @ORM\OneToMany(targetEntity=EscandalloProduct::class, mappedBy="escandalloChild", orphanRemoval=true, cascade={"persist", "remove"})
  85.      */
  86.     private $escandalloChildProducts;
  87.     /**
  88.      * @ORM\Column(type="string", length=255)
  89.      * @Groups("escandallo:read")
  90.      */
  91.     private $nombre;
  92.     /**
  93.      * @ORM\Column(type="integer")
  94.      */
  95.     private $escandalloPax;
  96.     /**
  97.      * @ORM\ManyToMany(targetEntity=HtMenu::class, mappedBy="escandallo")
  98.      */
  99.     private $htMenus;
  100.     /**
  101.      * @ORM\ManyToOne(targetEntity=FamilyEscandallo::class, inversedBy="escandallo")
  102.      * @ORM\JoinColumn(nullable=true, onDelete="SET NULL")
  103.      */
  104.     private $familyEscandallo;
  105.     /**
  106.      * @ORM\OneToMany(targetEntity=HtNote::class, mappedBy="htEscandallo", orphanRemoval=true)
  107.      */
  108.     private $htNotes;
  109.     public function __construct()
  110.     {
  111.         $this->escandalloProducts = new ArrayCollection();
  112.         $this->escandalloChildProducts = new ArrayCollection();
  113.         $this->htMenus = new ArrayCollection();
  114.         $this->htNotes = new ArrayCollection();
  115.     }
  116.     public function getId(): ?int
  117.     {
  118.         return $this->id;
  119.     }
  120.     public function getTotalTenPax(): ?float
  121.     {
  122.         return $this->totalTenPax;
  123.     }
  124.     public function setTotalTenPax(float $totalTenPax): self
  125.     {
  126.         $this->totalTenPax $totalTenPax;
  127.         return $this;
  128.     }
  129.     public function getCostePax(): ?float
  130.     {
  131.         return $this->costePax;
  132.     }
  133.     public function setCostePax(float $costePax): self
  134.     {
  135.         $this->costePax $costePax;
  136.         return $this;
  137.     }
  138.     public function getPvp(): ?float
  139.     {
  140.         return $this->pvp;
  141.     }
  142.     public function setPvp(float $pvp): self
  143.     {
  144.         $this->pvp $pvp;
  145.         return $this;
  146.     }
  147.     public function getPvpNotVat(): ?float
  148.     {
  149.         return $this->pvpNotVat;
  150.     }
  151.     public function setPvpNotVat(float $pvpNotVat): self
  152.     {
  153.         $this->pvpNotVat $pvpNotVat;
  154.         return $this;
  155.     }
  156.     public function getCosteDirectoPerc(): ?float
  157.     {
  158.         return $this->costeDirectoPerc;
  159.     }
  160.     public function setCosteDirectoPerc(float $costeDirectoPerc): self
  161.     {
  162.         $this->costeDirectoPerc $costeDirectoPerc;
  163.         return $this;
  164.     }
  165.     public function getBeneficio(): ?float
  166.     {
  167.         return $this->beneficio;
  168.     }
  169.     public function setBeneficio(float $beneficio): self
  170.     {
  171.         $this->beneficio $beneficio;
  172.         return $this;
  173.     }
  174.     public function getFoto(): ?string
  175.     {
  176.         return $this->foto;
  177.     }
  178.     public function setFoto(?string $foto): self
  179.     {
  180.         $this->foto $foto;
  181.         return $this;
  182.     }
  183.     public function getDecription(): ?string
  184.     {
  185.         return $this->decription;
  186.     }
  187.     public function setDecription(?string $decription): self
  188.     {
  189.         $this->decription $decription;
  190.         return $this;
  191.     }
  192.     public function getObservaciones(): ?string
  193.     {
  194.         return $this->observaciones;
  195.     }
  196.     public function setObservaciones(?string $observaciones): self
  197.     {
  198.         $this->observaciones $observaciones;
  199.         return $this;
  200.     }
  201.     public function getCreatedAt(): ?\DateTimeImmutable
  202.     {
  203.         return $this->createdAt;
  204.     }
  205.     public function setCreatedAt(\DateTimeImmutable $createdAt): self
  206.     {
  207.         $this->createdAt $createdAt;
  208.         return $this;
  209.     }
  210.     /**
  211.      * @ORM\PrePersist
  212.      */
  213.     public function setCreatedAtValue()
  214.     {
  215.         $this->createdAt = new \DateTimeImmutable();
  216.     }
  217.     /**
  218.      * @ORM\PrePersist
  219.      * @ORM\PreUpdate
  220.      */
  221.     public function setUpdatedAtValue()
  222.     {
  223.         $this->updatedAt = new \DateTimeImmutable();
  224.     }
  225.     public function getUpdatedAt(): ?\DateTimeImmutable
  226.     {
  227.         return $this->updatedAt;
  228.     }
  229.     public function setUpdatedAt(\DateTimeImmutable $updatedAt): self
  230.     {
  231.         $this->updatedAt $updatedAt;
  232.         return $this;
  233.     }
  234.     public function getCreatedId(): ?User
  235.     {
  236.         return $this->createdId;
  237.     }
  238.     public function setCreatedId(?User $createdId): self
  239.     {
  240.         $this->createdId $createdId;
  241.         return $this;
  242.     }
  243.     public function getUpdatedId(): ?User
  244.     {
  245.         return $this->updatedId;
  246.     }
  247.     public function setUpdatedId(?User $updatedId): self
  248.     {
  249.         $this->updatedId $updatedId;
  250.         return $this;
  251.     }
  252.     /**
  253.      * @return Collection<int, EscandalloProduct>
  254.      */
  255.     public function getEscandalloProducts(): Collection
  256.     {
  257.         return $this->escandalloProducts;
  258.     }
  259.     public function addEscandalloProduct(EscandalloProduct $escandalloProduct): self
  260.     {
  261.         if (!$this->escandalloProducts->contains($escandalloProduct)) {
  262.             $this->escandalloProducts[] = $escandalloProduct;
  263.             $escandalloProduct->setEscandallo($this);
  264.         }
  265.         return $this;
  266.     }
  267.     public function removeEscandalloProduct(EscandalloProduct $escandalloProduct): self
  268.     {
  269.         if ($this->escandalloProducts->removeElement($escandalloProduct)) {
  270.             // set the owning side to null (unless already changed)
  271.             if ($escandalloProduct->getEscandallo() === $this) {
  272.                 $escandalloProduct->setEscandallo(null);
  273.             }
  274.         }
  275.         return $this;
  276.     }
  277.     /**
  278.      * @return Collection<int, EscandalloProduct>
  279.      */
  280.     public function getEscandalloChildProducts(): Collection
  281.     {
  282.         return $this->escandalloChildProducts;
  283.     }
  284.     public function addEscandalloChildProduct(EscandalloProduct $escandalloChildProduct): self
  285.     {
  286.         if (!$this->escandalloChildProducts->contains($escandalloChildProduct)) {
  287.             $this->escandalloChildProducts[] = $escandalloChildProduct;
  288.             $escandalloChildProduct->setEscandalloChild($this);
  289.         }
  290.         return $this;
  291.     }
  292.     public function removeEscandalloChildProduct(EscandalloProduct $escandalloChildProduct): self
  293.     {
  294.         if ($this->escandalloChildProducts->removeElement($escandalloChildProduct)) {
  295.             // set the owning side to null (unless already changed)
  296.             if ($escandalloChildProduct->getEscandalloChild() === $this) {
  297.                 $escandalloChildProduct->setEscandalloChild(null);
  298.             }
  299.         }
  300.         return $this;
  301.     }
  302.     public function getNombre(): ?string
  303.     {
  304.         return $this->nombre;
  305.     }
  306.     public function setNombre(string $nombre): self
  307.     {
  308.         $this->nombre $nombre;
  309.         return $this;
  310.     }
  311.     public function getEscandalloPax(): ?int
  312.     {
  313.         return $this->escandalloPax;
  314.     }
  315.     public function setEscandalloPax(int $escandalloPax): self
  316.     {
  317.         $this->escandalloPax $escandalloPax;
  318.         return $this;
  319.     }
  320.     /**
  321.      * @return Collection<int, HtMenu>
  322.      */
  323.     public function getHtMenus(): Collection
  324.     {
  325.         return $this->htMenus;
  326.     }
  327.     public function addHtMenu(HtMenu $htMenu): self
  328.     {
  329.         if (!$this->htMenus->contains($htMenu)) {
  330.             $this->htMenus[] = $htMenu;
  331.             $htMenu->addEscandallo($this);
  332.         }
  333.         return $this;
  334.     }
  335.     public function removeHtMenu(HtMenu $htMenu): self
  336.     {
  337.         if ($this->htMenus->removeElement($htMenu)) {
  338.             $htMenu->removeEscandallo($this);
  339.         }
  340.         return $this;
  341.     }
  342.     public function getFamilyEscandallo(): ?FamilyEscandallo
  343.     {
  344.         return $this->familyEscandallo;
  345.     }
  346.     public function setFamilyEscandallo(?FamilyEscandallo $familyEscandallo): self
  347.     {
  348.         $this->familyEscandallo $familyEscandallo;
  349.         return $this;
  350.     }
  351.     /**
  352.      * @return Collection<int, HtNote>
  353.      */
  354.     public function getHtNotes(): Collection
  355.     {
  356.         return $this->htNotes;
  357.     }
  358.     public function addHtNote(HtNote $htNote): self
  359.     {
  360.         if (!$this->htNotes->contains($htNote)) {
  361.             $this->htNotes[] = $htNote;
  362.             $htNote->setHtEscandallo($this);
  363.         }
  364.         return $this;
  365.     }
  366.     public function removeHtNote(HtNote $htNote): self
  367.     {
  368.         if ($this->htNotes->removeElement($htNote)) {
  369.             // set the owning side to null (unless already changed)
  370.             if ($htNote->getHtEscandallo() === $this) {
  371.                 $htNote->setHtEscandallo(null);
  372.             }
  373.         }
  374.         return $this;
  375.     }
  376. }