src/Entity/Cp.php line 16

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use Doctrine\ORM\Mapping as ORM;
  4. use Vich\UploaderBundle\Mapping\Annotation as Vich;
  5. use Symfony\Component\Serializer\Annotation\Groups;
  6. /**
  7.  * @ORM\Entity(repositoryClass="App\Repository\CpRepository")
  8.  * @ORM\Table(name="69pixl_cp")
  9.  * @ORM\HasLifecycleCallbacks()
  10.  * @Vich\Uploadable
  11.  */
  12. class Cp
  13. {
  14.     /**
  15.      * @ORM\PrePersist
  16.      */
  17.     public function prePersist()
  18.     {
  19.         $this->dateCreated = new \DateTime();
  20.     }
  21.     /**
  22.      * @ORM\Id
  23.      * @Groups({"cp_group"})
  24.      * @ORM\GeneratedValue
  25.      * @ORM\Column(type="integer")
  26.      */
  27.     private $id;
  28.     /**
  29.      * @Groups({"cp_group"})
  30.      * @ORM\Column(name="date_created", type="datetime", nullable=true)
  31.      */
  32.     protected $dateCreated;
  33.     /**
  34.      * @Groups({"cp_group"})
  35.      * @ORM\Column(type="string", length=255, nullable=true)
  36.      */
  37.     private $lastName;
  38.     /**
  39.      * @Groups({"cp_group"})
  40.      * @ORM\Column(type="string", length=255, nullable=true)
  41.      */
  42.     private $firstName;
  43.     /**
  44.      * @Groups({"cp_group"})
  45.      * @ORM\Column(type="string", length=255, nullable=true)
  46.      */
  47.     private $numeroAdherent;
  48.     /**
  49.      * @Groups({"cp_group"})
  50.      * @ORM\Column(type="text", nullable=true)
  51.      */
  52.     private $urlSign;
  53.     /**
  54.      * @Groups({"cp_group"})
  55.      * @ORM\Column(type="text", nullable=true)
  56.      */
  57.     private $idYouSign;
  58.     /**
  59.      * @Groups({"cp_group"})
  60.      * @ORM\Column(type="text", nullable=true)
  61.      */
  62.     private $errorYouSign;
  63.     /**
  64.      * @Groups({"cp_group"})
  65.      * @ORM\Column(type="datetime", nullable=true)
  66.      */
  67.     private $dateSigne;
  68.     /**
  69.      * @Groups({"cp_group"})
  70.      * @ORM\Column(type="string", length=255, nullable=true)
  71.      */
  72.     private $path;
  73.     /**
  74.      * @Groups({"cp_group"})
  75.      * @ORM\Column(type="string", length=255, nullable=true)
  76.      */
  77.     private $filename;
  78.     /**
  79.      * @Groups({"cp_group"})
  80.      * @ORM\Column(type="string", length=255, nullable=true)
  81.      */
  82.     private $status;
  83.     /**
  84.      * @Groups({"cp_group"})
  85.      * @ORM\Column(type="boolean", nullable=true)
  86.      */
  87.     private $mailSendGestion;
  88.     /**
  89.      * @Groups({"cp_group"})
  90.      * @ORM\Column(type="text", nullable=true)
  91.      */
  92.     private $urlPdfSign;
  93.     /**
  94.      * @var createdBy[]
  95.      * @Groups({"cp_group"})
  96.      * @ORM\ManyToOne(targetEntity="App\Entity\User", inversedBy="cps")
  97.      */
  98.     protected $createdBy;
  99.     /**
  100.      * @Groups({"cp_group"})
  101.      * @ORM\ManyToOne(targetEntity="App\Entity\DocumentType", inversedBy="fileAttribute")
  102.      */
  103.     protected $fileType;
  104.     /**
  105.      * @Groups({"cp_group"})
  106.      * @ORM\ManyToOne(targetEntity="App\Entity\User", inversedBy="cpSignatory")
  107.      */
  108.     protected $signatoryUser;
  109.     public function getStatusTrans(): string
  110.     {
  111.         $status $this->status $this->status "";
  112.         switch ($status){
  113.             case "UNSIGNED":
  114.                 $status "En Attente";
  115.                 break;
  116.             case "SIGNED":
  117.                 $status "Signé";
  118.                 break;
  119.         }
  120.         return $status;
  121.     }
  122.     public function getId(): ?int
  123.     {
  124.         return $this->id;
  125.     }
  126.     public function getDateCreated(): ?\DateTimeInterface
  127.     {
  128.         return $this->dateCreated;
  129.     }
  130.     public function setDateCreated(?\DateTimeInterface $dateCreated): self
  131.     {
  132.         $this->dateCreated $dateCreated;
  133.         return $this;
  134.     }
  135.     public function getLastName(): ?string
  136.     {
  137.         return $this->lastName;
  138.     }
  139.     public function setLastName(?string $lastName): self
  140.     {
  141.         $this->lastName $lastName;
  142.         return $this;
  143.     }
  144.     public function getFirstName(): ?string
  145.     {
  146.         return $this->firstName;
  147.     }
  148.     public function setFirstName(?string $firstName): self
  149.     {
  150.         $this->firstName $firstName;
  151.         return $this;
  152.     }
  153.     public function getNumeroAdherent(): ?string
  154.     {
  155.         return $this->numeroAdherent;
  156.     }
  157.     public function setNumeroAdherent(?string $numeroAdherent): self
  158.     {
  159.         $this->numeroAdherent $numeroAdherent;
  160.         return $this;
  161.     }
  162.     public function getStatus(): ?string
  163.     {
  164.         return $this->status;
  165.     }
  166.     public function setStatus(?string $status): self
  167.     {
  168.         $this->status $status;
  169.         return $this;
  170.     }
  171.     public function getPath(): ?string
  172.     {
  173.         return $this->path;
  174.     }
  175.     public function setPath(?string $path): self
  176.     {
  177.         $this->path $path;
  178.         return $this;
  179.     }
  180.     public function getUrlSign(): ?string
  181.     {
  182.         return $this->urlSign;
  183.     }
  184.     public function setUrlSign(?string $urlSign): self
  185.     {
  186.         $this->urlSign $urlSign;
  187.         return $this;
  188.     }
  189.     public function getIdYouSign(): ?string
  190.     {
  191.         return $this->idYouSign;
  192.     }
  193.     public function setIdYouSign(?string $idYouSign): self
  194.     {
  195.         $this->idYouSign $idYouSign;
  196.         return $this;
  197.     }
  198.     public function getErrorYouSign(): ?string
  199.     {
  200.         return $this->errorYouSign;
  201.     }
  202.     public function setErrorYouSign(?string $errorYouSign): self
  203.     {
  204.         $this->errorYouSign $errorYouSign;
  205.         return $this;
  206.     }
  207.     public function getDateSigne(): ?\DateTimeInterface
  208.     {
  209.         return $this->dateSigne;
  210.     }
  211.     public function setDateSigne(?\DateTimeInterface $dateSigne): self
  212.     {
  213.         $this->dateSigne $dateSigne;
  214.         return $this;
  215.     }
  216.     public function getFilename(): ?string
  217.     {
  218.         return $this->filename;
  219.     }
  220.     public function setFilename(?string $filename): self
  221.     {
  222.         $this->filename $filename;
  223.         return $this;
  224.     }
  225.     public function getMailSendGestion(): ?bool
  226.     {
  227.         return $this->mailSendGestion;
  228.     }
  229.     public function setMailSendGestion(?bool $mailSendGestion): self
  230.     {
  231.         $this->mailSendGestion $mailSendGestion;
  232.         return $this;
  233.     }
  234.     public function getUrlPdfSign(): ?string
  235.     {
  236.         return $this->urlPdfSign;
  237.     }
  238.     public function setUrlPdfSign(?string $urlPdfSign): self
  239.     {
  240.         $this->urlPdfSign $urlPdfSign;
  241.         return $this;
  242.     }
  243.     public function getCreatedBy(): ?User
  244.     {
  245.         return $this->createdBy;
  246.     }
  247.     public function setCreatedBy(?User $createdBy): self
  248.     {
  249.         $this->createdBy $createdBy;
  250.         return $this;
  251.     }
  252.     public function getFileType(): ?DocumentType
  253.     {
  254.         return $this->fileType;
  255.     }
  256.     public function setFileType(?DocumentType $fileType): self
  257.     {
  258.         $this->fileType $fileType;
  259.         return $this;
  260.     }
  261.     public function getSignatoryUser(): ?User
  262.     {
  263.         return $this->signatoryUser;
  264.     }
  265.     public function setSignatoryUser(?User $signatoryUser): self
  266.     {
  267.         $this->signatoryUser $signatoryUser;
  268.         return $this;
  269.     }
  270. }