src/Entity/Charge.php line 11

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\ChargeRepository;
  4. use Doctrine\ORM\Mapping as ORM;
  5. /**
  6.  * @ORM\Entity(repositoryClass=ChargeRepository::class)
  7.  */
  8. class Charge
  9. {
  10.     /**
  11.      * @ORM\Id
  12.      * @ORM\GeneratedValue
  13.      * @ORM\Column(type="integer")
  14.      */
  15.     private $id;
  16.     /**
  17.      * @ORM\Column(type="date")
  18.      */
  19.     private $date;
  20.     /**
  21.      * @ORM\ManyToOne(targetEntity=User::class)
  22.      * @ORM\JoinColumn(nullable=false)
  23.      */
  24.     private $agent;
  25.     /**
  26.      * @ORM\Column(type="string", length=255)
  27.      */
  28.     private $designation;
  29.     /**
  30.      * @ORM\Column(type="decimal", precision=10, scale=2)
  31.      */
  32.     private $montantHT;
  33.     /**
  34.      * @ORM\Column(type="string", length=50)
  35.      */
  36.     private $tauxTVA;
  37.     /**
  38.      * @ORM\Column(type="decimal", precision=10, scale=2)
  39.      */
  40.     private $montantTVA;
  41.     /**
  42.      * @ORM\Column(type="decimal", precision=10, scale=2)
  43.      */
  44.     private $montantTTC;
  45.     /**
  46.      * @ORM\Column(type="date", nullable=true)
  47.      */
  48.     private $datePaiement;
  49.     /**
  50.      * @ORM\Column(type="string", length=255)
  51.      */
  52.     private $categorieDesignation;
  53.     /**
  54.      * @ORM\Column(type="boolean")
  55.      */
  56.     private $isEntrepriseCharge false;
  57.     /**
  58.      * @ORM\Column(type="boolean")
  59.      */
  60.     private $isMensuel false;
  61.     /**
  62.      * @ORM\Column(type="string", length=255, nullable=true)
  63.      */
  64.     private $categoriePersonnalisee;
  65.     public function getId(): ?int
  66.     {
  67.         return $this->id;
  68.     }
  69.     public function getDate(): ?\DateTimeInterface
  70.     {
  71.         return $this->date;
  72.     }
  73.     public function setDate(\DateTimeInterface $date): self
  74.     {
  75.         $this->date $date;
  76.         return $this;
  77.     }
  78.     public function getAgent(): ?User
  79.     {
  80.         return $this->agent;
  81.     }
  82.     public function setAgent(?User $agent): self
  83.     {
  84.         $this->agent $agent;
  85.         return $this;
  86.     }
  87.     public function getDesignation(): ?string
  88.     {
  89.         return $this->designation;
  90.     }
  91.     public function setDesignation(string $designation): self
  92.     {
  93.         $this->designation $designation;
  94.         return $this;
  95.     }
  96.     public function getMontantHT()
  97.     {
  98.         return $this->montantHT;
  99.     }
  100.     public function setMontantHT($montantHT): self
  101.     {
  102.         if (is_string($montantHT)) {
  103.             $montantHT str_replace([' '','], ['''.'], $montantHT);
  104.         }
  105.         $this->montantHT $montantHT;
  106.         return $this;
  107.     }
  108.     public function getTauxTVA(): ?string
  109.     {
  110.         return $this->tauxTVA;
  111.     }
  112.     public function setTauxTVA(?string $tauxTVA): self
  113.     {
  114.         $this->tauxTVA $tauxTVA;
  115.         return $this;
  116.     }
  117.     public function getMontantTVA()
  118.     {
  119.         return $this->montantTVA;
  120.     }
  121.     public function setMontantTVA($montantTVA): self
  122.     {
  123.         if (is_string($montantTVA)) {
  124.             $montantTVA str_replace([' '','], ['''.'], $montantTVA);
  125.         }
  126.         $this->montantTVA $montantTVA;
  127.         return $this;
  128.     }
  129.     public function getMontantTTC()
  130.     {
  131.         return $this->montantTTC;
  132.     }
  133.     public function setMontantTTC($montantTTC): self
  134.     {
  135.         if (is_string($montantTTC)) {
  136.             $montantTTC str_replace([' '','], ['''.'], $montantTTC);
  137.         }
  138.         $this->montantTTC $montantTTC;
  139.         return $this;
  140.     }
  141.     public function getDatePaiement(): ?\DateTimeInterface
  142.     {
  143.         return $this->datePaiement;
  144.     }
  145.     public function setDatePaiement(?\DateTimeInterface $datePaiement): self
  146.     {
  147.         $this->datePaiement $datePaiement;
  148.         return $this;
  149.     }
  150.     public function getCategorieDesignation(): ?string
  151.     {
  152.         return $this->categorieDesignation;
  153.     }
  154.     public function setCategorieDesignation(string $categorieDesignation): self
  155.     {
  156.         $this->categorieDesignation $categorieDesignation;
  157.         return $this;
  158.     }
  159.     public function getIsEntrepriseCharge(): ?bool
  160.     {
  161.         return $this->isEntrepriseCharge;
  162.     }
  163.     public function setIsEntrepriseCharge(bool $isEntrepriseCharge): self
  164.     {
  165.         $this->isEntrepriseCharge $isEntrepriseCharge;
  166.         return $this;
  167.     }
  168.     public function getIsMensuel(): ?bool
  169.     {
  170.         return $this->isMensuel;
  171.     }
  172.     public function setIsMensuel(bool $isMensuel): self
  173.     {
  174.         $this->isMensuel $isMensuel;
  175.         return $this;
  176.     }
  177.     public function getCategoriePersonnalisee(): ?string
  178.     {
  179.         return $this->categoriePersonnalisee;
  180.     }
  181.     public function setCategoriePersonnalisee(?string $categoriePersonnalisee): self
  182.     {
  183.         $this->categoriePersonnalisee $categoriePersonnalisee;
  184.         return $this;
  185.     }
  186. }