|
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807 |
- <?php
-
- namespace Lc\CaracoleBundle\Model\Product;
-
- use Doctrine\Common\Collections\ArrayCollection;
- use Doctrine\Common\Collections\Collection;
- use Doctrine\ORM\Mapping as ORM;
- use Lc\CaracoleBundle\Doctrine\Extension\FilterSectionInterface;
- use Lc\CaracoleBundle\Doctrine\Extension\PriceInterface;
- use Lc\CaracoleBundle\Doctrine\Extension\ProductPropertyTrait;
- use Lc\CaracoleBundle\Doctrine\Extension\ProductPropertyInterface;
- use Gedmo\Mapping\Annotation as Gedmo;
- use Lc\CaracoleBundle\Model\Reduction\ReductionCatalogInterface;
- use Lc\CaracoleBundle\Model\Section\SectionInterface;
- use Lc\SovBundle\Doctrine\Extension\BlameableNullableTrait;
- use Lc\SovBundle\Doctrine\Pattern\AbstractFullEntity;
- use Lc\SovBundle\Model\File\FileInterface;
-
-
- /**
- * @ORM\MappedSuperclass()
- */
- abstract class ProductFamilyModel extends AbstractFullEntity implements ProductPropertyInterface, PriceInterface,
- FilterSectionInterface, ProductFamilyInterface
- {
- use ProductPropertyTrait;
-
- const BEHAVIOR_COUNT_STOCK_UNLIMITED = 'unlimited';
- const BEHAVIOR_COUNT_STOCK_BY_MEASURE = 'by-measure';
- const BEHAVIOR_COUNT_STOCK_BY_PRODUCT_FAMILY = 'by-product-family';
- const BEHAVIOR_COUNT_STOCK_BY_PRODUCT = 'by-product';
-
- public function getBehaviorCountStockChoices(): array
- {
- return [
- self::BEHAVIOR_COUNT_STOCK_BY_MEASURE,
- self::BEHAVIOR_COUNT_STOCK_BY_PRODUCT,
- self::BEHAVIOR_COUNT_STOCK_BY_PRODUCT_FAMILY,
- self::BEHAVIOR_COUNT_STOCK_UNLIMITED,
- ];
- }
-
- const BEHAVIOR_DISPLAY_SALE_BY_MEASURE = 'by-measure';
- const BEHAVIOR_DISPLAY_SALE_BY_QUANTITY = 'by-quantity';
-
- public function getBehaviorDisplaySaleChoices(): array
- {
- return [
- self::BEHAVIOR_DISPLAY_SALE_BY_MEASURE,
- self::BEHAVIOR_DISPLAY_SALE_BY_QUANTITY,
- ];
- }
-
- const BEHAVIOR_STOCK_CYCLE_RENEWABLE = 'renewable';
- const BEHAVIOR_STOCK_CYCLE_RENEWABLE_VALIDATION = 'renewable-with-validation';
- const BEHAVIOR_STOCK_CYCLE_NON_RENEWABLE = 'non-renewable';
-
- public function getBehaviorStockCycleChoices(): array
- {
- return [
- self::BEHAVIOR_STOCK_CYCLE_NON_RENEWABLE,
- self::BEHAVIOR_STOCK_CYCLE_RENEWABLE,
- self::BEHAVIOR_STOCK_CYCLE_RENEWABLE_VALIDATION,
- ];
- }
-
- const WARNING_MESSAGE_TYPE_SUCCESS = 'success';
- const WARNING_MESSAGE_TYPE_ERROR = 'error';
- const WARNING_MESSAGE_TYPE_WARNING = 'warning';
- const WARNING_MESSAGE_TYPE_INFO = 'info';
-
- public function getWaringMessageTypeChoices(): array
- {
- return [
- self::WARNING_MESSAGE_TYPE_ERROR,
- self::WARNING_MESSAGE_TYPE_INFO,
- self::WARNING_MESSAGE_TYPE_SUCCESS,
- self::WARNING_MESSAGE_TYPE_WARNING,
- ];
- }
-
- const BEHAVIOR_ADD_TO_CART_SIMPLE = 'simple';
- const BEHAVIOR_ADD_TO_CART_MULTIPLE = 'multiple';
-
- public function getBehaviorAddToCartChoices(): array
- {
- return [
- self::BEHAVIOR_ADD_TO_CART_MULTIPLE,
- self::BEHAVIOR_ADD_TO_CART_SIMPLE,
- ];
- }
-
- const BEHAVIOR_PRICE_BY_PIECE = 'by-piece';
- const BEHAVIOR_PRICE_BY_REFERENCE_UNIT = 'by-reference-unit';
-
- public function getBehaviorPriceChoices(): array
- {
- return [
- self::BEHAVIOR_PRICE_BY_PIECE,
- self::BEHAVIOR_PRICE_BY_REFERENCE_UNIT,
- ];
- }
-
- const PROPERTY_ORGANIC_LABEL_AB = 'ab';
- const PROPERTY_ORGANIC_LABEL_NP = 'nature-progres';
- const PROPERTY_ORGANIC_LABEL_HVE = 'hve';
- const PROPERTY_ORGANIC_LABEL_TVVR = 'tvvr';
-
- public function getPropertyOrganicLabelChoices(): array
- {
- return [
- self::PROPERTY_ORGANIC_LABEL_AB,
- self::PROPERTY_ORGANIC_LABEL_NP,
- self::PROPERTY_ORGANIC_LABEL_HVE,
- self::PROPERTY_ORGANIC_LABEL_TVVR,
- ];
- }
-
- const TYPE_EXPIRATION_DATE_DLC = 'dlc';
- const TYPE_EXPIRATION_DATE_DDM = 'ddm';
- const TYPE_EXPIRATION_DATE_DLUO = 'dluo';
-
- public function getTypeExpirationDateChoices(): array
- {
- return [
- self::TYPE_EXPIRATION_DATE_DLC,
- self::TYPE_EXPIRATION_DATE_DDM,
- self::TYPE_EXPIRATION_DATE_DLUO,
- ];
- }
-
- const BEHAVIOR_EXPIRATION_DATE_BY_PRODUCT_FAMILY = 'by-product-family';
- const BEHAVIOR_EXPIRATION_DATE_BY_PRODUCT = 'by-product';
-
- public function getBehaviorExpirationDateChoices(): array
- {
- return [
- self::BEHAVIOR_EXPIRATION_DATE_BY_PRODUCT_FAMILY,
- self::BEHAVIOR_EXPIRATION_DATE_BY_PRODUCT
- ];
- }
-
- // @TODO : Champ hydraté par ProductFamilyBuilder ?
- protected $reductionCatalog;
-
- /**
- * @ORM\ManyToMany(targetEntity="Lc\CaracoleBundle\Model\Product\ProductCategoryInterface", inversedBy="productFamilies")
- */
- protected $productCategories;
-
- /**
- * @ORM\Column(type="boolean")
- */
- protected $activeProducts;
-
- /**
- * @ORM\Column(type="string", length=255, nullable=true)
- */
- protected $productsType;
-
- /**
- * @ORM\Column(type="boolean", nullable=true)
- */
- protected $productsQuantityAsTitle;
-
- /**
- * @ORM\Column(type="string", length=255, nullable=true)
- */
- protected $quantityLabel;
-
- /**
- * @ORM\OneToMany(targetEntity="Lc\CaracoleBundle\Model\Product\ProductInterface", mappedBy="productFamily", orphanRemoval=true, cascade={"persist"})
- * @ORM\OrderBy({"position" = "ASC"})
- */
- protected $products;
-
- /**
- * @ORM\Column(type="string", length=255, nullable=true)
- */
- protected $subtitle;
-
- /**
- * @ORM\Column(type="text", nullable=true)
- */
- protected $warningMessage;
-
- /**
- * @ORM\Column(type="string", length=255, nullable=true)
- */
- protected $warningMessageType;
-
- /**
- * @ORM\Column(type="text", nullable=true)
- */
- protected $note;
-
- /**
- * @ORM\Column(type="string", length=31, nullable=true)
- */
- protected $behaviorOutOfStock;
-
- /**
- * @ORM\Column(type="string", length=31)
- */
- protected $behaviorCountStock;
-
- /**
- * @ORM\Column(type="string", length=255)
- */
- protected $behaviorStockCycle;
-
- /**
- * @ORM\Column(type="string", length=255)
- */
- protected $behaviorDisplaySale;
-
- /**
- * @ORM\Column(type="string", length=255, nullable=true)
- */
- protected $exportTitle;
-
- /**
- * @ORM\Column(type="text", nullable=true)
- */
- protected $exportNote;
-
- /**
- * @ORM\Column(type="date", nullable=true)
- */
- protected $propertyNoveltyExpirationDate;
-
- /**
- * @ORM\Column(type="string", length=255, nullable=true)
- */
- protected $propertyOrganicLabel;
-
- /**
- * @ORM\Column(type="text", nullable=true)
- */
- protected $propertyAllergens;
-
- /**
- * @ORM\Column(type="text", nullable=true)
- */
- protected $propertyComposition;
-
- /**
- * @ORM\Column(type="text", nullable=true)
- */
- protected $propertyFragrances;
-
- /**
- * @ORM\Column(type="text", nullable=true)
- */
- protected $propertyPackaging;
-
- /**
- * @ORM\Column(type="text", nullable=true)
- */
- protected $propertyCharacteristics;
-
- /**
- * @ORM\Column(type="text", nullable=true)
- */
- protected $propertyWeight;
-
- /**
- * @ORM\Column(type="text", nullable=true)
- */
- protected $propertyQuantity;
-
- /**
- * @ORM\Column(type="text", nullable=true)
- */
- protected $propertyFeature;
-
-
- /**
- * @ORM\Column(type="text", nullable=true)
- */
- protected $propertyVariety;
-
- /**
- * @ORM\Column(type="text", nullable=true)
- */
- protected $propertyAlcoholLevel;
-
- /**
- * @ORM\Column(type="string", length=255, nullable=true)
- */
- protected $behaviorExpirationDate;
-
- /**
- * @ORM\Column(type="string", length=255, nullable=true)
- */
- protected $typeExpirationDate;
-
- /**
- * @ORM\Column(type="string", length=32, nullable=true)
- */
- protected $behaviorAddToCart;
-
- /**
- * @ORM\Column(type="string", length=31)
- */
- protected $behaviorPrice;
-
- /**
- * @ORM\Column(type="boolean")
- */
- protected $saleStatus;
-
- /**
- * @ORM\ManyToOne(targetEntity="Lc\CaracoleBundle\Model\Section\SectionInterface")
- * @ORM\JoinColumn(nullable=false)
- */
- protected $section;
-
- /**
- * @ORM\ManyToOne(targetEntity="Lc\SovBundle\Model\File\FileInterface", cascade={"persist", "remove"})
- */
- protected $image;
-
- public function __construct()
- {
- $this->productCategories = new ArrayCollection();
- $this->products = new ArrayCollection();
- }
-
- public function __toString()
- {
- return $this->getTitle();
- }
-
- public function getSection(): SectionInterface
- {
- return $this->section;
- }
-
- public function setSection(SectionInterface $section): self
- {
- $this->section = $section;
-
- return $this;
- }
-
- public function getActiveProducts(): ?bool
- {
- return $this->activeProducts;
- }
-
- public function setActiveProducts(bool $activeProducts): self
- {
- $this->activeProducts = $activeProducts;
-
- return $this;
- }
-
- public function getProductsQuantityAsTitle(): ?bool
- {
- return $this->productsQuantityAsTitle;
- }
-
- public function setProductsQuantityAsTitle(bool $productsQuantityAsTitle): self
- {
- $this->productsQuantityAsTitle = $productsQuantityAsTitle;
-
- return $this;
- }
-
- public function getProductsType(): ?string
- {
- return $this->productsType;
- }
-
- public function setProductsType(?string $productsType): self
- {
- $this->productsType = $productsType;
-
- return $this;
- }
-
- public function getQuantityLabel(): ?string
- {
- return $this->quantityLabel;
- }
-
- public function setQuantityLabel(?string $quantityLabel): self
- {
- $this->quantityLabel = $quantityLabel;
-
- return $this;
- }
-
- /**
- * @return Collection|ProductInterface[]
- */
- public function getProducts(): Collection
- {
- return $this->products;
- }
-
- public function addProduct(ProductInterface $product): self
- {
- if (!$this->products->contains($product)) {
- $this->products[] = $product;
- $product->setProductFamily($this);
- }
-
- return $this;
- }
-
- public function removeProduct(ProductInterface $product): self
- {
- if ($this->products->contains($product)) {
- $this->products->removeElement($product);
- // set the owning side to null (unless already changed)
- if ($product->getProductFamily() === $this) {
- $product->setProductFamily(null);
- }
- }
-
- return $this;
- }
-
- public function getReductionCatalog(): ?ReductionCatalogInterface
- {
- return $this->reductionCatalog;
- }
-
- public function setReductionCatalog(?ReductionCatalogInterface $reductionCatalog): self
- {
- $this->reductionCatalog = $reductionCatalog;
-
- return $this;
- }
-
- /**
- * @return Collection|ProductCategoryInterface[]
- */
- public function getProductCategories(): Collection
- {
- return $this->productCategories;
- }
-
- public function initProductCategories()
- {
- $this->productCategories = new ArrayCollection();
- }
-
- public function addProductCategory(ProductCategoryInterface $productCategory): self
- {
- if (!$this->productCategories->contains($productCategory)) {
- $this->productCategories[] = $productCategory;
- }
-
- return $this;
- }
-
- public function removeProductCategory(ProductCategoryInterface $productCategory): self
- {
- if ($this->productCategories->contains($productCategory)) {
- $this->productCategories->removeElement($productCategory);
- }
-
- return $this;
- }
-
- public function getSubtitle(): ?string
- {
- return $this->subtitle;
- }
-
- public function setSubtitle(?string $subtitle): self
- {
- $this->subtitle = $subtitle;
-
- return $this;
- }
-
- public function getWarningMessage(): ?string
- {
- return $this->warningMessage;
- }
-
- public function setWarningMessage(?string $warningMessage): self
- {
- $this->warningMessage = $warningMessage;
-
- return $this;
- }
-
- public function getWarningMessageType(): ?string
- {
- return $this->warningMessageType;
- }
-
- public function setWarningMessageType(?string $warningMessageType): self
- {
- $this->warningMessageType = $warningMessageType;
-
- return $this;
- }
-
- public function getNote(): ?string
- {
- return $this->note;
- }
-
- public function setNote(?string $note): self
- {
- $this->note = $note;
-
- return $this;
- }
-
- public function getBehaviorOutOfStock(): ?string
- {
- return $this->behaviorOutOfStock;
- }
-
- public function setBehaviorOutOfStock(?string $behaviorOutOfStock): self
- {
- $this->behaviorOutOfStock = $behaviorOutOfStock;
-
- return $this;
- }
-
- public function getBehaviorCountStock(): ?string
- {
- return $this->behaviorCountStock;
- }
-
-
- public function setBehaviorCountStock(string $behaviorCountStock): self
- {
- $this->behaviorCountStock = $behaviorCountStock;
-
- return $this;
- }
-
- public function getExportTitle(): ?string
- {
- return $this->exportTitle;
- }
-
- public function setExportTitle(?string $exportTitle): self
- {
- $this->exportTitle = $exportTitle;
-
- return $this;
- }
-
- public function getExportNote(): ?string
- {
- return $this->exportNote;
- }
-
- public function setExportNote(?string $exportNote): self
- {
- $this->exportNote = $exportNote;
-
- return $this;
- }
-
- public function getBehaviorStockCycle(): ?string
- {
- return $this->behaviorStockCycle;
- }
-
- public function setBehaviorStockCycle(string $behaviorStockCycle): self
- {
- $this->behaviorStockCycle = $behaviorStockCycle;
-
- return $this;
- }
-
- public function getBehaviorDisplaySale(): ?string
- {
- return $this->behaviorDisplaySale;
- }
-
- public function setBehaviorDisplaySale(string $behaviorDisplaySale): self
- {
- $this->behaviorDisplaySale = $behaviorDisplaySale;
-
- return $this;
- }
-
- public function getPropertyNoveltyExpirationDate(): ?\DateTimeInterface
- {
- return $this->propertyNoveltyExpirationDate;
- }
-
- public function setPropertyNoveltyExpirationDate(?\DateTimeInterface $propertyNoveltyExpirationDate): self
- {
- $this->propertyNoveltyExpirationDate = $propertyNoveltyExpirationDate;
-
- return $this;
- }
-
- public function getPropertyOrganicLabel(): ?string
- {
- return $this->propertyOrganicLabel;
- }
-
- public function setPropertyOrganicLabel(?string $propertyOrganicLabel): self
- {
- $this->propertyOrganicLabel = $propertyOrganicLabel;
-
- return $this;
- }
-
- public function getPropertyAllergens(): ?string
- {
- return $this->propertyAllergens;
- }
-
- public function setPropertyAllergens(?string $propertyAllergens): self
- {
- $this->propertyAllergens = $propertyAllergens;
-
- return $this;
- }
-
- public function getPropertyComposition(): ?string
- {
- return $this->propertyComposition;
- }
-
- public function setPropertyComposition(?string $propertyComposition): self
- {
- $this->propertyComposition = $propertyComposition;
-
- return $this;
- }
-
- public function getPropertyFragrances(): ?string
- {
- return $this->propertyFragrances;
- }
-
- public function setPropertyFragrances(?string $propertyFragrances): self
- {
- $this->propertyFragrances = $propertyFragrances;
-
- return $this;
- }
-
- public function getBehaviorExpirationDate(): ?string
- {
- return $this->behaviorExpirationDate;
- }
-
- public function setBehaviorExpirationDate(?string $behaviorExpirationDate): self
- {
- $this->behaviorExpirationDate = $behaviorExpirationDate;
-
- return $this;
- }
-
- public function getTypeExpirationDate(): ?string
- {
- return $this->typeExpirationDate;
- }
-
- public function setTypeExpirationDate(?string $typeExpirationDate): self
- {
- $this->typeExpirationDate = $typeExpirationDate;
-
- return $this;
- }
-
- public function getPropertyWeight(): ?string
- {
- return $this->propertyWeight;
- }
-
- public function setPropertyWeight(?string $propertyWeight): self
- {
- $this->propertyWeight = $propertyWeight;
-
- return $this;
- }
-
- public function getPropertyQuantity(): ?string
- {
- return $this->propertyQuantity;
- }
-
- public function setPropertyQuantity(?string $propertyQuantity): self
- {
- $this->propertyQuantity = $propertyQuantity;
-
- return $this;
- }
-
- public function getPropertyVariety(): ?string
- {
- return $this->propertyVariety;
- }
-
- public function setPropertyVariety(?string $propertyVariety): self
- {
- $this->propertyVariety = $propertyVariety;
-
- return $this;
- }
-
- public function getPropertyFeature(): ?string
- {
- return $this->propertyFeature;
- }
-
- public function setPropertyFeature(?string $propertyFeature): self
- {
- $this->propertyFeature = $propertyFeature;
-
- return $this;
- }
-
- public function getPropertyAlcoholLevel(): ?string
- {
- return $this->propertyAlcoholLevel;
- }
-
- public function setPropertyAlcoholLevel(?string $propertyAlcoholLevel): self
- {
- $this->propertyAlcoholLevel = $propertyAlcoholLevel;
-
- return $this;
- }
-
- public function getPropertyPackaging(): ?string
- {
- return $this->propertyPackaging;
- }
-
- public function setPropertyPackaging(?string $propertyPackaging): self
- {
- $this->propertyPackaging = $propertyPackaging;
-
- return $this;
- }
-
- public function getPropertyCharacteristics(): ?string
- {
- return $this->propertyCharacteristics;
- }
-
- public function setPropertyCharacteristics(?string $propertyCharacteristics): self
- {
- $this->propertyCharacteristics = $propertyCharacteristics;
-
- return $this;
- }
-
- public function getBehaviorAddToCart(): ?string
- {
- return $this->behaviorAddToCart;
- }
-
- public function setBehaviorAddToCart(?string $behaviorAddToCart): self
- {
- $this->behaviorAddToCart = $behaviorAddToCart;
-
- return $this;
- }
-
-
- public function getBehaviorPrice(): ?string
- {
- return $this->behaviorPrice;
- }
-
- public function setBehaviorPrice(?string $behaviorPrice): self
- {
- $this->behaviorPrice = $behaviorPrice;
-
- return $this;
- }
-
- public function getSaleStatus(): ?bool
- {
- return $this->saleStatus;
- }
-
- public function setSaleStatus(bool $saleStatus): self
- {
- $this->saleStatus = $saleStatus;
-
- return $this;
- }
-
- public function getImage(): ?FileInterface
- {
- return $this->image;
- }
-
- public function setImage(?FileInterface $image): self
- {
- $this->image = $image;
-
- return $this;
- }
-
- }
|