src/Entity/SyntheseRemunarationCab.php line 11

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\SyntheseRemunarationCabRepository;
  4. use Doctrine\Common\Collections\ArrayCollection;
  5. use Doctrine\Common\Collections\Collection;
  6. use Doctrine\ORM\Mapping as ORM;
  7. #[ORM\Entity(repositoryClassSyntheseRemunarationCabRepository::class)]
  8. class SyntheseRemunarationCab
  9. {
  10.     #[ORM\Id]
  11.     #[ORM\GeneratedValue]
  12.     #[ORM\Column]
  13.     private ?int $id null;
  14.     #[ORM\ManyToOne(inversedBy'syntheseRemunarationCabs')]
  15.     private ?Periode $periode null;
  16.     #[ORM\Column(nullabletrue)]
  17.     private ?float $salaireBruteImposable null;
  18.     #[ORM\Column(nullabletrue)]
  19.     private ?float $salaireBrute null;
  20.     #[ORM\Column(nullabletrue)]
  21.     private ?float $totalPrimesNonImposable null;
  22.     #[ORM\Column(nullabletrue)]
  23.     private ?float $totalPrelevement null;
  24.     #[ORM\Column(nullabletrue)]
  25.     private ?float $cnssPs null;
  26.     #[ORM\Column(nullabletrue)]
  27.     private ?float $cnssPp null;
  28.     #[ORM\Column(nullabletrue)]
  29.     private ?float $cimrPp null;
  30.     #[ORM\Column(nullabletrue)]
  31.     private ?float $cimrPs null;
  32.     #[ORM\Column(nullabletrue)]
  33.     private ?float $ir null;
  34.     #[ORM\Column(nullabletrue)]
  35.     private ?float $netTheorique null;
  36.     #[ORM\Column(nullabletrue)]
  37.     private ?float $netFinal null;
  38.     #[ORM\OneToMany(mappedBy'cab'targetEntitySyntheseRemunarationDet::class)]
  39.     private Collection $dets;
  40.     #[ORM\Column(length255nullabletrue)]
  41.     private ?string $groupement null;
  42.     public function __construct()
  43.     {
  44.         $this->dets = new ArrayCollection();
  45.     }
  46.     public function getId(): ?int
  47.     {
  48.         return $this->id;
  49.     }
  50.     public function getPeriode(): ?Periode
  51.     {
  52.         return $this->periode;
  53.     }
  54.     public function setPeriode(?Periode $periode): static
  55.     {
  56.         $this->periode $periode;
  57.         return $this;
  58.     }
  59.     public function getSalaireBruteImposable(): ?float
  60.     {
  61.         return $this->salaireBruteImposable;
  62.     }
  63.     public function setSalaireBruteImposable(?float $salaireBruteImposable): static
  64.     {
  65.         $this->salaireBruteImposable round($salaireBruteImposable2);
  66.         return $this;
  67.     }
  68.     public function getSalaireBrute(): ?float
  69.     {
  70.         return $this->salaireBrute;
  71.     }
  72.     public function setSalaireBrute(?float $salaireBrute): static
  73.     {
  74.         $this->salaireBrute round($salaireBrute,2);
  75.         return $this;
  76.     }
  77.     public function getTotalPrimesNonImposable(): ?float
  78.     {
  79.         return $this->totalPrimesNonImposable;
  80.     }
  81.     public function setTotalPrimesNonImposable(?float $totalPrimesNonImposable): static
  82.     {
  83.         $this->totalPrimesNonImposable round($totalPrimesNonImposable,2);
  84.         return $this;
  85.     }
  86.     public function getTotalPrelevement(): ?float
  87.     {
  88.         return $this->totalPrelevement;
  89.     }
  90.     public function setTotalPrelevement(?float $totalPrelevement): static
  91.     {
  92.         $this->totalPrelevement round($totalPrelevement,2);
  93.         return $this;
  94.     }
  95.     public function getCnssPs(): ?float
  96.     {
  97.         return $this->cnssPs;
  98.     }
  99.     public function setCnssPs(?float $cnssPs): static
  100.     {
  101.         $this->cnssPs round($cnssPs,2);
  102.         return $this;
  103.     }
  104.     public function getCnssPp(): ?float
  105.     {
  106.         return $this->cnssPp;
  107.     }
  108.     public function setCnssPp(?float $cnssPp): static
  109.     {
  110.         $this->cnssPp round($cnssPp,2);
  111.         return $this;
  112.     }
  113.     public function getCimrPp(): ?float
  114.     {
  115.         return $this->cimrPp;
  116.     }
  117.     public function setCimrPp(?float $cimrPp): static
  118.     {
  119.         $this->cimrPp round($cimrPp,2);
  120.         return $this;
  121.     }
  122.     public function getCimrPs(): ?float
  123.     {
  124.         return $this->cimrPs;
  125.     }
  126.     public function setCimrPs(?float $cimrPs): static
  127.     {
  128.         $this->cimrPs round($cimrPs,2);
  129.         return $this;
  130.     }
  131.     public function getIr(): ?float
  132.     {
  133.         return $this->ir;
  134.     }
  135.     public function setIr(?float $ir): static
  136.     {
  137.         $this->ir round($ir,2);
  138.         return $this;
  139.     }
  140.     public function getNetTheorique(): ?float
  141.     {
  142.         return $this->netTheorique;
  143.     }
  144.     public function setNetTheorique(?float $netTheorique): static
  145.     {
  146.         $this->netTheorique round($netTheorique,2);
  147.         return $this;
  148.     }
  149.     public function getNetFinal(): ?float
  150.     {
  151.         return $this->netFinal;
  152.     }
  153.     public function setNetFinal(?float $netFinal): static
  154.     {
  155.         $this->netFinal round($netFinal,2);
  156.         return $this;
  157.     }
  158.     /**
  159.      * @return Collection<int, SyntheseRemunarationDet>
  160.      */
  161.     public function getDets(): Collection
  162.     {
  163.         return $this->dets;
  164.     }
  165.     public function addDet(SyntheseRemunarationDet $det): static
  166.     {
  167.         if (!$this->dets->contains($det)) {
  168.             $this->dets->add($det);
  169.             $det->setCab($this);
  170.         }
  171.         return $this;
  172.     }
  173.     public function removeDet(SyntheseRemunarationDet $det): static
  174.     {
  175.         if ($this->dets->removeElement($det)) {
  176.             // set the owning side to null (unless already changed)
  177.             if ($det->getCab() === $this) {
  178.                 $det->setCab(null);
  179.             }
  180.         }
  181.         return $this;
  182.     }
  183.     public function getGroupement(): ?string
  184.     {
  185.         return $this->groupement;
  186.     }
  187.     public function setGroupement(?string $groupement): static
  188.     {
  189.         $this->groupement $groupement;
  190.         return $this;
  191.     }
  192. }