src/Entity/ProposalsInvoiceSummary.php line 11

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\ProposalsInvoiceSummaryRepository;
  4. use Doctrine\ORM\Mapping as ORM;
  5. /**
  6.  * @ORM\Entity(repositoryClass=ProposalsInvoiceSummaryRepository::class)
  7.  */
  8. class ProposalsInvoiceSummary
  9. {
  10.     /**
  11.      * @ORM\Id
  12.      * @ORM\GeneratedValue
  13.      * @ORM\Column(type="integer")
  14.      */
  15.     private $id;
  16.     /**
  17.      * @ORM\Column(type="string", length=255)
  18.      */
  19.     private $description;
  20.     /**
  21.      * @ORM\Column(type="float", nullable=true)
  22.      * Monto Neto total de la factura
  23.      */
  24.     private $net;
  25.     /**
  26.      * @ORM\Column(type="string", length=10, nullable=true)
  27.      * Moneda de la factura
  28.      */
  29.     private $currency;
  30.     /**
  31.      * @ORM\Column(type="float", nullable=true)
  32.      * Iva total a 10% de la factura
  33.      */
  34.     private $vatTen;
  35.     /**
  36.      * @ORM\Column(type="float", nullable=true)
  37.      * Iva total a 21% de la factura
  38.      */
  39.     private $vatTwentyOne;
  40.     /**
  41.      * @ORM\Column(type="float", nullable=true)
  42.      * Pagos po transferencia, cheques, faturas de deposito, etc
  43.      */
  44.     private $payments;
  45.     /**
  46.      * @ORM\Column(type="integer")
  47.      */
  48.     private $proposalId;
  49.     public function getId(): ?int
  50.     {
  51.         return $this->id;
  52.     }
  53.     public function getDescription(): ?string
  54.     {
  55.         return $this->description;
  56.     }
  57.     public function setDescription(string $description): self
  58.     {
  59.         $this->description $description;
  60.         return $this;
  61.     }
  62.     public function getNet(): ?float
  63.     {
  64.         return $this->net;
  65.     }
  66.     public function setNet(?float $net): self
  67.     {
  68.         $this->net $net;
  69.         return $this;
  70.     }
  71.     public function getCurrency(): ?string
  72.     {
  73.         return $this->currency;
  74.     }
  75.     public function setCurrency(?string $currency): self
  76.     {
  77.         $this->currency $currency;
  78.         return $this;
  79.     }
  80.     public function getVatTen(): ?float
  81.     {
  82.         return $this->vatTen;
  83.     }
  84.     public function setVatTen(?float $vatTen): self
  85.     {
  86.         $this->vatTen $vatTen;
  87.         return $this;
  88.     }
  89.     public function getVatTwentyOne(): ?float
  90.     {
  91.         return $this->vatTwentyOne;
  92.     }
  93.     public function setVatTwentyOne(?float $vatTwentyOne): self
  94.     {
  95.         $this->vatTwentyOne $vatTwentyOne;
  96.         return $this;
  97.     }
  98.     public function getPayments(): ?float
  99.     {
  100.         return $this->payments;
  101.     }
  102.     public function setPayments(?float $payments): self
  103.     {
  104.         $this->payments $payments;
  105.         return $this;
  106.     }
  107.     public function getProposalId(): ?int
  108.     {
  109.         return $this->proposalId;
  110.     }
  111.     public function setProposalId(int $proposalId): self
  112.     {
  113.         $this->proposalId $proposalId;
  114.         return $this;
  115.     }
  116. }