src/Entity/Contrat.php line 11

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\ContratRepository;
  4. use Doctrine\ORM\Mapping as ORM;
  5. /**
  6.  * @ORM\Entity(repositoryClass=ContratRepository::class)
  7.  */
  8. class Contrat
  9. {
  10.     /**
  11.      * @ORM\Id
  12.      * @ORM\GeneratedValue
  13.      * @ORM\Column(type="integer")
  14.      */
  15.     private $id;
  16.     /**
  17.      * @ORM\ManyToOne(targetEntity=Tiers::class, inversedBy="contrats")
  18.      * @ORM\JoinColumn(nullable=true)
  19.      */
  20.     private $salarie;
  21.     /**
  22.      * @ORM\Column(type="integer")
  23.      */
  24.     private $nb_jour_pointage;
  25.     /**
  26.      * @ORM\Column(type="float")
  27.      */
  28.     private $tarif_jour;
  29.     /**
  30.      * @ORM\Column(type="float")
  31.      */
  32.     private $charge;
  33.     /**
  34.      * @ORM\Column(type="float")
  35.      */
  36.     private $heure_par_jour;
  37.     /**
  38.      * @ORM\Column(type="json", nullable=true)
  39.      */
  40.     private $liste_date_pointage = [];
  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="string", length=255, nullable=true)
  59.      */
  60.     private $id_signature_elec;
  61.     /**
  62.      * @ORM\Column(type="integer")
  63.      */
  64.     private $id_statut_signature_elec;
  65.     /**
  66.      * @ORM\Column(type="text", nullable=true)
  67.      */
  68.     private $description;
  69.     /**
  70.      * @ORM\Column(type="integer")
  71.      */
  72.     private $mois;
  73.     /**
  74.      * @ORM\Column(type="integer")
  75.      */
  76.     private $annee;
  77.     /**
  78.      * @ORM\Column(type="integer", nullable=true)
  79.      */
  80.     private $id_projet;
  81.     /**
  82.      * @ORM\Column(type="datetime", nullable=true)
  83.      */
  84.     private $date_urssaf;
  85.     /**
  86.      * @ORM\Column(type="string", length=255, nullable=true)
  87.      */
  88.     private $statut_urssaf;
  89.     private $_error = [];
  90.     public function getId(): ?int
  91.     {
  92.         return $this->id;
  93.     }
  94.     public function getSalarie(): ?Tiers
  95.     {
  96.         return $this->salarie;
  97.     }
  98.     public function setSalarie(?Tiers $salarie): self
  99.     {
  100.         $this->salarie $salarie;
  101.         return $this;
  102.     }
  103.     public function getNbJourPointage(): ?int
  104.     {
  105.         return $this->nb_jour_pointage;
  106.     }
  107.     public function setNbJourPointage(int $nb_jour_pointage): self
  108.     {
  109.         $this->nb_jour_pointage $nb_jour_pointage;
  110.         return $this;
  111.     }
  112.     public function getTarifJour(): ?float
  113.     {
  114.         return $this->tarif_jour;
  115.     }
  116.     public function setTarifJour(float $tarif_jour): self
  117.     {
  118.         $this->tarif_jour $tarif_jour;
  119.         return $this;
  120.     }
  121.     public function getCharge(): ?float
  122.     {
  123.         return $this->charge;
  124.     }
  125.     public function setCharge(float $charge): self
  126.     {
  127.         $this->charge $charge;
  128.         return $this;
  129.     }
  130.     public function getHeureParJour(): ?float
  131.     {
  132.         return $this->heure_par_jour;
  133.     }
  134.     public function setHeureParJour(float $heure_par_jour): self
  135.     {
  136.         $this->heure_par_jour $heure_par_jour;
  137.         return $this;
  138.     }
  139.     public function getListeDatePointage(): ?array
  140.     {
  141.         return $this->liste_date_pointage;
  142.     }
  143.     public function setListeDatePointage(?array $liste_date_pointage): self
  144.     {
  145.         $this->liste_date_pointage $liste_date_pointage;
  146.         return $this;
  147.     }
  148.     public function getDateCrea(): ?\DateTimeInterface
  149.     {
  150.         return $this->date_crea;
  151.     }
  152.     public function setDateCrea(\DateTimeInterface $date_crea): self
  153.     {
  154.         $this->date_crea $date_crea;
  155.         return $this;
  156.     }
  157.     public function getUserCrea(): ?int
  158.     {
  159.         return $this->user_crea;
  160.     }
  161.     public function setUserCrea(int $user_crea): self
  162.     {
  163.         $this->user_crea $user_crea;
  164.         return $this;
  165.     }
  166.     public function getDateModif(): ?\DateTimeInterface
  167.     {
  168.         return $this->date_modif;
  169.     }
  170.     public function setDateModif(?\DateTimeInterface $date_modif): self
  171.     {
  172.         $this->date_modif $date_modif;
  173.         return $this;
  174.     }
  175.     public function getUserModif(): ?int
  176.     {
  177.         return $this->user_modif;
  178.     }
  179.     public function setUserModif(?int $user_modif): self
  180.     {
  181.         $this->user_modif $user_modif;
  182.         return $this;
  183.     }
  184.     public function getIdSignatureElec(): ?string
  185.     {
  186.         return $this->id_signature_elec;
  187.     }
  188.     public function setIdSignatureElec(?string $id_signature_elec): self
  189.     {
  190.         $this->id_signature_elec $id_signature_elec;
  191.         return $this;
  192.     }
  193.     public function getIdStatutSignatureElec(): ?int
  194.     {
  195.         return $this->id_statut_signature_elec;
  196.     }
  197.     public function setIdStatutSignatureElec(int $id_statut_signature_elec): self
  198.     {
  199.         $this->id_statut_signature_elec $id_statut_signature_elec;
  200.         return $this;
  201.     }
  202.     public function getDescription(): ?string
  203.     {
  204.         return $this->description;
  205.     }
  206.     public function setDescription(?string $description): self
  207.     {
  208.         $this->description $description;
  209.         return $this;
  210.     }
  211.     public function getMois(): ?int
  212.     {
  213.         return $this->mois;
  214.     }
  215.     public function setMois(int $mois): self
  216.     {
  217.         $this->mois $mois;
  218.         return $this;
  219.     }
  220.     public function getAnnee(): ?int
  221.     {
  222.         return $this->annee;
  223.     }
  224.     public function setAnnee(int $annee): self
  225.     {
  226.         $this->annee $annee;
  227.         return $this;
  228.     }
  229.     public function getIdProjet(): ?int
  230.     {
  231.         return $this->id_projet;
  232.     }
  233.     public function setIdProjet(?int $id_projet): self
  234.     {
  235.         $this->id_projet $id_projet;
  236.         return $this;
  237.     }
  238.     public function getDateUrssaf(): ?\DateTimeInterface
  239.     {
  240.         return $this->date_urssaf;
  241.     }
  242.     public function setDateUrssaf(?\DateTimeInterface $date_urssaf): self
  243.     {
  244.         $this->date_urssaf $date_urssaf;
  245.         return $this;
  246.     }
  247.     public function getStatutUrssaf(): ?string
  248.     {
  249.         return $this->statut_urssaf;
  250.     }
  251.     public function setStatutUrssaf(?string $statut_urssaf): self
  252.     {
  253.         $this->statut_urssaf $statut_urssaf;
  254.         return $this;
  255.     }
  256.     public function getFirstDate(): ?\DateTime
  257.     {
  258.         $ldp $this->getListeDatePointage();
  259.         if(empty($ldp)) return null;
  260.         return new \DateTime(date('Y-m-d'array_shift($ldp)));
  261.     }
  262.     public function getLastDate(): ?\DateTime
  263.     {
  264.         $ldp $this->getListeDatePointage();
  265.         if(empty($ldp)) return null;
  266.         return new \DateTime(date('Y-m-d'array_pop($ldp)));
  267.     }
  268.     public function getDetailsDate()
  269.     {
  270.         $dateListe = [];
  271.         $ldp $this->getListeDatePointage();
  272.         if(!empty($ldp)) foreach ($ldp as $pointage$dateListe[] = new \DateTime(date('Y-m-d'$pointage));
  273.         return $dateListe;
  274.     }
  275.     public function checkData(string $webPath)
  276.     {
  277.         $salarie $this->getSalarie();
  278.         if(null===$salarie$this->_error[] = 'Aucun salarié rattaché au contrat';
  279.         $info $salarie->getInfoSalarie()->initEncryptionKey($webPath)->decryptContent();
  280.         if(null===$info$this->_error[] = 'Aucune infos rattachées au salarié';
  281.         if(empty($salarie->getPrenomTiers())) $this->_error[] = 'Prénom salarié vide';
  282.         if(empty($salarie->getNomTiers())) $this->_error[] = 'Nom salarié vide';
  283.         if(15!==strlen($info->getNumSecuSociale())) $this->_error[] = 'Numéro de sécurité sociale invalide : 15 chiffres attendus';
  284.         if(10!==strlen($info->getDateNaissance())) $this->_error[] = 'Date de naissance invalide';
  285.         if(empty($info->getLieuNaissance())) $this->_error[] = 'Lieu de naissance vide';
  286.         if(preg_match('/[()]/'$info->getLieuNaissance())) $this->_error[] = 'Les parenthèses sont interdites : '$info->getLieuNaissance();
  287.         if(empty($this->getListeDatePointage())) $this->_error[] = 'Aucune date de contrat';
  288.         return $this;
  289.     }
  290.     public function getError()
  291.     {
  292.         return $this->_error;
  293.     }
  294. }