src/Entity/HtProforma.php line 13

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\HtProformaRepository;
  4. use Doctrine\Common\Collections\ArrayCollection;
  5. use Doctrine\Common\Collections\Collection;
  6. use Doctrine\ORM\Mapping as ORM;
  7. /**
  8.  * @ORM\Entity(repositoryClass=HtProformaRepository::class)
  9.  */
  10. class HtProforma
  11. {
  12.     /**
  13.      * @ORM\Id
  14.      * @ORM\GeneratedValue
  15.      * @ORM\Column(type="integer")
  16.      */
  17.     private $id;
  18.     /**
  19.      * @ORM\Column(type="integer")
  20.      */
  21.     private $htFile;
  22.     /**
  23.      * @ORM\Column(type="integer")
  24.      */
  25.     private $idNum;
  26.     /**
  27.      * @ORM\Column(type="string", length=3)
  28.      */
  29.     private $prefix;
  30.     /**
  31.      * @ORM\Column(type="datetime_immutable")
  32.      */
  33.     private $dateAt;
  34.     /**
  35.      * @ORM\Column(type="string", length=50)
  36.      */
  37.     private $type;
  38.     /**
  39.      * @ORM\Column(type="float")
  40.      */
  41.     private $totalNet;
  42.     /**
  43.      * @ORM\Column(type="string", length=255)
  44.      */
  45.     private $vatTotalGroup;
  46.     /**
  47.      * @ORM\Column(type="float")
  48.      */
  49.     private $total;
  50.     /**
  51.      * @ORM\Column(type="string", length=255)
  52.      */
  53.     private $clientName;
  54.     /**
  55.      * @ORM\Column(type="string", length=255)
  56.      */
  57.     private $clientAddress;
  58.     /**
  59.      * @ORM\Column(type="string", length=50)
  60.      */
  61.     private $clientDocument;
  62.     /**
  63.      * @ORM\Column(type="string", length=50)
  64.      */
  65.     private $clientType;
  66.     /**
  67.      * @ORM\Column(type="float")
  68.      */
  69.     private $benefit;
  70.     /**
  71.      * @ORM\OneToMany(targetEntity=HtProformaItems::class, mappedBy="proforma", orphanRemoval=true)
  72.      */
  73.     private $htProformaItems;
  74.     public function __construct()
  75.     {
  76.         $this->htProformaItems = new ArrayCollection();
  77.     }
  78.     public function getId(): ?int
  79.     {
  80.         return $this->id;
  81.     }
  82.     public function getHtFile(): ?int
  83.     {
  84.         return $this->htFile;
  85.     }
  86.     public function setHtFile(int $htFile): self
  87.     {
  88.         $this->htFile $htFile;
  89.         return $this;
  90.     }
  91.     public function getIdNum(): ?int
  92.     {
  93.         return $this->idNum;
  94.     }
  95.     public function setIdNum(int $idNum): self
  96.     {
  97.         $this->idNum $idNum;
  98.         return $this;
  99.     }
  100.     public function getPrefix(): ?string
  101.     {
  102.         return $this->prefix;
  103.     }
  104.     public function setPrefix(string $prefix): self
  105.     {
  106.         $this->prefix $prefix;
  107.         return $this;
  108.     }
  109.     public function getDateAt(): ?\DateTimeImmutable
  110.     {
  111.         return $this->dateAt;
  112.     }
  113.     public function setDateAt(\DateTimeImmutable $dateAt): self
  114.     {
  115.         $this->dateAt $dateAt;
  116.         return $this;
  117.     }
  118.     public function getType(): ?string
  119.     {
  120.         return $this->type;
  121.     }
  122.     public function setType(string $type): self
  123.     {
  124.         $this->type $type;
  125.         return $this;
  126.     }
  127.     public function getTotalNet(): ?float
  128.     {
  129.         return $this->totalNet;
  130.     }
  131.     public function setTotalNet(float $totalNet): self
  132.     {
  133.         $this->totalNet $totalNet;
  134.         return $this;
  135.     }
  136.     public function getVatTotalGroup(): ?string
  137.     {
  138.         return $this->vatTotalGroup;
  139.     }
  140.     public function setVatTotalGroup(string $vatTotalGroup): self
  141.     {
  142.         $this->vatTotalGroup $vatTotalGroup;
  143.         return $this;
  144.     }
  145.     public function getTotal(): ?float
  146.     {
  147.         return $this->total;
  148.     }
  149.     public function setTotal(float $total): self
  150.     {
  151.         $this->total $total;
  152.         return $this;
  153.     }
  154.     public function getClientName(): ?string
  155.     {
  156.         return $this->clientName;
  157.     }
  158.     public function setClientName(string $clientName): self
  159.     {
  160.         $this->clientName $clientName;
  161.         return $this;
  162.     }
  163.     public function getClientAddress(): ?string
  164.     {
  165.         return $this->clientAddress;
  166.     }
  167.     public function setClientAddress(string $clientAddress): self
  168.     {
  169.         $this->clientAddress $clientAddress;
  170.         return $this;
  171.     }
  172.     public function getClientDocument(): ?string
  173.     {
  174.         return $this->clientDocument;
  175.     }
  176.     public function setClientDocument(string $clientDocument): self
  177.     {
  178.         $this->clientDocument $clientDocument;
  179.         return $this;
  180.     }
  181.     public function getClientType(): ?string
  182.     {
  183.         return $this->clientType;
  184.     }
  185.     public function setClientType(string $clientType): self
  186.     {
  187.         $this->clientType $clientType;
  188.         return $this;
  189.     }
  190.     public function getBenefit(): ?float
  191.     {
  192.         return $this->benefit;
  193.     }
  194.     public function setBenefit(float $benefit): self
  195.     {
  196.         $this->benefit $benefit;
  197.         return $this;
  198.     }
  199.     /**
  200.      * @return Collection<int, HtProformaItems>
  201.      */
  202.     public function getHtProformaItems(): Collection
  203.     {
  204.         return $this->htProformaItems;
  205.     }
  206.     public function addHtProformaItem(HtProformaItems $htProformaItem): self
  207.     {
  208.         if (!$this->htProformaItems->contains($htProformaItem)) {
  209.             $this->htProformaItems[] = $htProformaItem;
  210.             $htProformaItem->setProforma($this);
  211.         }
  212.         return $this;
  213.     }
  214.     public function removeHtProformaItem(HtProformaItems $htProformaItem): self
  215.     {
  216.         if ($this->htProformaItems->removeElement($htProformaItem)) {
  217.             // set the owning side to null (unless already changed)
  218.             if ($htProformaItem->getProforma() === $this) {
  219.                 $htProformaItem->setProforma(null);
  220.             }
  221.         }
  222.         return $this;
  223.     }
  224. }