src\Entity\Souscription.php line 11

Open in your IDE?
  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\SouscriptionRepository;
  4. use Doctrine\ORM\Mapping as ORM;
  5. /**
  6.  * @ORM\Entity(repositoryClass=SouscriptionRepository::class)
  7.  */
  8. class Souscription
  9. {
  10.     /**
  11.      * @ORM\Id()
  12.      * @ORM\GeneratedValue()
  13.      * @ORM\Column(type="integer")
  14.      */
  15.     private $id;
  16.     /**
  17.      * @ORM\Column(type="integer")
  18.      */
  19.     private $quantite;
  20.     /**
  21.      * @ORM\ManyToOne(targetEntity=User::class, inversedBy="souscriptions")
  22.      * @ORM\JoinColumn(nullable=false)
  23.      */
  24.     private $user;
  25.     /**
  26.      * @ORM\Column(type="datetime")
  27.      */
  28.     private $created_at;
  29.     /**
  30.      * @ORM\Column(type="datetime", nullable=true)
  31.      */
  32.     private $validated_at;
  33.     /**
  34.      * @ORM\Column(type="datetime", nullable=true)
  35.      */
  36.     private $started_at;
  37.     /**
  38.      * @ORM\Column(type="datetime", nullable=true)
  39.      */
  40.     private $end_at;
  41.     /**
  42.      * @ORM\Column(type="datetime", nullable=true)
  43.      */
  44.     private $cancelled_at;
  45.     /**
  46.      * @ORM\ManyToOne(targetEntity=Facture::class, inversedBy="souscriptions")
  47.      */
  48.     private $facture;
  49.     /**
  50.      * @ORM\ManyToOne(targetEntity=Package::class, inversedBy="souscriptions")
  51.      */
  52.     private $package;
  53.     /**
  54.      * @ORM\ManyToOne(targetEntity=ProgrammeFormation::class, inversedBy="souscriptions")
  55.      */
  56.     private $programme_formation;
  57.     /**
  58.      * @ORM\Column(type="string", length=255)
  59.      */
  60.     private $titre;
  61.     /**
  62.      * @ORM\Column(type="float", nullable=true)
  63.      */
  64.     private $prix;
  65.     /**
  66.      * @ORM\Column(type="integer")
  67.      */
  68.     private $status;
  69.     const FULL_STATUS =['non validé','validé','annulé'];
  70.     public function __construct()
  71.     {
  72.         $this->created_at = new \DateTime();
  73.         $this->status 0;
  74.     }
  75.     public function getFullStatus()
  76.     {
  77.         return self::FULL_STATUS[$this->status];
  78.     }
  79.     public function getId(): ?int
  80.     {
  81.         return $this->id;
  82.     }
  83.     public function getQuantite(): ?int
  84.     {
  85.         return $this->quantite;
  86.     }
  87.     public function setQuantite(int $quantite): self
  88.     {
  89.         $this->quantite $quantite;
  90.         return $this;
  91.     }
  92.     public function getUser(): ?User
  93.     {
  94.         return $this->user;
  95.     }
  96.     public function setUser(?User $user): self
  97.     {
  98.         $this->user $user;
  99.         return $this;
  100.     }
  101.     public function getCreatedAt(): ?\DateTimeInterface
  102.     {
  103.         return $this->created_at;
  104.     }
  105.     public function setCreatedAt(\DateTimeInterface $created_at): self
  106.     {
  107.         $this->created_at $created_at;
  108.         return $this;
  109.     }
  110.     public function getValidatedAt(): ?\DateTimeInterface
  111.     {
  112.         return $this->validated_at;
  113.     }
  114.     public function setValidatedAt(?\DateTimeInterface $validated_at): self
  115.     {
  116.         $this->validated_at $validated_at;
  117.         return $this;
  118.     }
  119.     public function getStartedAt(): ?\DateTimeInterface
  120.     {
  121.         return $this->started_at;
  122.     }
  123.     public function setStartedAt(?\DateTimeInterface $started_at): self
  124.     {
  125.         $this->started_at $started_at;
  126.         return $this;
  127.     }
  128.     public function getEndAt(): ?\DateTimeInterface
  129.     {
  130.         return $this->end_at;
  131.     }
  132.     public function setEndAt(?\DateTimeInterface $end_at): self
  133.     {
  134.         $this->end_at $end_at;
  135.         return $this;
  136.     }
  137.     public function getCancelledAt(): ?\DateTimeInterface
  138.     {
  139.         return $this->cancelled_at;
  140.     }
  141.     public function setCancelledAt(?\DateTimeInterface $cancelled_at): self
  142.     {
  143.         $this->cancelled_at $cancelled_at;
  144.         return $this;
  145.     }
  146.     public function getFacture(): ?Facture
  147.     {
  148.         return $this->facture;
  149.     }
  150.     public function setFacture(?Facture $facture): self
  151.     {
  152.         $this->facture $facture;
  153.         return $this;
  154.     }
  155.     public function getPackage(): ?Package
  156.     {
  157.         return $this->package;
  158.     }
  159.     public function setPackage(?Package $package): self
  160.     {
  161.         $this->package $package;
  162.         return $this;
  163.     }
  164.     public function getProgrammeFormation(): ?ProgrammeFormation
  165.     {
  166.         return $this->programme_formation;
  167.     }
  168.     public function setProgrammeFormation(?ProgrammeFormation $programme_formation): self
  169.     {
  170.         $this->programme_formation $programme_formation;
  171.         return $this;
  172.     }
  173.     public function getTitre(): ?string
  174.     {
  175.         return $this->titre;
  176.     }
  177.     public function setTitre(string $titre): self
  178.     {
  179.         $this->titre $titre;
  180.         return $this;
  181.     }
  182.     public function getPrix(): ?float
  183.     {
  184.         return $this->prix;
  185.     }
  186.     public function setPrix(?float $prix): self
  187.     {
  188.         $this->prix $prix;
  189.         return $this;
  190.     }
  191.     public function getStatus(): ?int
  192.     {
  193.         return $this->status;
  194.     }
  195.     public function setStatus(int $status): self
  196.     {
  197.         $this->status $status;
  198.         return $this;
  199.     }
  200. }