src/Flexy/ShopBundle/Entity/Product/ProductSubscription.php line 16

  1. <?php
  2. namespace App\Flexy\ShopBundle\Entity\Product;
  3. use ApiPlatform\Metadata\ApiResource;
  4. use App\Flexy\ShopBundle\Entity\Customer\Customer;
  5. use App\Flexy\ShopBundle\Entity\Order\OrderItem;
  6. use App\Flexy\ShopBundle\Entity\Payment\Payment;
  7. use App\Repository\Flexy\ShopBundle\Entity\Product\ProductSubscriptionRepository;
  8. use DateTime;
  9. use Doctrine\DBAL\Types\Types;
  10. use Doctrine\ORM\Mapping as ORM;
  11. #[ORM\Entity(repositoryClassProductSubscriptionRepository::class)]
  12. #[ApiResource]
  13. class ProductSubscription
  14. {
  15.     #[ORM\Id]
  16.     #[ORM\GeneratedValue]
  17.     #[ORM\Column]
  18.     private ?int $id null;
  19.     #[ORM\ManyToOne(inversedBy'productSubscriptions')]
  20.     #[ORM\JoinColumn(nullablefalse)]
  21.     private ?Product $product null;
  22.     #[ORM\Column(typeTypes::DATETIME_MUTABLE)]
  23.     private ?\DateTimeInterface $startAt ;
  24.     #[ORM\Column(typeTypes::DATETIME_MUTABLE)]
  25.     private ?\DateTimeInterface $endAt null;
  26.     #[ORM\Column(typeTypes::TEXTnullabletrue)]
  27.     private ?string $description null;
  28.     #[ORM\Column(length255nullabletrue)]
  29.     private ?string $status null;
  30.   
  31.     #[ORM\ManyToOne(inversedBy'productSubscriptions',cascade:["persist"])]
  32.     private ?Customer $customer null;
  33.     #[ORM\Column(typeTypes::DATETIME_MUTABLEnullabletrue)]
  34.     private ?\DateTimeInterface $createdAt null;
  35.     #[ORM\OneToOne(cascade: ['persist''remove'])]
  36.     private ?OrderItem $orderItem null;
  37.     public function __construct()
  38.     {
  39.         $this->createdAt = new \DateTime();
  40.         $this->startAt = new \DateTime();
  41.     }
  42.     
  43.      public function __toString(): string
  44.     {
  45.         return "Numéro ".$this->getId();
  46.     }
  47.     
  48.     public function getId(): ?int
  49.     {
  50.         return $this->id;
  51.     }
  52.     public function getProduct(): ?Product
  53.     {
  54.         return $this->product;
  55.     }
  56.     public function setProduct(?Product $product): self
  57.     {
  58.         $this->product $product;
  59.         return $this;
  60.     }
  61.     public function getStartAt(): ?\DateTimeInterface
  62.     {
  63.         return $this->startAt;
  64.     }
  65.     public function setStartAt(\DateTimeInterface $startAt): self
  66.     {
  67.         $this->startAt $startAt;
  68.         return $this;
  69.     }
  70.     public function getEndAt(): ?\DateTimeInterface
  71.     {
  72.         return $this->endAt;
  73.     }
  74.     public function setEndAt(\DateTimeInterface $endAt): self
  75.     {
  76.         $this->endAt $endAt;
  77.         return $this;
  78.     }
  79.     
  80.     public function getExportData()
  81.     {
  82.         return \array_merge([
  83.             'Produit ' => $this->product,
  84.             'Client' =>  $this->customer,
  85.             'Téléphone' =>  $this->customer->getPhone() ,
  86.             'Se commence à' => $this->startAt $this->startAt->format('Y-m-d H:i:s') : ''
  87.             'Se termine' => $this->endAt $this->endAt->format('Y-m-d H:i:s') : ''
  88.         ]);
  89.     }
  90.     public function getDescription(): ?string
  91.     {
  92.         return $this->description;
  93.     }
  94.     public function setDescription(?string $description): self
  95.     {
  96.         $this->description $description;
  97.         return $this;
  98.     }
  99.     public function getStatus(): ?string
  100.     {
  101.         return $this->status;
  102.     }
  103.     public function setStatus(?string $status): self
  104.     {
  105.         $this->status $status;
  106.         return $this;
  107.     }
  108.     public function getCustomer(): ?Customer
  109.     {
  110.         return $this->customer;
  111.     }
  112.     public function setCustomer(?Customer $customer): self
  113.     {
  114.         $this->customer $customer;
  115.         return $this;
  116.     }
  117.     public function getCreatedAt(): ?\DateTimeInterface
  118.     {
  119.         return $this->createdAt;
  120.     }
  121.     public function setCreatedAt(?\DateTimeInterface $createdAt): self
  122.     {
  123.         $this->createdAt $createdAt;
  124.         return $this;
  125.     }
  126.     public function getOrderItem(): ?OrderItem
  127.     {
  128.         return $this->orderItem;
  129.     }
  130.     public function setOrderItem(?OrderItem $orderItem): self
  131.     {
  132.         $this->orderItem $orderItem;
  133.         return $this;
  134.     }
  135. }