src/Entity/ProductVariant.php line 15

  1. <?php
  2. namespace App\Entity;
  3. use App\Repository\ProductVariantRepository;
  4. use Doctrine\Common\Collections\ArrayCollection;
  5. use Doctrine\Common\Collections\Collection;
  6. use Doctrine\DBAL\Types\Types;
  7. use Doctrine\ORM\Mapping as ORM;
  8. use Gedmo\Translatable\Translatable;
  9. use Gedmo\Mapping\Annotation as Gedmo;
  10. #[ORM\Entity(repositoryClassProductVariantRepository::class)]
  11. class ProductVariant implements Translatable
  12. {
  13.     #[ORM\Id]
  14.     #[ORM\GeneratedValue]
  15.     #[ORM\Column]
  16.     private ?int $id null;
  17.     #[Gedmo\Locale]
  18.     private $locale;
  19.     #[Gedmo\Translatable]
  20.     #[ORM\Column(length255)]
  21.     private ?string $name null;
  22.     #[ORM\Column(length255nullabletrue)]
  23.     private ?string $category null;
  24.     #[Gedmo\Translatable]
  25.     #[ORM\Column(length500nullabletrue)]
  26.     private ?string $composition null;
  27.     #[ORM\Column(nullabletrue)]
  28.     private ?int $quantity null;
  29.     #[ORM\Column(nullabletrue)]
  30.     private ?float $weight null;
  31.     #[ORM\Column(length255nullabletrue)]
  32.     private ?string $mainImage null;
  33.     #[ORM\Column]
  34.     private ?float $price null;
  35.     #[ORM\Column(nullabletrue)]
  36.     private ?float $retailPrice null;
  37.     #[Gedmo\Translatable]
  38.     #[ORM\Column(typeTypes::TEXT)]
  39.     private ?string $description null;
  40.     #[ORM\Column(length255)]
  41.     private ?string $ean null;
  42.     #[ORM\Column(length255nullabletrue)]
  43.     private ?string $slug null;
  44.     // #[ORM\ManyToOne(targetEntity: Product::class, inversedBy: 'variants')]
  45.     // #[ORM\JoinColumn(nullable: false)]
  46.     // private $product;
  47.     #[ORM\OneToMany(mappedBy'productVariant'targetEntitySize::class,cascade: ['persist'],orphanRemoval:true)]
  48.     private Collection $sizes;
  49.     #[ORM\Column(length255)]
  50.     private ?string $stripeId null;
  51.     #[ORM\OneToMany(mappedBy'productVariant'targetEntityOptionValue::class,orphanRemovaltrue)]
  52.     private Collection $optionValues;
  53.     #[ORM\OneToMany(mappedBy'productVariant'targetEntityOrderItem::class, orphanRemovaltrue)]
  54.     private Collection $orderItems;
  55.     #[ORM\Column(length255nullabletrue)]
  56.     private ?string $color null;
  57.     #[ORM\Column(nullabletrue)]
  58.     private array $images = [];
  59.     #[ORM\Column(nullabletrue)]
  60.     private ?float $promotionRate null;
  61.     #[ORM\Column(nullabletrue)]
  62.     private ?float $profitMargin null;
  63.     #[ORM\Column(length255nullabletrue)]
  64.     private ?string $stripeObjId null;
  65.     #[ORM\Column(length255nullabletrue)]
  66.     private ?string $api_last_updated null;
  67.     #[ORM\Column(nullabletrue)]
  68.     private ?float $sellingPrice null;
  69.     #[ORM\ManyToOne(inversedBy'variants')]
  70.     #[ORM\JoinColumn(nullablefalse)]
  71.     private ?Product $product null;
  72.     #[ORM\Column(length255)]
  73.     private ?string $apiId null;
  74.     #[ORM\Column(length255nullabletrue)]
  75.     private ?string $mediaPath null;
  76.     public function __construct()
  77.     {
  78.         $this->sizes = new ArrayCollection();
  79.         $this->optionValues = new ArrayCollection();
  80.         $this->orderItems = new ArrayCollection();
  81.     }
  82.     public function getId(): ?int
  83.     {
  84.         return $this->id;
  85.     }
  86.     public function getName(): ?string
  87.     {
  88.         return $this->name;
  89.     }
  90.     public function setName(string $name): self
  91.     {
  92.         $this->name $name;
  93.         return $this;
  94.     }
  95.     public function setEan(string $ean): self
  96.     {
  97.         $this->ean $ean;
  98.         return $this;
  99.     }
  100.     public function setDescription(string $description): self
  101.     {
  102.         $this->description $description;
  103.         return $this;
  104.     }
  105.     public function setCategory(string $category): self
  106.     {
  107.         $this->category $category;
  108.         return $this;
  109.     }
  110.     public function setComposition(string $composition): self
  111.     {
  112.         $this->composition $composition;
  113.         return $this;
  114.     }
  115.     public function setQuantity(string $quantity): self
  116.     {
  117.         $this->quantity $quantity;
  118.         return $this;
  119.     }
  120.     public function setWeight(string $weight): self
  121.     {
  122.         $this->weight $weight;
  123.         return $this;
  124.     }
  125.     public function setMainImage(string $mainImage): self
  126.     {
  127.         $this->mainImage $mainImage;
  128.         return $this;
  129.     }
  130.     public function getPrice(): ?float
  131.     {
  132.         return $this->price;
  133.     }
  134.     public function setPrice(float $price): self
  135.     {
  136.         $this->price $price;
  137.         return $this;
  138.     }
  139.     public function setretailPrice(float $retailPrice): self
  140.     {
  141.         $this->retailPrice $retailPrice;
  142.         return $this;
  143.     }
  144.     /**
  145.      * @return Collection<int, Size>
  146.      */
  147.     public function getSizes(): Collection
  148.     {
  149.         return $this->sizes;
  150.     }
  151.     public function addSize(Size $size): static
  152.     {
  153.         if (!$this->sizes->contains($size)) {
  154.             $this->sizes->add($size);
  155.             $size->setProductVariant($this);
  156.         }
  157.         return $this;
  158.     }
  159.     public function removeSize(Size $size): static
  160.     {
  161.         if ($this->sizes->removeElement($size)) {
  162.             // set the owning side to null (unless already changed)
  163.             if ($size->getProductVariant() === $this) {
  164.                 $size->setProductVariant(null);
  165.             }
  166.         }
  167.         return $this;
  168.     }
  169.     public function getStripeId(): ?string
  170.     {
  171.         return $this->stripeId;
  172.     }
  173.     public function setStripeId(string $stripeId): static
  174.     {
  175.         $this->stripeId $stripeId;
  176.         return $this;
  177.     }
  178.     public function getCategory(): ?string
  179.     {
  180.         return $this->category;
  181.     }
  182.     public function getComposition(): ?string
  183.     {
  184.         return $this->composition;
  185.     }
  186.     public function getQuantity(): ?int
  187.     {
  188.         return $this->quantity;
  189.     }
  190.     public function getWeight(): ?float
  191.     {
  192.         return $this->weight;
  193.     }
  194.     // public function getMainImage(): ?string
  195.     // {
  196.     //     return '/uploads/tbint/'.strval($this->apiId).'/'.$this->mainImage;
  197.     // }
  198.     public function getMainImage(): ?string
  199.     {
  200.         return $this->mainImage;
  201.     }
  202.     public function getBackImage(): ?string
  203.     {
  204.         $images array_values(array_filter($this->images));
  205.         $randomIndex rand(0,count($images) - 1);
  206.         $img = !empty($images) ? $images[$randomIndex] : 'null';
  207.         return $img;
  208.     }
  209.     public function getRetailPrice(): ?float
  210.     {
  211.         return $this->retailPrice;
  212.     }
  213.     public function getDescription(): ?string
  214.     {
  215.         return $this->description;
  216.     }
  217.     public function getEan(): ?string
  218.     {
  219.         return $this->ean;
  220.     }
  221.     public function getSlug(): ?string
  222.     {
  223.         return $this->slug;
  224.     }
  225.     public function setSlug(?string $slug): static
  226.     {
  227.         $this->slug $slug;
  228.         return $this;
  229.     }
  230.     // public function getProduct(): ?Product
  231.     // {
  232.     //     return $this->product;
  233.     // }
  234.     // public function setProduct(?Product $product): static
  235.     // {
  236.     //     $this->product = $product;
  237.     //     return $this;
  238.     // }
  239.     /**
  240.      * @return Collection<int, OptionValue>
  241.      */
  242.     public function getOptionValues(): Collection
  243.     {
  244.         return $this->optionValues;
  245.     }
  246.     public function addOptionValue(OptionValue $optionValue): static
  247.     {
  248.         if (!$this->optionValues->contains($optionValue)) {
  249.             $this->optionValues->add($optionValue);
  250.             $optionValue->setProductVariant($this);
  251.         }
  252.         return $this;
  253.     }
  254.     public function removeOptionValue(OptionValue $optionValue): static
  255.     {
  256.         if ($this->optionValues->removeElement($optionValue)) {
  257.             // set the owning side to null (unless already changed)
  258.             if ($optionValue->getProductVariant() === $this) {
  259.                 $optionValue->setProductVariant(null);
  260.             }
  261.         }
  262.         return $this;
  263.     }
  264.     /**
  265.      * @return Collection<int, OrderItem>
  266.      */
  267.     public function getOrderItems(): Collection
  268.     {
  269.         return $this->orderItems;
  270.     }
  271.     public function addOrderItem(OrderItem $orderItem): static
  272.     {
  273.         if (!$this->orderItems->contains($orderItem)) {
  274.             $this->orderItems->add($orderItem);
  275.             $orderItem->setProductVariant($this);
  276.         }
  277.         return $this;
  278.     }
  279.     public function removeOrderItem(OrderItem $orderItem): static
  280.     {
  281.         if ($this->orderItems->removeElement($orderItem)) {
  282.             // set the owning side to null (unless already changed)
  283.             if ($orderItem->getProductVariant() === $this) {
  284.                 $orderItem->setProductVariant(null);
  285.             }
  286.         }
  287.         return $this;
  288.     }
  289.     public function getColor(): ?string
  290.     {
  291.         return $this->color;
  292.     }
  293.     public function setColor(?string $color): static
  294.     {
  295.         $this->color $color;
  296.         return $this;
  297.     }
  298.     public function getImages(): array
  299.     {
  300.         return $this->images;
  301.     }
  302.     public function setImages(?array $images): static
  303.     {
  304.         $this->images $images;
  305.         return $this;
  306.     }
  307.     public function __toString()
  308.     {
  309.         return $this->name ?? '';
  310.     }
  311.     public function getPromotionRate(): ?float
  312.     {
  313.         return $this->promotionRate;
  314.     }
  315.     public function setPromotionRate(?float $promotionRate): static
  316.     {
  317.         $this->promotionRate $promotionRate;
  318.         return $this;
  319.     }
  320.     public function getProfitMargin(): ?float
  321.     {
  322.         return $this->profitMargin;
  323.     }
  324.     public function setProfitMargin(?float $profitMargin): static
  325.     {
  326.         $this->profitMargin $profitMargin;
  327.         return $this;
  328.     }
  329.     public function getStripeObjId(): ?string
  330.     {
  331.         return $this->stripeObjId;
  332.     }
  333.     public function setStripeObjId(?string $stripeObjId): static
  334.     {
  335.         $this->stripeObjId $stripeObjId;
  336.         return $this;
  337.     }
  338.     public function getApiLastUpdated(): ?string
  339.     {
  340.         return $this->api_last_updated;
  341.     }
  342.     public function setApiLastUpdated(?string $api_last_updated): static
  343.     {
  344.         $this->api_last_updated $api_last_updated;
  345.         return $this;
  346.     }
  347.     public function getSellingPrice(): ?float
  348.     {
  349.         return $this->sellingPrice;
  350.     }
  351.     public function setSellingPrice(?float $sellingPrice): static
  352.     {
  353.         if ($this->profitMargin) {
  354.             $this->sellingPrice = ( $this->profitMargin 100 ) * $this->price;
  355.         }else{
  356.             $this->sellingPrice $sellingPrice;
  357.         }
  358.         return $this;
  359.     }
  360.     public function getProduct(): ?Product
  361.     {
  362.         return $this->product;
  363.     }
  364.     public function setProduct(?Product $product): static
  365.     {
  366.         $this->product $product;
  367.         return $this;
  368.     }
  369.     public function getApiId(): ?string
  370.     {
  371.         return $this->apiId;
  372.     }
  373.     public function setApiId(string $apiId): static
  374.     {
  375.         $this->apiId $apiId;
  376.         return $this;
  377.     }
  378.     
  379.     public function setTranslatableLocale($locale)
  380.     {
  381.         $this->locale $locale;
  382.     }
  383.     public function getMediaPath(): ?string
  384.     {
  385.         return $this->mediaPath;
  386.     }
  387.     public function setMediaPath(?string $mediaPath): static
  388.     {
  389.         $this->mediaPath $mediaPath;
  390.         return $this;
  391.     }
  392.     public function getImagePathForAdmin(): ?string
  393.     {
  394.         $arr explode('/',$this->mainImage);
  395.         $path array_pop($arr);
  396.         return $path;
  397.     }
  398.     public function setImagePathForAdmin(?string $image): static
  399.     {
  400.         if($image){
  401.             $this->mainImage $this->mediaPath.'/'.$image;
  402.         }
  403.         return $this;
  404.     }
  405.     public function getImagesPathForAdmin(): ?array
  406.     {   
  407.         if($this->images){
  408.             return array_map(function($image){
  409.                     $arr explode('/',$image);
  410.                     $path array_pop($arr);
  411.                     return $path;
  412.                  },$this->images);
  413.         }else{
  414.             return [];
  415.         }
  416.     }
  417.     public function setImagesPathForAdmin(?array $images): static
  418.     {
  419.         if($images){
  420.             $this->images array_map(function($image){
  421.                                 return $this->mediaPath.'/'.$image;
  422.                             },$images);
  423.         }else{
  424.             $this->images = [];
  425.         }
  426.         return $this;
  427.     }
  428. }