|
- <?php
-
- namespace Lc\CaracoleBundle\Model\Product;
-
- use Doctrine\Common\Collections\ArrayCollection;
- use Doctrine\ORM\Mapping as ORM;
- use Lc\CaracoleBundle\Doctrine\Extension\ProductPropertyTrait;
- use Lc\CaracoleBundle\Doctrine\Extension\PriceInterface;
- use Lc\CaracoleBundle\Doctrine\Extension\ProductPropertyInterface;
- use Gedmo\Mapping\Annotation as Gedmo;
- use Lc\CaracoleBundle\Model\Order\OrderShopInterface;
- use Lc\SovBundle\Doctrine\Extension\BlameableNullableTrait;
- use Lc\SovBundle\Doctrine\Extension\SortableInterface;
- use Lc\SovBundle\Doctrine\Extension\SortableTrait;
- use Lc\SovBundle\Doctrine\Extension\StatusTrait;
- use Lc\SovBundle\Doctrine\Pattern\AbstractLightEntity;
-
- /**
- * @ORM\MappedSuperclass()
- */
- abstract class ProductModel extends AbstractLightEntity implements SortableInterface, ProductPropertyInterface,
- PriceInterface
- {
- use SortableTrait;
- use ProductPropertyTrait;
- use StatusTrait;
- use BlameableNullableTrait;
-
- /**
- * @ORM\ManyToOne(targetEntity="Lc\CaracoleBundle\Model\Product\ProductFamilyInterface", inversedBy="products", cascade={"persist"})
- * @ORM\JoinColumn(nullable=false)
- */
- protected $productFamily;
-
- /**
- * @ORM\Column(type="string", length=255, nullable=true)
- */
- protected $title;
-
- /**
- * @ORM\Column(type="boolean", nullable=true)
- */
- protected $originProduct;
-
- public function __construct()
- {
- $this->orderProducts = new ArrayCollection();
- $this->status = 1;
- }
-
- public function __toString()
- {
- $title = $this->getProductFamily()->getTitle();
-
- if ($this->getTitle() && strlen($this->getTitle())) {
- $title .= ' - ' . $this->getTitle();
- }
-
- if ($this->getProductFamily()->hasProductsWithVariousWeight()) {
- $title .= ' - ' . $this->getQuantityLabelInherited();
- }
-
- return $title;
- }
-
- // @TODO : move
- // getProductQuantityMaxAddCart
- public function getQuantityMaxAddCart(OrderShopInterface $orderShop)
- {
- $productFamily = $this->getProductFamily();
-
- $byWeight = false;
- if ($productFamily->getBehaviorCountStock() == ProductFamilyModel::BEHAVIOR_COUNT_STOCK_BY_MEASURE) {
- $byWeight = true;
- }
-
- return $this->getAvailableQuantityInherited() - $orderShop->getQuantityOrderByProduct($this, $byWeight);
- }
-
- // @TODO : move
- // getProductQuantity
- public function getProductQuantity()
- {
- $productFamily = $this->getProductFamily();
-
- if ($productFamily->getBehaviorCountStock() == ProductFamilyModel::BEHAVIOR_COUNT_STOCK_BY_MEASURE) {
- return $this->getQuantityInherited() / $this->getUnitInherited()->getCoefficient();
- } else {
- return 1;
- }
- }
-
- // @TODO : move
- public function getBuyingPriceInherited()
- {
- if ($this->getBuyingPrice()) {
- return $this->getBuyingPrice();
- } else {
- return $this->getProductFamily()->getBuyingPrice();
- }
- }
-
- // @TODO : move
- public function getBuyingPriceByRefUnitInherited()
- {
- if ($this->getBuyingPriceByRefUnit()) {
- return $this->getBuyingPriceByRefUnit();
- } else {
- return $this->getProductFamily()->getBuyingPriceByRefUnit();
- }
- }
-
- // @TODO : move
- public function getPriceInherited()
- {
- if ($this->getPrice()) {
- return $this->getPrice();
- } else {
- return $this->getProductFamily()->getPrice();
- }
- }
-
- // @TODO : move
- public function getPriceByRefUnitInherited()
- {
- if ($this->getPriceByRefUnit()) {
- return $this->getPriceByRefUnit();
- } else {
- return $this->getProductFamily()->getPriceByRefUnit();
- }
- }
-
- // @TODO : move
- public function getBehaviorPriceInherited()
- {
- return $this->getProductFamily()->getBehaviorPrice();
- }
-
- // @TODO : move
- public function getReductionCatalogInherited()
- {
- return $this->getProductFamily()->getReductionCatalog();
- }
-
- // @TODO : move
- public function getUnitInherited()
- {
- if ($this->getUnit()) {
- return $this->getUnit();
- } else {
- return $this->getProductFamily()->getUnit();
- }
- }
-
- // @TODO : move
- public function getTitleInherited()
- {
- if ($this->getTitle()) {
- return $this->getTitle();
- } else {
- return $this->getProductFamily()->getTitle();
- }
- }
-
- // @TODO : move
- public function getQuantityInherited()
- {
- if ($this->getQuantity()) {
- return $this->getQuantity();
- } else {
- return $this->getProductFamily()->getQuantity();
- }
- }
-
- // @TODO : move
- public function getQuantityLabelInherited()
- {
- $quantity = $this->getQuantityInherited();
- $unit = $this->getUnitInherited();
- return $quantity . $unit->getWordingShort();
- }
-
- // @TODO : move
- public function getQuantityTitle($productFamily)
- {
- $title = $this->getQuantityLabelInherited();
- if ($productFamily->hasProductsWithVariousWeight()) {
- $title .= ', ' . $this->getTitleInherited();
- }
- return $title;
- }
-
- // @TODO : move
- public function getAvailableQuantityInherited()
- {
- switch ($this->getProductFamily()->getBehaviorCountStock()) {
- case ProductFamilyModel::BEHAVIOR_COUNT_STOCK_BY_PRODUCT_FAMILY :
- case ProductFamilyModel::BEHAVIOR_COUNT_STOCK_BY_MEASURE :
- return $this->getProductFamily()->getAvailableQuantity();
- break;
- case ProductFamilyModel::BEHAVIOR_COUNT_STOCK_BY_PRODUCT :
- return $this->getAvailableQuantity();
- break;
- case ProductFamilyModel::BEHAVIOR_COUNT_STOCK_UNLIMITED :
- return false;
- break;
- }
- }
-
- // @TODO : move
- public function getTaxRateInherited()
- {
- return $this->getProductFamily()->getTaxRateInherited();
- }
-
- public function getProductFamily(): ?ProductFamilyInterface
- {
- return $this->productFamily;
- }
-
- public function setProductFamily(?ProductFamilyInterface $productFamily): self
- {
- $this->productFamily = $productFamily;
-
- return $this;
- }
-
- public function getTitle(): ?string
- {
- return $this->title;
- }
-
- public function setTitle(?string $title): self
- {
- $this->title = $title;
-
- return $this;
- }
-
- public function getOriginProduct(): ?bool
- {
- return $this->originProduct;
- }
-
- public function setOriginProduct(?bool $originProduct): self
- {
- $this->originProduct = $originProduct;
-
- return $this;
- }
- }
|