src/Entity/ProductVariant.php line 15
<?php
namespace App\Entity;
use App\Repository\ProductVariantRepository;
use Doctrine\Common\Collections\ArrayCollection;
use Doctrine\Common\Collections\Collection;
use Doctrine\DBAL\Types\Types;
use Doctrine\ORM\Mapping as ORM;
use Gedmo\Translatable\Translatable;
use Gedmo\Mapping\Annotation as Gedmo;
#[ORM\Entity(repositoryClass: ProductVariantRepository::class)]
class ProductVariant implements Translatable
{
#[ORM\Id]
#[ORM\GeneratedValue]
#[ORM\Column]
private ?int $id = null;
#[Gedmo\Locale]
private $locale;
#[Gedmo\Translatable]
#[ORM\Column(length: 255)]
private ?string $name = null;
#[ORM\Column(length: 255, nullable: true)]
private ?string $category = null;
#[Gedmo\Translatable]
#[ORM\Column(length: 500, nullable: true)]
private ?string $composition = null;
#[ORM\Column(nullable: true)]
private ?int $quantity = null;
#[ORM\Column(nullable: true)]
private ?float $weight = null;
#[ORM\Column(length: 255, nullable: true)]
private ?string $mainImage = null;
#[ORM\Column]
private ?float $price = null;
#[ORM\Column(nullable: true)]
private ?float $retailPrice = null;
#[Gedmo\Translatable]
#[ORM\Column(type: Types::TEXT)]
private ?string $description = null;
#[ORM\Column(length: 255)]
private ?string $ean = null;
#[ORM\Column(length: 255, nullable: true)]
private ?string $slug = null;
// #[ORM\ManyToOne(targetEntity: Product::class, inversedBy: 'variants')]
// #[ORM\JoinColumn(nullable: false)]
// private $product;
#[ORM\OneToMany(mappedBy: 'productVariant', targetEntity: Size::class,cascade: ['persist'],orphanRemoval:true)]
private Collection $sizes;
#[ORM\Column(length: 255)]
private ?string $stripeId = null;
#[ORM\OneToMany(mappedBy: 'productVariant', targetEntity: OptionValue::class,orphanRemoval: true)]
private Collection $optionValues;
#[ORM\OneToMany(mappedBy: 'productVariant', targetEntity: OrderItem::class, orphanRemoval: true)]
private Collection $orderItems;
#[ORM\Column(length: 255, nullable: true)]
private ?string $color = null;
#[ORM\Column(nullable: true)]
private array $images = [];
#[ORM\Column(nullable: true)]
private ?float $promotionRate = null;
#[ORM\Column(nullable: true)]
private ?float $profitMargin = null;
#[ORM\Column(length: 255, nullable: true)]
private ?string $stripeObjId = null;
#[ORM\Column(length: 255, nullable: true)]
private ?string $api_last_updated = null;
#[ORM\Column(nullable: true)]
private ?float $sellingPrice = null;
#[ORM\ManyToOne(inversedBy: 'variants')]
#[ORM\JoinColumn(nullable: false)]
private ?Product $product = null;
#[ORM\Column(length: 255)]
private ?string $apiId = null;
#[ORM\Column(length: 255, nullable: true)]
private ?string $mediaPath = null;
public function __construct()
{
$this->sizes = new ArrayCollection();
$this->optionValues = new ArrayCollection();
$this->orderItems = new ArrayCollection();
}
public function getId(): ?int
{
return $this->id;
}
public function getName(): ?string
{
return $this->name;
}
public function setName(string $name): self
{
$this->name = $name;
return $this;
}
public function setEan(string $ean): self
{
$this->ean = $ean;
return $this;
}
public function setDescription(string $description): self
{
$this->description = $description;
return $this;
}
public function setCategory(string $category): self
{
$this->category = $category;
return $this;
}
public function setComposition(string $composition): self
{
$this->composition = $composition;
return $this;
}
public function setQuantity(string $quantity): self
{
$this->quantity = $quantity;
return $this;
}
public function setWeight(string $weight): self
{
$this->weight = $weight;
return $this;
}
public function setMainImage(string $mainImage): self
{
$this->mainImage = $mainImage;
return $this;
}
public function getPrice(): ?float
{
return $this->price;
}
public function setPrice(float $price): self
{
$this->price = $price;
return $this;
}
public function setretailPrice(float $retailPrice): self
{
$this->retailPrice = $retailPrice;
return $this;
}
/**
* @return Collection<int, Size>
*/
public function getSizes(): Collection
{
return $this->sizes;
}
public function addSize(Size $size): static
{
if (!$this->sizes->contains($size)) {
$this->sizes->add($size);
$size->setProductVariant($this);
}
return $this;
}
public function removeSize(Size $size): static
{
if ($this->sizes->removeElement($size)) {
// set the owning side to null (unless already changed)
if ($size->getProductVariant() === $this) {
$size->setProductVariant(null);
}
}
return $this;
}
public function getStripeId(): ?string
{
return $this->stripeId;
}
public function setStripeId(string $stripeId): static
{
$this->stripeId = $stripeId;
return $this;
}
public function getCategory(): ?string
{
return $this->category;
}
public function getComposition(): ?string
{
return $this->composition;
}
public function getQuantity(): ?int
{
return $this->quantity;
}
public function getWeight(): ?float
{
return $this->weight;
}
// public function getMainImage(): ?string
// {
// return '/uploads/tbint/'.strval($this->apiId).'/'.$this->mainImage;
// }
public function getMainImage(): ?string
{
return $this->mainImage;
}
public function getBackImage(): ?string
{
$images = array_values(array_filter($this->images));
$randomIndex = rand(0,count($images) - 1);
$img = !empty($images) ? $images[$randomIndex] : 'null';
return $img;
}
public function getRetailPrice(): ?float
{
return $this->retailPrice;
}
public function getDescription(): ?string
{
return $this->description;
}
public function getEan(): ?string
{
return $this->ean;
}
public function getSlug(): ?string
{
return $this->slug;
}
public function setSlug(?string $slug): static
{
$this->slug = $slug;
return $this;
}
// public function getProduct(): ?Product
// {
// return $this->product;
// }
// public function setProduct(?Product $product): static
// {
// $this->product = $product;
// return $this;
// }
/**
* @return Collection<int, OptionValue>
*/
public function getOptionValues(): Collection
{
return $this->optionValues;
}
public function addOptionValue(OptionValue $optionValue): static
{
if (!$this->optionValues->contains($optionValue)) {
$this->optionValues->add($optionValue);
$optionValue->setProductVariant($this);
}
return $this;
}
public function removeOptionValue(OptionValue $optionValue): static
{
if ($this->optionValues->removeElement($optionValue)) {
// set the owning side to null (unless already changed)
if ($optionValue->getProductVariant() === $this) {
$optionValue->setProductVariant(null);
}
}
return $this;
}
/**
* @return Collection<int, OrderItem>
*/
public function getOrderItems(): Collection
{
return $this->orderItems;
}
public function addOrderItem(OrderItem $orderItem): static
{
if (!$this->orderItems->contains($orderItem)) {
$this->orderItems->add($orderItem);
$orderItem->setProductVariant($this);
}
return $this;
}
public function removeOrderItem(OrderItem $orderItem): static
{
if ($this->orderItems->removeElement($orderItem)) {
// set the owning side to null (unless already changed)
if ($orderItem->getProductVariant() === $this) {
$orderItem->setProductVariant(null);
}
}
return $this;
}
public function getColor(): ?string
{
return $this->color;
}
public function setColor(?string $color): static
{
$this->color = $color;
return $this;
}
public function getImages(): array
{
return $this->images;
}
public function setImages(?array $images): static
{
$this->images = $images;
return $this;
}
public function __toString()
{
return $this->name ?? '';
}
public function getPromotionRate(): ?float
{
return $this->promotionRate;
}
public function setPromotionRate(?float $promotionRate): static
{
$this->promotionRate = $promotionRate;
return $this;
}
public function getProfitMargin(): ?float
{
return $this->profitMargin;
}
public function setProfitMargin(?float $profitMargin): static
{
$this->profitMargin = $profitMargin;
return $this;
}
public function getStripeObjId(): ?string
{
return $this->stripeObjId;
}
public function setStripeObjId(?string $stripeObjId): static
{
$this->stripeObjId = $stripeObjId;
return $this;
}
public function getApiLastUpdated(): ?string
{
return $this->api_last_updated;
}
public function setApiLastUpdated(?string $api_last_updated): static
{
$this->api_last_updated = $api_last_updated;
return $this;
}
public function getSellingPrice(): ?float
{
return $this->sellingPrice;
}
public function setSellingPrice(?float $sellingPrice): static
{
if ($this->profitMargin) {
$this->sellingPrice = ( 1 + $this->profitMargin / 100 ) * $this->price;
}else{
$this->sellingPrice = $sellingPrice;
}
return $this;
}
public function getProduct(): ?Product
{
return $this->product;
}
public function setProduct(?Product $product): static
{
$this->product = $product;
return $this;
}
public function getApiId(): ?string
{
return $this->apiId;
}
public function setApiId(string $apiId): static
{
$this->apiId = $apiId;
return $this;
}
public function setTranslatableLocale($locale)
{
$this->locale = $locale;
}
public function getMediaPath(): ?string
{
return $this->mediaPath;
}
public function setMediaPath(?string $mediaPath): static
{
$this->mediaPath = $mediaPath;
return $this;
}
public function getImagePathForAdmin(): ?string
{
$arr = explode('/',$this->mainImage);
$path = array_pop($arr);
return $path;
}
public function setImagePathForAdmin(?string $image): static
{
if($image){
$this->mainImage = $this->mediaPath.'/'.$image;
}
return $this;
}
public function getImagesPathForAdmin(): ?array
{
if($this->images){
return array_map(function($image){
$arr = explode('/',$image);
$path = array_pop($arr);
return $path;
},$this->images);
}else{
return [];
}
}
public function setImagesPathForAdmin(?array $images): static
{
if($images){
$this->images = array_map(function($image){
return $this->mediaPath.'/'.$image;
},$images);
}else{
$this->images = [];
}
return $this;
}
}