src/Entity/DocumentLigne.php line 11

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\DocumentLigneRepository;
  4. use Doctrine\ORM\Mapping as ORM;
  5. /**
  6.  * @ORM\Entity(repositoryClass=DocumentLigneRepository::class)
  7.  */
  8. class DocumentLigne
  9. {
  10.     /**
  11.      * @ORM\Id
  12.      * @ORM\GeneratedValue
  13.      * @ORM\Column(type="integer")
  14.      */
  15.     private $id;
  16.     /**
  17.      * @ORM\ManyToOne(targetEntity=Document::class, inversedBy="documentLignes")
  18.      * @ORM\JoinColumn(nullable=false)
  19.      */
  20.     private $document;
  21.     /**
  22.      * @ORM\Column(type="string", length=255, nullable=true)
  23.      */
  24.     private $libelle;
  25.     /**
  26.      * @ORM\Column(type="text", nullable=true)
  27.      */
  28.     private $description;
  29.     /**
  30.      * @ORM\Column(type="float")
  31.      */
  32.     private $montant_ht;
  33.     /**
  34.      * @ORM\Column(type="float")
  35.      */
  36.     private $taux_tva;
  37.     /**
  38.      * @ORM\Column(type="float")
  39.      */
  40.     private $montant_tva;
  41.     /**
  42.      * @ORM\Column(type="datetime")
  43.      */
  44.     private $date_crea;
  45.     /**
  46.      * @ORM\Column(type="integer")
  47.      */
  48.     private $user_crea;
  49.     /**
  50.      * @ORM\Column(type="datetime", nullable=true)
  51.      */
  52.     private $date_modif;
  53.     /**
  54.      * @ORM\Column(type="integer", nullable=true)
  55.      */
  56.     private $user_modif;
  57.     /**
  58.      * @ORM\Column(type="float")
  59.      */
  60.     private $qte;
  61.     /**
  62.      * @ORM\Column(type="float")
  63.      */
  64.     private $puht;
  65.     public function getId(): ?int
  66.     {
  67.         return $this->id;
  68.     }
  69.     public function getDocument(): ?Document
  70.     {
  71.         return $this->document;
  72.     }
  73.     public function setDocument(?Document $document): self
  74.     {
  75.         $this->document $document;
  76.         return $this;
  77.     }
  78.     public function getLibelle(): ?string
  79.     {
  80.         return $this->libelle;
  81.     }
  82.     public function setLibelle(?string $libelle): self
  83.     {
  84.         $this->libelle $libelle;
  85.         return $this;
  86.     }
  87.     public function getDescription(): ?string
  88.     {
  89.         return $this->description;
  90.     }
  91.     public function setDescription(?string $description): self
  92.     {
  93.         $this->description $description;
  94.         return $this;
  95.     }
  96.     public function getMontantHt(): ?float
  97.     {
  98.         return $this->montant_ht;
  99.     }
  100.     public function setMontantHt(float $montant_ht): self
  101.     {
  102.         $this->montant_ht $montant_ht;
  103.         return $this;
  104.     }
  105.     public function getTauxTva(): ?float
  106.     {
  107.         return $this->taux_tva;
  108.     }
  109.     public function setTauxTva(float $taux_tva): self
  110.     {
  111.         $this->taux_tva $taux_tva;
  112.         return $this;
  113.     }
  114.     public function getMontantTva(): ?float
  115.     {
  116.         return $this->montant_tva;
  117.     }
  118.     public function setMontantTva(float $montant_tva): self
  119.     {
  120.         $this->montant_tva $montant_tva;
  121.         return $this;
  122.     }
  123.     public function getDateCrea(): ?\DateTimeInterface
  124.     {
  125.         return $this->date_crea;
  126.     }
  127.     public function setDateCrea(\DateTimeInterface $date_crea): self
  128.     {
  129.         $this->date_crea $date_crea;
  130.         return $this;
  131.     }
  132.     public function getUserCrea(): ?int
  133.     {
  134.         return $this->user_crea;
  135.     }
  136.     public function setUserCrea(int $user_crea): self
  137.     {
  138.         $this->user_crea $user_crea;
  139.         return $this;
  140.     }
  141.     public function getDateModif(): ?\DateTimeInterface
  142.     {
  143.         return $this->date_modif;
  144.     }
  145.     public function setDateModif(?\DateTimeInterface $date_modif): self
  146.     {
  147.         $this->date_modif $date_modif;
  148.         return $this;
  149.     }
  150.     public function getUserModif(): ?int
  151.     {
  152.         return $this->user_modif;
  153.     }
  154.     public function setUserModif(?int $user_modif): self
  155.     {
  156.         $this->user_modif $user_modif;
  157.         return $this;
  158.     }
  159.     public function getQte(): ?float
  160.     {
  161.         return $this->qte;
  162.     }
  163.     public function setQte(float $qte): self
  164.     {
  165.         $this->qte $qte;
  166.         return $this;
  167.     }
  168.     public function getPuht(): ?float
  169.     {
  170.         return $this->puht;
  171.     }
  172.     public function setPuht(float $puht): self
  173.     {
  174.         $this->puht $puht;
  175.         return $this;
  176.     }
  177.     public function performMontant(): self
  178.     {
  179.         if(null===$this->qte$this->qte 0;
  180.         if(null===$this->puht$this->puht 0;
  181.         if(null===$this->taux_tva$this->taux_tva 0;
  182.         $this->montant_ht $this->qte $this->puht;
  183.         $this->montant_tva $this->montant_ht $this->taux_tva;
  184.         return $this;
  185.     }
  186. }