@@ -1,10 +1,38 @@ | |||
<?php | |||
namespace Lc\CaracoleBundle\Definition; | |||
use Lc\SovBundle\Definition\AbstractSettingDefinition; | |||
interface MerchantSettingDefinitionInterface | |||
{ | |||
public function addSettingText(array $params); | |||
public function addSettingTextarea(array $params); | |||
public function addSettingTextareaAdvanced(array $params); | |||
public function addSettingDate(array $params); | |||
public function addSettingTime(array $params); | |||
public function addSettingFile(array $params); | |||
public function addSettingImage(array $params); | |||
public function addSettingSelect(array $params); | |||
public function addSettingRadio(array $params); | |||
public function addSetting($params); | |||
public function getSettings(): array; | |||
public function getSettingsByCategory($category); | |||
public function getSettingByName($name): ?array; | |||
public function getSettingType($name): ?string; | |||
public function getCategories(); | |||
} |
@@ -4,5 +4,7 @@ namespace Lc\CaracoleBundle\Doctrine\Extension; | |||
interface OrderAmountMinInterface | |||
{ | |||
public function getOrderAmountMin(): ?float; | |||
public function setOrderAmountMin(float $orderAmountMin); | |||
} |
@@ -2,6 +2,17 @@ | |||
namespace Lc\CaracoleBundle\Doctrine\Extension; | |||
use Lc\CaracoleBundle\Model\Order\OrderShopInterface; | |||
interface OrderPayoffInterface | |||
{ | |||
public function getOrderShop(): ?OrderShopInterface; | |||
public function setOrderShop(?OrderShopInterface $orderShop); | |||
public function setEditable(bool $editable); | |||
public function getEditable(): ?bool; | |||
public function isEditable(): ?bool; | |||
} |
@@ -4,4 +4,23 @@ namespace Lc\CaracoleBundle\Doctrine\Extension; | |||
interface PayoffInterface | |||
{ | |||
public function setMeanPayment(?string $meanPayment); | |||
public function getMeanPayment(): ?string; | |||
public function getReference(): ?string; | |||
public function setReference(?string $reference); | |||
public function getPaidAt(): ?\DateTimeInterface; | |||
public function setPaidAt(?\DateTimeInterface $paidAt); | |||
public function getAmount(): ?float; | |||
public function setAmount(float $amount); | |||
public function getComment(): ?string; | |||
public function setComment(?string $comment); | |||
} |
@@ -1,27 +1,48 @@ | |||
<?php | |||
namespace Lc\CaracoleBundle\Doctrine\Extension ; | |||
namespace Lc\CaracoleBundle\Doctrine\Extension; | |||
use Lc\CaracoleBundle\Model\Config\TaxRateInterface; | |||
use Lc\CaracoleBundle\Model\Config\UnitInterface; | |||
interface PriceInterface | |||
{ | |||
/** | |||
* Retourne le prix hérité | |||
* | |||
* @return float | |||
*/ | |||
public function getPriceInherited(); | |||
/** | |||
* Retourne le TaxRate hérité | |||
* | |||
* @return entity | |||
*/ | |||
public function getTaxRateInherited(); | |||
/** | |||
* Retourne le Unit hérité | |||
* | |||
* @return float | |||
*/ | |||
public function getUnitInherited(); | |||
/** | |||
* Retourne le prix hérité | |||
* | |||
* @return float | |||
*/ | |||
public function getPriceInherited(): ?float; | |||
/** | |||
* Retourne le TaxRate hérité | |||
* | |||
* @return TaxRateInterface | |||
*/ | |||
public function getTaxRateInherited(): ?TaxRateInterface; | |||
/** | |||
* Retourne le Unit hérité | |||
* | |||
* @return UnitInterface | |||
*/ | |||
public function getUnitInherited(): ?UnitInterface; | |||
public function getBuyingPriceInherited(): ?float; | |||
public function getBuyingPrice(): ?float; | |||
public function setBuyingPrice(?float $buyingPrice); | |||
public function getPrice(): ?float; | |||
public function setPrice(?float $price); | |||
public function getUnit(): ?UnitInterface; | |||
public function setUnit(?UnitInterface $unit); | |||
public function getTaxRate(): ?TaxRateInterface; | |||
public function setTaxRate(?TaxRateInterface $taxRate); | |||
} |
@@ -4,5 +4,27 @@ namespace Lc\CaracoleBundle\Doctrine\Extension; | |||
interface ProductPropertyInterface | |||
{ | |||
public function getBuyingPriceByRefUnit(): ?float; | |||
public function setBuyingPriceByRefUnit(?float $buyingPriceByRefUnit); | |||
public function getPriceByRefUnit(): ?float; | |||
public function setPriceByRefUnit(?float $priceByRefUnit); | |||
public function getQuantity(): ?float; | |||
public function setQuantity(?float $quantity); | |||
public function getAvailableQuantity(): ?float; | |||
public function setAvailableQuantity(?float $availableQuantity); | |||
public function getAvailableQuantityDefault(): ?float; | |||
public function setAvailableQuantityDefault(?float $availableQuantityDefault); | |||
public function getPropertyExpirationDate(): ?string; | |||
public function setPropertyExpirationDate(?string $propertyExpirationDate); | |||
} |
@@ -4,4 +4,15 @@ namespace Lc\CaracoleBundle\Doctrine\Extension; | |||
interface ReductionCartPropertyInterface | |||
{ | |||
public function getFreeShipping(): ?bool; | |||
public function setFreeShipping(?bool $freeShipping); | |||
public function getAppliedTo(): ?string; | |||
public function setAppliedTo(string $appliedTo); | |||
public function getType(): ?string; | |||
public function setType(string $type); | |||
} |
@@ -4,12 +4,15 @@ namespace Lc\CaracoleBundle\Doctrine\Extension; | |||
interface ReductionInterface | |||
{ | |||
/** | |||
* Retourne le merchant courant en fonction du user ou du cookie du visitor | |||
* | |||
* @return MerchantInterface | |||
*/ | |||
public function getUnit(); | |||
public function getValue(); | |||
public function getBehaviorTaxRate(); | |||
public function getValue(): ?float; | |||
public function setValue(?float $value); | |||
public function getUnit(): ?string; | |||
public function setUnit(?string $unit); | |||
public function getBehaviorTaxRate(): ?string; | |||
public function setBehaviorTaxRate(?string $behaviorTaxRate); | |||
} |
@@ -2,7 +2,33 @@ | |||
namespace Lc\CaracoleBundle\Doctrine\Extension; | |||
use Doctrine\Common\Collections\Collection; | |||
use Lc\SovBundle\Model\User\GroupUserInterface; | |||
use Lc\SovBundle\Model\User\UserInterface; | |||
interface ReductionPropertyInterface | |||
{ | |||
public function getUsers(): Collection; | |||
public function addUser(UserInterface $user); | |||
public function removeUser(UserInterface $user); | |||
public function getGroupUsers(): Collection; | |||
public function addGroupUser(GroupUserInterface $groupUser); | |||
public function removeGroupUser(GroupUserInterface $groupUser); | |||
public function getDateStart(): ?\DateTimeInterface; | |||
public function setDateStart(?\DateTimeInterface $dateStart); | |||
public function getDateEnd(): ?\DateTimeInterface; | |||
public function setDateEnd(?\DateTimeInterface $dateEnd); | |||
public function getPermanent(): ?bool; | |||
public function setPermanent(bool $permanent); | |||
} |
@@ -2,6 +2,7 @@ | |||
namespace Lc\CaracoleBundle\Model\Address; | |||
use Lc\CaracoleBundle\Model\Merchant\MerchantInterface; | |||
use Lc\CaracoleBundle\Model\PointSale\PointSaleInterface; | |||
use Lc\SovBundle\Model\User\UserInterface; | |||
@@ -10,89 +11,113 @@ interface AddressInterface | |||
{ | |||
public function getUser(): ?UserInterface; | |||
public function setUser(?UserInterface $user): AddressModel; | |||
public function setUser(?UserInterface $user): AddressInterface; | |||
public function getTitle(): ?string; | |||
public function setTitle(string $title): AddressModel; | |||
public function setTitle(string $title): AddressInterface; | |||
public function getType(): ?string; | |||
public function setType(string $type): AddressModel; | |||
public function setType(string $type): AddressInterface; | |||
public function getCivility(): ?bool; | |||
public function setCivility(?bool $civility): AddressModel; | |||
public function setCivility(?bool $civility): AddressInterface; | |||
public function getLastname(): ?string; | |||
public function setLastname(?string $lastname): AddressModel; | |||
public function setLastname(?string $lastname): AddressInterface; | |||
public function getFirstname(): ?string; | |||
public function setFirstname(?string $firstname): AddressModel; | |||
public function setFirstname(?string $firstname): AddressInterface; | |||
public function getAddress(): ?string; | |||
public function setAddress(string $address): AddressModel; | |||
public function setAddress(string $address): AddressInterface; | |||
public function getZip(): ?string; | |||
public function setZip(string $zip): AddressModel; | |||
public function setZip(string $zip): AddressInterface; | |||
public function getCity(): ?string; | |||
public function setCity(string $city): AddressModel; | |||
public function setCity(string $city): AddressInterface; | |||
public function getCountry(): ?string; | |||
public function setCountry(string $country): AddressModel; | |||
public function setCountry(string $country): AddressInterface; | |||
public function getLatitude(): ?string; | |||
public function setLatitude(?string $latitude): AddressModel; | |||
public function setLatitude(?string $latitude): AddressInterface; | |||
public function getLongitude(): ?string; | |||
public function setLongitude(?string $longitude): AddressModel; | |||
public function setLongitude(?string $longitude): AddressInterface; | |||
public function getLatitudeOverride(): ?string; | |||
public function setLatitudeOverride(?string $latitudeOverride): AddressModel; | |||
public function setLatitudeOverride(?string $latitudeOverride): AddressInterface; | |||
public function getLongitudeOverride(): ?string; | |||
public function setLongitudeOverride(?string $longitudeOverride): AddressModel; | |||
public function setLongitudeOverride(?string $longitudeOverride): AddressInterface; | |||
public function getCompany(): ?string; | |||
public function setCompany(?string $company): AddressModel; | |||
public function setCompany(?string $company): AddressInterface; | |||
public function getSiret(): ?string; | |||
public function setSiret(?string $siret): AddressModel; | |||
public function setSiret(?string $siret): AddressInterface; | |||
public function getTva(): ?string; | |||
public function setTva(?string $tva): AddressModel; | |||
public function setTva(?string $tva): AddressInterface; | |||
public function getPhone(): ?array; | |||
public function setPhone(?array $phone): AddressModel; | |||
public function setPhone(?array $phone): AddressInterface; | |||
public function getComment(): ?string; | |||
public function setComment(?string $comment): AddressModel; | |||
public function setComment(?string $comment): AddressInterface; | |||
public function getPointSale(): ?PointSaleInterface; | |||
public function setPointSale(PointSaleInterface $pointSale): AddressModel; | |||
public function setPointSale(PointSaleInterface $pointSale): AddressInterface; | |||
public function getMerchant(): ?MerchantInterface; | |||
public function setMerchant(MerchantInterface $merchant): AddressModel; | |||
public function setMerchant(MerchantInterface $merchant): AddressInterface; | |||
public function getDeliveryInfos(): ?string; | |||
public function setDeliveryInfos(?string $deliveryInfos): AddressModel; | |||
public function setDeliveryInfos(?string $deliveryInfos): AddressInterface; | |||
public function getCreatedBy(): ?UserInterface; | |||
public function setCreatedBy(?UserInterface $createdBy); | |||
public function getUpdatedBy(): ?UserInterface; | |||
public function setUpdatedBy(?UserInterface $updatedBy); | |||
public function getDevAlias(): ?string; | |||
public function setDevAlias(?string $devAlias); | |||
public function getStatus(): ?float; | |||
public function setStatus(float $status): AddressInterface; | |||
public function getCreatedAt(): ?\DateTimeInterface; | |||
public function setCreatedAt(\DateTimeInterface $createdAt); | |||
public function getUpdatedAt(): ?\DateTimeInterface; | |||
public function setUpdatedAt(\DateTimeInterface $updatedAt); | |||
} |
@@ -1,19 +1,11 @@ | |||
<?php | |||
/** | |||
* @author La clic ! <contact@laclic.fr> | |||
*/ | |||
namespace Lc\CaracoleBundle\Model\Config; | |||
use Lc\SovBundle\Doctrine\Extension\BlameableTrait; | |||
use Lc\SovBundle\Doctrine\Extension\DevAliasTrait; | |||
use Lc\SovBundle\Doctrine\Extension\TimestampableTrait; | |||
use Lc\SovBundle\Model\User\UserInterface; | |||
/** | |||
* @ORM\MappedSuperclass() | |||
*/ | |||
interface TaxRateInterface | |||
{ | |||
public function getCreatedBy(): ?UserInterface; | |||
@@ -30,15 +22,13 @@ interface TaxRateInterface | |||
public function getBehaviorTaxRateChoices(): array; | |||
public function __toString(); | |||
public function getTitle(): ?string; | |||
public function setTitle(string $title); | |||
public function setTitle(string $title): TaxRateInterface; | |||
public function getValue(): ?float; | |||
public function setValue(float $value): TaxRateModel; | |||
public function setValue(float $value): TaxRateInterface; | |||
public function getCreatedAt(): ?\DateTimeInterface; | |||
@@ -1,16 +1,11 @@ | |||
<?php | |||
/** | |||
* @author La clic ! <contact@laclic.fr> | |||
*/ | |||
namespace Lc\CaracoleBundle\Model\Config; | |||
use Lc\SovBundle\Doctrine\Extension\BlameableTrait; | |||
use Lc\SovBundle\Doctrine\Extension\DevAliasTrait; | |||
use Lc\SovBundle\Doctrine\Extension\TimestampableTrait; | |||
use Lc\SovBundle\Model\User\UserInterface; | |||
interface UnitInterface | |||
{ | |||
public function getCreatedBy(): ?UserInterface; | |||
@@ -35,29 +30,27 @@ interface UnitInterface | |||
public function getUnitAmountChoices(): array; | |||
public function __toString(); | |||
public function getUnit(): ?string; | |||
public function setUnit(string $unit): UnitModel; | |||
public function setUnit(string $unit): UnitInterface; | |||
public function getWording(): ?string; | |||
public function setWording(string $wording): UnitModel; | |||
public function setWording(string $wording): UnitInterface; | |||
public function getWordingUnit(): ?string; | |||
public function setWordingUnit(string $wordingUnit): UnitModel; | |||
public function setWordingUnit(string $wordingUnit): UnitInterface; | |||
public function getWordingShort(): ?string; | |||
public function setWordingShort(string $wordingShort): UnitModel; | |||
public function setWordingShort(string $wordingShort): UnitInterface; | |||
public function getCoefficient(): ?int; | |||
public function setCoefficient(int $coefficient): UnitModel; | |||
public function setCoefficient(int $coefficient): UnitInterface; | |||
public function getUnitReference(): ?self; | |||
public function getUnitReference(): ?UnitInterface; | |||
public function setUnitReference(?UnitModel $unitReference); | |||
public function setUnitReference(?UnitInterface $unitReference); | |||
} |
@@ -124,7 +124,7 @@ abstract class UnitModel extends AbstractLightEntity implements UnitInterface | |||
return $this->unitReference; | |||
} | |||
public function setUnitReference(?self $unitReference): self | |||
public function setUnitReference(?UnitInterface $unitReference): self | |||
{ | |||
$this->unitReference = $unitReference; | |||
@@ -1,21 +1,68 @@ | |||
<?php | |||
/** | |||
* @author La clic ! <contact@laclic.fr> | |||
*/ | |||
namespace Lc\CaracoleBundle\Model\Credit; | |||
use Lc\CaracoleBundle\Doctrine\Extension\PayoffTrait; | |||
use Lc\CaracoleBundle\Model\Order\OrderPaymentInterface; | |||
use Lc\CaracoleBundle\Model\Order\OrderRefundInterface; | |||
use Lc\CaracoleBundle\Model\User\UserMerchantInterface; | |||
use Lc\SovBundle\Doctrine\Extension\BlameableTrait; | |||
use Lc\SovBundle\Doctrine\Extension\DevAliasTrait; | |||
use Lc\SovBundle\Doctrine\Extension\TimestampableTrait; | |||
use Lc\SovBundle\Model\User\UserInterface; | |||
interface CreditHistoryInterface | |||
{ | |||
public function getCreatedBy(): ?UserInterface; | |||
} | |||
public function setCreatedBy(?UserInterface $createdBy); | |||
public function getUpdatedBy(): ?UserInterface; | |||
public function setUpdatedBy(?UserInterface $updatedBy); | |||
public function getAmount(): ?float; | |||
public function setAmount(?float $amount): CreditHistoryInterface; | |||
public function getType(): ?string; | |||
public function setType(string $type): CreditHistoryInterface; | |||
public function getUserMerchant(): ?UserMerchantInterface; | |||
public function setUserMerchant(?UserMerchantInterface $userMerchant): CreditHistoryInterface; | |||
public function getOrderPayment(): ?OrderPaymentInterface; | |||
public function setOrderPayment(?OrderPaymentInterface $orderPayment): CreditHistoryInterface; | |||
public function getOrderRefund(): ?OrderRefundInterface; | |||
public function setOrderRefund(?OrderRefundInterface $orderRefund): CreditHistoryInterface; | |||
public function getDevAlias(): ?string; | |||
public function setDevAlias(?string $devAlias); | |||
public function setMeanPayment(?string $meanPayment): CreditHistoryInterface; | |||
public function getMeanPayment(): ?string; | |||
public function getReference(): ?string; | |||
public function setReference(?string $reference): CreditHistoryInterface; | |||
public function getPaidAt(): ?\DateTimeInterface; | |||
public function setPaidAt(?\DateTimeInterface $paidAt): CreditHistoryInterface; | |||
public function getComment(): ?string; | |||
public function setComment(?string $comment): CreditHistoryInterface; | |||
public function getCreatedAt(): ?\DateTimeInterface; | |||
public function setCreatedAt(\DateTimeInterface $createdAt); | |||
public function getUpdatedAt(): ?\DateTimeInterface; | |||
public function setUpdatedAt(\DateTimeInterface $updatedAt); | |||
} |
@@ -2,7 +2,18 @@ | |||
namespace Lc\CaracoleBundle\Model\Distribution; | |||
interface DistributionInterface | |||
{ | |||
public function getCycleNumber(): ?int; | |||
public function setCycleNumber(int $cycleNumber): DistributionInterface; | |||
public function getYear(): ?int; | |||
public function setYear(int $year): DistributionInterface; | |||
public function getCycleType(): ?string; | |||
} | |||
public function setCycleType(string $cycleType): DistributionInterface; | |||
} |
@@ -3,16 +3,7 @@ | |||
namespace Lc\CaracoleBundle\Model\Distribution; | |||
use Doctrine\ORM\Mapping as ORM; | |||
use Lc\CaracoleBundle\Doctrine\Extension\PayoffTrait; | |||
use Lc\CaracoleBundle\Model\Order\OrderPaymentInterface; | |||
use Lc\CaracoleBundle\Model\Order\OrderRefundInterface; | |||
use Lc\CaracoleBundle\Doctrine\Extension\PayoffInterface; | |||
use Lc\CaracoleBundle\Model\Section\SectionInterface; | |||
use Lc\CaracoleBundle\Model\User\UserMerchantInterface; | |||
use Gedmo\Mapping\Annotation as Gedmo; | |||
use Lc\SovBundle\Doctrine\EntityInterface; | |||
use Lc\SovBundle\Doctrine\Extension\BlameableNullableTrait; | |||
use Lc\SovBundle\Doctrine\Pattern\AbstractLightEntity; | |||
/** | |||
* @ORM\MappedSuperclass() | |||
@@ -36,7 +27,7 @@ abstract class DistributionModel implements DistributionInterface, EntityInterfa | |||
public function __toString() | |||
{ | |||
return $this->getCycleNumber().'/'.$this->getYear(); | |||
return $this->getCycleNumber() . '/' . $this->getYear(); | |||
} | |||
public function getCycleNumber(): ?int | |||
@@ -63,7 +54,6 @@ abstract class DistributionModel implements DistributionInterface, EntityInterfa | |||
return $this; | |||
} | |||
public function getCycleType(): ?string | |||
{ | |||
return $this->cycleType; |
@@ -2,7 +2,123 @@ | |||
namespace Lc\CaracoleBundle\Model\File; | |||
use Doctrine\Common\Collections\Collection; | |||
use Lc\CaracoleBundle\Model\Address\AddressInterface; | |||
use Lc\CaracoleBundle\Model\Merchant\MerchantInterface; | |||
use Lc\CaracoleBundle\Model\Order\OrderRefundInterface; | |||
use Lc\CaracoleBundle\Model\Order\OrderShopInterface; | |||
use Lc\SovBundle\Model\User\UserInterface; | |||
interface DocumentInterface | |||
{ | |||
public function getTitle(): ?string; | |||
public function setTitle(string $title); | |||
public function getDescription(): ?string; | |||
public function setDescription(?string $description); | |||
public function getCreatedBy(): ?UserInterface; | |||
public function setCreatedBy(?UserInterface $createdBy); | |||
public function getUpdatedBy(): ?UserInterface; | |||
public function setUpdatedBy(?UserInterface $updatedBy); | |||
public function getDevAlias(): ?string; | |||
public function setDevAlias(?string $devAlias); | |||
public function getMerchant(): ?MerchantInterface; | |||
public function setMerchant(?MerchantInterface $merchant): DocumentInterface; | |||
public function getLabel(); | |||
public function getType(): ?string; | |||
public function setType(string $type): DocumentInterface; | |||
public function getReference(): ?string; | |||
public function setReference(?string $reference): DocumentInterface; | |||
public function getLogo(): ?string; | |||
public function setLogo(string $logo): DocumentInterface; | |||
public function getMerchantAddress(): ?AddressInterface; | |||
public function setMerchantAddress(?AddressInterface $merchantAddress): DocumentInterface; | |||
public function getBuyerAddress(): ?AddressInterface; | |||
public function setBuyerAddress(?AddressInterface $buyerAddress): DocumentInterface; | |||
public function getMerchantAddressText(): ?string; | |||
public function setMerchantAddressText(string $merchantAddressText): DocumentInterface; | |||
public function getBuyerAddressText(): ?string; | |||
public function setBuyerAddressText(?string $buyerAddressText): DocumentInterface; | |||
public function getDeliveryAddressText(): ?string; | |||
public function setDeliveryAddressText(?string $deliveryAddressText): DocumentInterface; | |||
public function getIsSent(): ?bool; | |||
public function setIsSent(?bool $isSent): DocumentInterface; | |||
/** | |||
* @return Collection|OrderShopInterface[] | |||
*/ | |||
public function getOrderShops(): Collection; | |||
public function addOrderShop(OrderShopInterface $orderShop): DocumentInterface; | |||
public function removeOrderShop(OrderShopInterface $orderShop): DocumentInterface; | |||
public function getOrderRefund(): ?OrderRefundInterface; | |||
public function setOrderRefund(OrderRefundInterface $orderRefund): DocumentInterface; | |||
public function getMetaTitle(): ?string; | |||
public function setMetaTitle(?string $metaTitle); | |||
public function getMetaDescription(): ?string; | |||
public function setMetaDescription(?string $metaDescription); | |||
public function setOldUrls($oldUrls); | |||
public function getOldUrls(): ?array; | |||
public function getSlug(): ?string; | |||
public function setSlug(?string $slug); | |||
public function getPosition(): float; | |||
public function setPosition(float $position); | |||
public function clearPosition(); | |||
public function getStatus(): ?float; | |||
public function setStatus(float $status); | |||
public function getCreatedAt(): ?\DateTimeInterface; | |||
public function setCreatedAt(\DateTimeInterface $createdAt); | |||
public function getUpdatedAt(): ?\DateTimeInterface; | |||
} | |||
public function setUpdatedAt(\DateTimeInterface $updatedAt); | |||
} |
@@ -6,20 +6,16 @@ use Doctrine\Common\Collections\ArrayCollection; | |||
use Doctrine\Common\Collections\Collection; | |||
use Doctrine\ORM\Mapping as ORM; | |||
use Lc\CaracoleBundle\Doctrine\Extension\FilterMerchantInterface; | |||
use Gedmo\Mapping\Annotation as Gedmo; | |||
use Lc\CaracoleBundle\Doctrine\Extension\FilterSectionInterface; | |||
use Lc\CaracoleBundle\Model\Address\AddressInterface; | |||
use Lc\CaracoleBundle\Model\Merchant\MerchantInterface; | |||
use Lc\CaracoleBundle\Model\Order\OrderRefundInterface; | |||
use Lc\CaracoleBundle\Model\Order\OrderShopInterface; | |||
use Lc\CaracoleBundle\Model\Section\SectionInterface; | |||
use Lc\SovBundle\Doctrine\Extension\BlameableNullableTrait; | |||
use Lc\SovBundle\Doctrine\Pattern\AbstractFullEntity; | |||
/** | |||
* @ORM\MappedSuperclass() | |||
*/ | |||
abstract class DocumentModel extends AbstractFullEntity implements FilterMerchantInterface | |||
abstract class DocumentModel extends AbstractFullEntity implements FilterMerchantInterface, DocumentInterface | |||
{ | |||
const TYPE_INVOICE = 'invoice'; | |||
const TYPE_QUOTATION = 'quotation'; |
@@ -2,7 +2,117 @@ | |||
namespace Lc\CaracoleBundle\Model\Merchant; | |||
use Doctrine\Common\Collections\Collection; | |||
use Lc\CaracoleBundle\Model\Address\AddressInterface; | |||
use Lc\CaracoleBundle\Model\Config\TaxRateInterface; | |||
use Lc\CaracoleBundle\Model\PointSale\PointSaleInterface; | |||
use Lc\CaracoleBundle\Model\Section\SectionInterface; | |||
use Lc\CaracoleBundle\Model\Setting\MerchantSettingInterface; | |||
use Lc\SovBundle\Doctrine\Extension\SortableTrait; | |||
use Lc\SovBundle\Doctrine\Pattern\AbstractFullEntity; | |||
use Lc\SovBundle\Model\User\GroupUserInterface; | |||
use Lc\SovBundle\Model\User\UserInterface; | |||
interface MerchantInterface | |||
{ | |||
public function getTitle(): ?string; | |||
public function setTitle(string $title); | |||
public function getDescription(): ?string; | |||
public function setDescription(?string $description); | |||
public function getCreatedBy(): ?UserInterface; | |||
public function setCreatedBy(?UserInterface $createdBy); | |||
public function getUpdatedBy(): ?UserInterface; | |||
public function setUpdatedBy(?UserInterface $updatedBy); | |||
public function getDevAlias(): ?string; | |||
public function setDevAlias(?string $devAlias); | |||
public function getTaxRate(): ?TaxRateInterface; | |||
public function setTaxRate(?TaxRateInterface $taxRate): MerchantInterface; | |||
/** | |||
* @return Collection|PointSaleInterface[] | |||
*/ | |||
public function getPointSales(): Collection; | |||
public function addPointSale(PointSaleInterface $pointSale): MerchantInterface; | |||
public function removePointSale(PointSaleInterface $pointSale): MerchantInterface; | |||
/** | |||
* @return Collection|MerchantSettingInterface[] | |||
*/ | |||
public function getSettings(): ?Collection; | |||
public function addSetting(MerchantSettingInterface $merchantSetting | |||
): MerchantInterface; | |||
public function removeSetting(MerchantSettingInterface $merchantSetting | |||
): MerchantInterface; | |||
public function getAddress(): ?AddressInterface; | |||
public function setAddress(AddressInterface $address): MerchantInterface; | |||
/** | |||
* @return Collection|GroupUserInterface[] | |||
*/ | |||
public function getGroupUsers(): Collection; | |||
public function addGroupUser(GroupUserInterface $groupUser): MerchantInterface; | |||
public function removeGroupUser(GroupUserInterface $groupUser): MerchantInterface; | |||
/** | |||
* @return Collection|SectionInterface[] | |||
*/ | |||
public function getSections(): ?Collection; | |||
public function addSection(SectionInterface $section): MerchantInterface; | |||
public function removeSection(SectionInterface $section): MerchantInterface; | |||
public function getMetaTitle(): ?string; | |||
public function setMetaTitle(?string $metaTitle); | |||
public function getMetaDescription(): ?string; | |||
public function setMetaDescription(?string $metaDescription); | |||
public function setOldUrls($oldUrls); | |||
public function getOldUrls(): ?array; | |||
public function getSlug(): ?string; | |||
public function setSlug(?string $slug); | |||
public function getPosition(): float; | |||
public function setPosition(float $position); | |||
public function clearPosition(); | |||
public function getStatus(): ?float; | |||
public function setStatus(float $status); | |||
public function getCreatedAt(): ?\DateTimeInterface; | |||
public function setCreatedAt(\DateTimeInterface $createdAt); | |||
public function getUpdatedAt(): ?\DateTimeInterface; | |||
} | |||
public function setUpdatedAt(\DateTimeInterface $updatedAt); | |||
} |
@@ -16,7 +16,7 @@ use Lc\SovBundle\Doctrine\Pattern\AbstractFullEntity; | |||
/** | |||
* @ORM\MappedSuperclass() | |||
*/ | |||
abstract class MerchantModel extends AbstractFullEntity | |||
abstract class MerchantModel extends AbstractFullEntity implements MerchantInterface | |||
{ | |||
/** |
@@ -1,8 +1,59 @@ | |||
<?php | |||
namespace Lc\CaracoleBundle\Model\Order ; | |||
namespace Lc\CaracoleBundle\Model\Order; | |||
use Lc\SovBundle\Model\User\UserInterface; | |||
interface OrderPaymentInterface | |||
{ | |||
public function getCreatedBy(): ?UserInterface; | |||
public function setCreatedBy(?UserInterface $createdBy); | |||
public function getUpdatedBy(): ?UserInterface; | |||
public function setUpdatedBy(?UserInterface $updatedBy); | |||
public function getDevAlias(): ?string; | |||
public function setDevAlias(?string $devAlias); | |||
public function getOrderShop(): ?OrderShopInterface; | |||
public function setOrderShop(?OrderShopInterface $orderShop): OrderPaymentInterface; | |||
public function setEditable(bool $editable): OrderPaymentInterface; | |||
public function getEditable(): ?bool; | |||
public function isEditable(): ?bool; | |||
public function setMeanPayment(?string $meanPayment); | |||
public function getMeanPayment(): ?string; | |||
public function getReference(): ?string; | |||
public function setReference(?string $reference); | |||
public function getPaidAt(): ?\DateTimeInterface; | |||
public function setPaidAt(?\DateTimeInterface $paidAt); | |||
public function getAmount(): ?float; | |||
public function setAmount(float $amount); | |||
public function getComment(): ?string; | |||
public function setComment(?string $comment); | |||
public function getCreatedAt(): ?\DateTimeInterface; | |||
public function setCreatedAt(\DateTimeInterface $createdAt); | |||
public function getUpdatedAt(): ?\DateTimeInterface; | |||
} | |||
public function setUpdatedAt(\DateTimeInterface $updatedAt); | |||
} |
@@ -10,7 +10,7 @@ use Lc\SovBundle\Doctrine\Pattern\AbstractLightEntity; | |||
/** | |||
* @ORM\MappedSuperclass() | |||
*/ | |||
abstract class OrderPaymentModel extends AbstractLightEntity implements OrderPayoffInterface | |||
abstract class OrderPaymentModel extends AbstractLightEntity implements OrderPayoffInterface, OrderPaymentInterface | |||
{ | |||
use OrderPayoffTrait; | |||
@@ -2,7 +2,59 @@ | |||
namespace Lc\CaracoleBundle\Model\Order; | |||
use Lc\CaracoleBundle\Model\Config\TaxRateInterface; | |||
use Lc\CaracoleBundle\Model\Config\UnitInterface; | |||
use Lc\CaracoleBundle\Model\Product\ProductInterface; | |||
interface OrderProductInterface | |||
{ | |||
public function getOrderShop(): ?OrderShopInterface; | |||
public function setOrderShop(?OrderShopInterface $orderShop): OrderProductInterface; | |||
public function getProduct(): ?ProductInterface; | |||
public function setProduct(?ProductInterface $product): OrderProductInterface; | |||
public function getQuantityOrder(): ?int; | |||
public function setQuantityOrder(int $quantityOrder): OrderProductInterface; | |||
public function getQuantityProduct(): ?float; | |||
public function setQuantityProduct(float $quantityProduct): OrderProductInterface; | |||
public function getTitle(): ?string; | |||
public function setTitle(string $title): OrderProductInterface; | |||
public function getOrderProductReductionCatalog(): ?OrderProductReductionCatalogInterface; | |||
public function setOrderProductReductionCatalog(?OrderProductReductionCatalogInterface $orderProductReductionCatalog | |||
): OrderProductInterface; | |||
public function getPriceInherited(): ?float; | |||
public function getUnitInherited(): ?UnitInterface; | |||
public function getTaxRateInherited(): ?TaxRateInterface; | |||
public function getBuyingPriceInherited(): ?float; | |||
public function getBuyingPrice(): ?float; | |||
public function setBuyingPrice(?float $buyingPrice): OrderProductInterface; | |||
public function getPrice(): ?float; | |||
public function setPrice(?float $price): OrderProductInterface; | |||
public function getUnit(): ?UnitInterface; | |||
public function setUnit(?UnitInterface $unit): OrderProductInterface; | |||
public function getTaxRate(): ?TaxRateInterface; | |||
} | |||
public function setTaxRate(?TaxRateInterface $taxRate): OrderProductInterface; | |||
} |
@@ -11,7 +11,7 @@ use Lc\SovBundle\Doctrine\EntityInterface; | |||
/** | |||
* @ORM\MappedSuperclass() | |||
*/ | |||
abstract class OrderProductModel implements PriceInterface, EntityInterface | |||
abstract class OrderProductModel implements PriceInterface, EntityInterface, OrderProductInterface | |||
{ | |||
use PriceTrait; | |||
@@ -1,8 +1,24 @@ | |||
<?php | |||
namespace Lc\CaracoleBundle\Model\Order ; | |||
namespace Lc\CaracoleBundle\Model\Order; | |||
interface OrderProductReductionCatalogInterface | |||
{ | |||
public function getTitle(): ?string; | |||
public function setTitle(string $title): OrderProductReductionCatalogInterface; | |||
public function getValue(): ?float; | |||
public function setValue(?float $value): OrderProductReductionCatalogInterface; | |||
public function getUnit(): ?string; | |||
public function setUnit(?string $unit): OrderProductReductionCatalogInterface; | |||
public function getBehaviorTaxRate(): ?string; | |||
public function setBehaviorTaxRate(?string $behaviorTaxRate | |||
): OrderProductReductionCatalogInterface; | |||
} |
@@ -9,7 +9,7 @@ use Lc\SovBundle\Doctrine\EntityInterface; | |||
/** | |||
* @ORM\MappedSuperclass() | |||
*/ | |||
abstract class OrderProductReductionCatalogModel implements EntityInterface | |||
abstract class OrderProductReductionCatalogModel implements EntityInterface, OrderProductReductionCatalogInterface | |||
{ | |||
use ReductionTrait; | |||
@@ -2,6 +2,25 @@ | |||
namespace Lc\CaracoleBundle\Model\Order; | |||
interface OrderProductRefundInterface | |||
{ | |||
} | |||
public function getQuantityRefund(): ?int; | |||
public function setQuantityOrder(int $quantityRefund): OrderProductRefundInterface; | |||
public function getPrice(): ?float; | |||
public function setPrice(?float $price): OrderProductRefundInterface; | |||
public function getTitleInherited(): ?string; | |||
public function getTitle(): ?string; | |||
public function setTitle(string $title): OrderProductRefundInterface; | |||
public function getOrderProduct(): ?OrderProductInterface; | |||
public function setOrderProduct(OrderProductInterface $orderProduct | |||
): OrderProductRefundInterface; | |||
} |
@@ -9,7 +9,7 @@ use Lc\SovBundle\Doctrine\EntityInterface; | |||
/** | |||
* @ORM\MappedSuperclass() | |||
*/ | |||
abstract class OrderProductRefundModel implements EntityInterface | |||
abstract class OrderProductRefundModel implements EntityInterface, OrderProductRefundInterface | |||
{ | |||
/** | |||
* @ORM\Column(type="integer") |
@@ -2,7 +2,51 @@ | |||
namespace Lc\CaracoleBundle\Model\Order; | |||
use Lc\CaracoleBundle\Model\Reduction\ReductionCartInterface; | |||
interface OrderReductionCartInterface | |||
{ | |||
public function getTitle(): ?string; | |||
public function setTitle(string $title): OrderReductionCartInterface; | |||
public function getOrderShop(): ?OrderShopInterface; | |||
public function setOrderShop(?OrderShopInterface $orderShop | |||
): OrderReductionCartInterface; | |||
public function getReductionCart(): ?ReductionCartInterface; | |||
public function setReductionCart(?ReductionCartInterface $reductionCart | |||
): OrderReductionCartInterface; | |||
public function getCodeUsed(): ?string; | |||
public function setCodeUsed(?string $codeUsed): OrderReductionCartInterface; | |||
public function getFreeShipping(): ?bool; | |||
public function setFreeShipping(?bool $freeShipping): OrderReductionCartInterface; | |||
public function getAppliedTo(): ?string; | |||
public function setAppliedTo(string $appliedTo): OrderReductionCartInterface; | |||
public function getType(): ?string; | |||
public function setType(string $type): OrderReductionCartInterface; | |||
public function getValue(): ?float; | |||
public function setValue(?float $value): OrderReductionCartInterface; | |||
public function getUnit(): ?string; | |||
public function setUnit(?string $unit): OrderReductionCartInterface; | |||
public function getBehaviorTaxRate(): ?string; | |||
} | |||
public function setBehaviorTaxRate(?string $behaviorTaxRate | |||
): OrderReductionCartInterface; | |||
} |
@@ -13,7 +13,7 @@ use Lc\SovBundle\Doctrine\EntityInterface; | |||
/** | |||
* @ORM\MappedSuperclass() | |||
*/ | |||
abstract class OrderReductionCartModel implements EntityInterface, ReductionInterface, ReductionCartPropertyInterface | |||
abstract class OrderReductionCartModel implements EntityInterface, ReductionInterface, ReductionCartPropertyInterface, OrderReductionCartInterface | |||
{ | |||
use ReductionTrait; | |||
use ReductionCartPropertyTrait; |
@@ -2,7 +2,39 @@ | |||
namespace Lc\CaracoleBundle\Model\Order; | |||
use Lc\CaracoleBundle\Model\Reduction\ReductionCreditInterface; | |||
interface OrderReductionCreditInterface | |||
{ | |||
public function getTitle(): ?string; | |||
public function setTitle(string $title): OrderReductionCreditInterface; | |||
public function getOrderShop(): ?OrderShopInterface; | |||
public function setOrderShop(?OrderShopInterface $orderShop | |||
): OrderReductionCreditInterface; | |||
public function getReductionCredit(): ?ReductionCreditInterface; | |||
public function setReductionCredit(?ReductionCreditInterface $reductionCredit | |||
): OrderReductionCreditInterface; | |||
public function getType(): ?string; | |||
public function setType(string $type): OrderReductionCreditInterface; | |||
public function getValue(): ?float; | |||
public function setValue(?float $value): OrderReductionCreditInterface; | |||
public function getUnit(): ?string; | |||
public function setUnit(?string $unit): OrderReductionCreditInterface; | |||
public function getBehaviorTaxRate(): ?string; | |||
} | |||
public function setBehaviorTaxRate(?string $behaviorTaxRate | |||
): OrderReductionCreditInterface; | |||
} |
@@ -11,7 +11,7 @@ use Lc\SovBundle\Doctrine\EntityInterface; | |||
/** | |||
* @ORM\MappedSuperclass() | |||
*/ | |||
abstract class OrderReductionCreditModel implements ReductionInterface, EntityInterface | |||
abstract class OrderReductionCreditModel implements ReductionInterface, EntityInterface, OrderReductionCreditInterface | |||
{ | |||
use ReductionTrait; | |||
@@ -2,6 +2,68 @@ | |||
namespace Lc\CaracoleBundle\Model\Order; | |||
use Lc\CaracoleBundle\Model\File\DocumentInterface; | |||
use Lc\SovBundle\Model\User\UserInterface; | |||
interface OrderRefundInterface | |||
{ | |||
} | |||
public function getCreatedBy(): ?UserInterface; | |||
public function setCreatedBy(?UserInterface $createdBy); | |||
public function getUpdatedBy(): ?UserInterface; | |||
public function setUpdatedBy(?UserInterface $updatedBy); | |||
public function getDevAlias(): ?string; | |||
public function setDevAlias(?string $devAlias); | |||
public function getOrderShop(): ?OrderShopInterface; | |||
public function setOrderShop(?OrderShopInterface $orderShop): OrderRefundInterface; | |||
public function setEditable(bool $editable): OrderRefundInterface; | |||
public function getEditable(): ?bool; | |||
public function isEditable(): ?bool; | |||
public function getDeliveryRefundAmount(): ?float; | |||
public function setDeliveryRefundAmount(?float $deliveryRefundAmount | |||
): OrderRefundInterface; | |||
public function getDocument(): ?DocumentInterface; | |||
public function setDocument(DocumentInterface $document): OrderRefundInterface; | |||
public function setMeanPayment(?string $meanPayment); | |||
public function getMeanPayment(): ?string; | |||
public function getReference(): ?string; | |||
public function setReference(?string $reference); | |||
public function getPaidAt(): ?\DateTimeInterface; | |||
public function setPaidAt(?\DateTimeInterface $paidAt); | |||
public function getAmount(): ?float; | |||
public function setAmount(float $amount); | |||
public function getComment(): ?string; | |||
public function setComment(?string $comment); | |||
public function getCreatedAt(): ?\DateTimeInterface; | |||
public function setCreatedAt(\DateTimeInterface $createdAt); | |||
public function getUpdatedAt(): ?\DateTimeInterface; | |||
public function setUpdatedAt(\DateTimeInterface $updatedAt); | |||
} |
@@ -11,7 +11,7 @@ use Lc\SovBundle\Doctrine\Pattern\AbstractLightEntity; | |||
/** | |||
* @ORM\MappedSuperclass() | |||
*/ | |||
abstract class OrderRefundModel extends AbstractLightEntity implements OrderPayoffInterface | |||
abstract class OrderRefundModel extends AbstractLightEntity implements OrderPayoffInterface, OrderRefundInterface | |||
{ | |||
use OrderPayoffTrait; | |||
@@ -18,27 +18,27 @@ interface OrderShopInterface | |||
public function getValidationDate(): ?\DateTimeInterface; | |||
public function setValidationDate(\DateTimeInterface $validationDate | |||
): OrderShopModel; | |||
): OrderShopInterface; | |||
public function getUser(): ?UserInterface; | |||
public function setUser(?UserInterface $user): OrderShopModel; | |||
public function setUser(?UserInterface $user): OrderShopInterface; | |||
public function getInvoiceAddress(): ?AddressInterface; | |||
public function setInvoiceAddress(?AddressInterface $invoiceAddress): OrderShopModel; | |||
public function setInvoiceAddress(?AddressInterface $invoiceAddress): OrderShopInterface; | |||
public function getInvoiceAddressText(): ?string; | |||
public function setInvoiceAddressText(string $invoiceAddressText): OrderShopModel; | |||
public function setInvoiceAddressText(string $invoiceAddressText): OrderShopInterface; | |||
public function getComment(): ?string; | |||
public function setComment(?string $comment): OrderShopModel; | |||
public function setComment(?string $comment): OrderShopInterface; | |||
public function getMeanPayment(): ?string; | |||
public function setMeanPayment(string $meanPayment): OrderShopModel; | |||
public function setMeanPayment(string $meanPayment): OrderShopInterface; | |||
/** | |||
* @return Collection|OrderStatusHistoryInterface[] | |||
@@ -46,43 +46,43 @@ interface OrderShopInterface | |||
public function getOrderStatusHistories(): Collection; | |||
public function addOrderStatusHistory(OrderStatusHistoryInterface $orderStatusHistory | |||
): OrderShopModel; | |||
): OrderShopInterface; | |||
public function removeOrderStatusHistory(OrderStatusHistoryInterface $orderStatusHistory | |||
): OrderShopModel; | |||
): OrderShopInterface; | |||
/** | |||
* @return Collection|OrderPaymentInterface[] | |||
*/ | |||
public function getOrderPayments($meanPayment = null): Collection; | |||
public function addOrderPayment(OrderPaymentInterface $orderPayment): OrderShopModel; | |||
public function addOrderPayment(OrderPaymentInterface $orderPayment): OrderShopInterface; | |||
public function removeOrderPayment(OrderPaymentInterface $orderPayment | |||
): OrderShopModel; | |||
): OrderShopInterface; | |||
/** | |||
* @return Collection|OrderProductInterface[] | |||
*/ | |||
public function getOrderProducts(): Collection; | |||
public function addOrderProduct(OrderProductInterface $orderProduct): OrderShopModel; | |||
public function addOrderProduct(OrderProductInterface $orderProduct): OrderShopInterface; | |||
public function removeOrderProduct(OrderProductInterface $orderProduct | |||
): OrderShopModel; | |||
): OrderShopInterface; | |||
public function getVisitor(): ?VisitorInterface; | |||
public function setVisitor(?VisitorInterface $visitor): OrderShopModel; | |||
public function setVisitor(?VisitorInterface $visitor): OrderShopInterface; | |||
public function getDeliveryInfos(): ?string; | |||
public function setDeliveryInfos(?string $deliveryInfos): OrderShopModel; | |||
public function setDeliveryInfos(?string $deliveryInfos): OrderShopInterface; | |||
public function getOrderStatus(): ?OrderStatusInterface; | |||
public function setOrderStatusProtected(?OrderStatusInterface $orderStatus | |||
): OrderShopModel; | |||
): OrderShopInterface; | |||
/** | |||
* @return Collection|OrderReductionCartInterface[] | |||
@@ -90,10 +90,10 @@ interface OrderShopInterface | |||
public function getOrderReductionCarts(): Collection; | |||
public function addOrderReductionCart(OrderReductionCartInterface $orderReductionCart | |||
): OrderShopModel; | |||
): OrderShopInterface; | |||
public function removeOrderReductionCart(OrderReductionCartInterface $orderReductionCart | |||
): OrderShopModel; | |||
): OrderShopInterface; | |||
/** | |||
* @return Collection|OrderReductionCreditInterface[] | |||
@@ -101,80 +101,80 @@ interface OrderShopInterface | |||
public function getOrderReductionCredits(): Collection; | |||
public function addOrderReductionCredit(OrderReductionCreditInterface $orderReductionCredit | |||
): OrderShopModel; | |||
): OrderShopInterface; | |||
public function removeOrderReductionCredit(OrderReductionCreditInterface $orderReductionCredit | |||
): OrderShopModel; | |||
): OrderShopInterface; | |||
/** | |||
* @return Collection|DocumentInterface[] | |||
*/ | |||
public function getDocuments(): Collection; | |||
public function addDocument(DocumentInterface $document): OrderShopModel; | |||
public function addDocument(DocumentInterface $document): OrderShopInterface; | |||
public function removeDocument(DocumentInterface $document): OrderShopModel; | |||
public function removeDocument(DocumentInterface $document): OrderShopInterface; | |||
/** | |||
* @return Collection|TicketInterface[] | |||
*/ | |||
public function getTickets(): Collection; | |||
public function addTicket(TicketInterface $ticket): OrderShopModel; | |||
public function addTicket(TicketInterface $ticket): OrderShopInterface; | |||
public function removeTicket(TicketInterface $ticket): OrderShopModel; | |||
public function removeTicket(TicketInterface $ticket): OrderShopInterface; | |||
public function getSection(): ?SectionInterface; | |||
public function setSection(?SectionInterface $section): OrderShopModel; | |||
public function setSection(?SectionInterface $section): OrderShopInterface; | |||
public function getCycleId(): ?int; | |||
public function setCycleId(?int $cycleId): OrderShopModel; | |||
public function setCycleId(?int $cycleId): OrderShopInterface; | |||
public function getOrderShopCreatedAt(): ?\DateTimeInterface; | |||
public function setOrderShopCreatedAt(?\DateTimeInterface $orderShopCreatedAt | |||
): OrderShopModel; | |||
): OrderShopInterface; | |||
public function getIdValidOrder(): ?int; | |||
public function setIdValidOrder(?int $idValidOrder): OrderShopModel; | |||
public function setIdValidOrder(?int $idValidOrder): OrderShopInterface; | |||
public function getDeliveryAddress(): ?AddressInterface; | |||
public function setDeliveryAddress(?AddressInterface $deliveryAddress | |||
): OrderShopModel; | |||
): OrderShopInterface; | |||
public function getDeliveryAddressText(): ?string; | |||
public function setDeliveryAddressText(string $deliveryAddressText): OrderShopModel; | |||
public function setDeliveryAddressText(string $deliveryAddressText): OrderShopInterface; | |||
public function getDeliveryPointSale(): ?PointSaleInterface; | |||
public function setDeliveryPointSale(?PointSaleInterface $deliveryPointSale | |||
): OrderShopModel; | |||
): OrderShopInterface; | |||
public function getDeliveryType(): ?string; | |||
public function setDeliveryType(?string $deliveryType): OrderShopModel; | |||
public function setDeliveryType(?string $deliveryType): OrderShopInterface; | |||
public function getDeliveryPrice(): ?float; | |||
public function setDeliveryPrice(?float $deliveryPrice): OrderShopModel; | |||
public function setDeliveryPrice(?float $deliveryPrice): OrderShopInterface; | |||
public function getDeliveryTaxRate(): ?TaxRateInterface; | |||
public function setDeliveryTaxRate(?TaxRateInterface $deliveryTaxRate | |||
): OrderShopModel; | |||
): OrderShopInterface; | |||
public function getReference(): ?string; | |||
public function setReference(?string $reference): OrderShopModel; | |||
public function setReference(?string $reference): OrderShopInterface; | |||
public function getMainOrderShop(): ?self; | |||
public function setMainOrderShop(?OrderShopModel $mainOrderShop): OrderShopModel; | |||
public function setMainOrderShop(?OrderShopModel $mainOrderShop): OrderShopInterface; | |||
/** | |||
* @return Collection|OrderShopInterface[] | |||
@@ -182,54 +182,54 @@ interface OrderShopInterface | |||
public function getComplementaryOrderShops(): Collection; | |||
public function addComplementaryOrderShop(OrderShopModel $complementaryOrderShop | |||
): OrderShopModel; | |||
): OrderShopInterface; | |||
public function removeComplementaryOrderShop(OrderShopModel $complementaryOrderShop | |||
): OrderShopModel; | |||
): OrderShopInterface; | |||
public function getDeclineComplementaryOrderShop(): ?bool; | |||
public function setDeclineComplementaryOrderShop(?bool $declineComplementaryOrderShop | |||
): OrderShopModel; | |||
): OrderShopInterface; | |||
public function getOrderAllowByAdmin(): ?bool; | |||
public function setOrderAllowByAdmin(?bool $orderAllowByAdmin): OrderShopModel; | |||
public function setOrderAllowByAdmin(?bool $orderAllowByAdmin): OrderShopInterface; | |||
public function getHasReach(): ?int; | |||
public function setHasReach(?int $hasReach): OrderShopModel; | |||
public function setHasReach(?int $hasReach): OrderShopInterface; | |||
public function getStatTotal(): ?float; | |||
public function setStatTotal(?float $statTotal): OrderShopModel; | |||
public function setStatTotal(?float $statTotal): OrderShopInterface; | |||
public function getStatTotalWithTax(): ?float; | |||
public function setStatTotalWithTax(?float $statTotalWithTax): OrderShopModel; | |||
public function setStatTotalWithTax(?float $statTotalWithTax): OrderShopInterface; | |||
public function getStatTotalOrderProductsWithReductions(): ?float; | |||
public function setStatTotalOrderProductsWithReductions(?float $statTotalOrderProductsWithReductions | |||
): OrderShopModel; | |||
): OrderShopInterface; | |||
public function getStatTotalOrderProductsWithTaxAndReductions(): ?float; | |||
public function setStatTotalOrderProductsWithTaxAndReductions(?float $statTotalOrderProductsWithTaxAndReductions | |||
): OrderShopModel; | |||
): OrderShopInterface; | |||
public function getStatMarginOrderProductsWithReductions(): ?float; | |||
public function setStatMarginOrderProductsWithReductions(?float $statMarginOrderProductsWithReductions | |||
): OrderShopModel; | |||
): OrderShopInterface; | |||
public function getStatDeliveryPriceWithReduction(): ?float; | |||
public function setStatDeliveryPriceWithReduction(?float $statDeliveryPriceWithReduction | |||
): OrderShopModel; | |||
): OrderShopInterface; | |||
public function getStatDeliveryPriceWithTaxAndReduction(): ?float; | |||
public function setStatDeliveryPriceWithTaxAndReduction(?float $statDeliveryPriceWithTaxAndReduction | |||
): OrderShopModel; | |||
): OrderShopInterface; | |||
} |
@@ -2,7 +2,42 @@ | |||
namespace Lc\CaracoleBundle\Model\Order; | |||
use Lc\SovBundle\Model\User\UserInterface; | |||
interface OrderStatusHistoryInterface | |||
{ | |||
public function getCreatedBy(): ?UserInterface; | |||
public function setCreatedBy(?UserInterface $createdBy); | |||
public function getUpdatedBy(): ?UserInterface; | |||
public function setUpdatedBy(?UserInterface $updatedBy); | |||
public function getDevAlias(): ?string; | |||
public function setDevAlias(?string $devAlias); | |||
public function getOrderShop(): ?OrderShopInterface; | |||
public function setOrderShop(?OrderShopInterface $orderShop | |||
): OrderStatusHistoryInterface; | |||
public function getOrderStatus(): ?OrderStatusInterface; | |||
public function setOrderStatus(?OrderStatusInterface $orderStatus | |||
): OrderStatusHistoryInterface; | |||
public function getOrigin(): ?string; | |||
public function setOrigin(string $origin): OrderStatusHistoryInterface; | |||
public function getCreatedAt(): ?\DateTimeInterface; | |||
public function setCreatedAt(\DateTimeInterface $createdAt); | |||
public function getUpdatedAt(): ?\DateTimeInterface; | |||
} | |||
public function setUpdatedAt(\DateTimeInterface $updatedAt); | |||
} |
@@ -3,15 +3,13 @@ | |||
namespace Lc\CaracoleBundle\Model\Order; | |||
use Doctrine\ORM\Mapping as ORM; | |||
use Gedmo\Mapping\Annotation as Gedmo; | |||
use Lc\SovBundle\Doctrine\Extension\BlameableNullableTrait; | |||
use Lc\SovBundle\Doctrine\Pattern\AbstractLightEntity; | |||
/** | |||
* @ORM\MappedSuperclass() | |||
*/ | |||
abstract class OrderStatusHistoryModel extends AbstractLightEntity | |||
abstract class OrderStatusHistoryModel extends AbstractLightEntity implements OrderStatusHistoryInterface | |||
{ | |||
@@ -2,7 +2,30 @@ | |||
namespace Lc\CaracoleBundle\Model\Order; | |||
use Doctrine\Common\Collections\Collection; | |||
interface OrderStatusInterface | |||
{ | |||
public function getTitle(): ?string; | |||
public function setTitle(string $title): OrderStatusInterface; | |||
public function getDescription(): ?string; | |||
public function setDescription(?string $description): OrderStatusInterface; | |||
public function getNextStatusAllowed(): Collection; | |||
public function addNextStatusAllowed(OrderStatusInterface $nextStatusAllowed): OrderStatusInterface; | |||
public function removeNextStatusAllowed(OrderStatusInterface $nextStatusAllowed): OrderStatusInterface; | |||
public function getAlias(): ?string; | |||
public function setAlias(string $alias): OrderStatusInterface; | |||
public function getColor(): ?string; | |||
} | |||
public function setColor(?string $color): OrderStatusInterface; | |||
} |
@@ -10,7 +10,7 @@ use Lc\SovBundle\Doctrine\EntityInterface; | |||
/** | |||
* @ORM\MappedSuperclass() | |||
*/ | |||
abstract class OrderStatusModel implements EntityInterface | |||
abstract class OrderStatusModel implements EntityInterface, OrderStatusInterface | |||
{ | |||
const ALIAS_CART = 'cart'; | |||
const ALIAS_CART_CANCELED = 'cart-canceled'; | |||
@@ -116,7 +116,7 @@ abstract class OrderStatusModel implements EntityInterface | |||
return $this->nextStatusAllowed; | |||
} | |||
public function addNextStatusAllowed(self $nextStatusAllowed): self | |||
public function addNextStatusAllowed(OrderStatusInterface $nextStatusAllowed): self | |||
{ | |||
if (!$this->nextStatusAllowed->contains($nextStatusAllowed)) { | |||
$this->nextStatusAllowed[] = $nextStatusAllowed; | |||
@@ -125,7 +125,7 @@ abstract class OrderStatusModel implements EntityInterface | |||
return $this; | |||
} | |||
public function removeNextStatusAllowed(self $nextStatusAllowed): self | |||
public function removeNextStatusAllowed(OrderStatusInterface $nextStatusAllowed): self | |||
{ | |||
if ($this->nextStatusAllowed->contains($nextStatusAllowed)) { | |||
$this->nextStatusAllowed->removeElement($nextStatusAllowed); |
@@ -2,7 +2,118 @@ | |||
namespace Lc\CaracoleBundle\Model\PointSale; | |||
use App\Entity\File\File; | |||
use Doctrine\Common\Collections\Collection; | |||
use Lc\CaracoleBundle\Model\Address\AddressInterface; | |||
use Lc\CaracoleBundle\Model\Merchant\MerchantInterface; | |||
use Lc\CaracoleBundle\Model\User\UserPointSaleInterface; | |||
use Lc\SovBundle\Model\User\UserInterface; | |||
interface PointSaleInterface | |||
{ | |||
public function getTitle(): ?string; | |||
public function setTitle(string $title); | |||
public function getDescription(): ?string; | |||
public function setDescription(?string $description); | |||
public function getCreatedBy(): ?UserInterface; | |||
public function setCreatedBy(?UserInterface $createdBy); | |||
public function getUpdatedBy(): ?UserInterface; | |||
public function setUpdatedBy(?UserInterface $updatedBy); | |||
public function getDevAlias(): ?string; | |||
public function setDevAlias(?string $devAlias); | |||
public function getOrderAmountMin(): ?float; | |||
public function setOrderAmountMin(float $orderAmountMin): PointSaleInterface; | |||
/** | |||
* @return Collection|MerchantInterface[] | |||
*/ | |||
public function getMerchants(): Collection; | |||
public function addMerchant(MerchantInterface $merchant): PointSaleInterface; | |||
public function removeMerchant(MerchantInterface $merchant): PointSaleInterface; | |||
public function getCode(): ?string; | |||
public function setCode(?string $code): PointSaleInterface; | |||
public function getDeliveryPrice(): ?float; | |||
public function setDeliveryPrice(float $deliveryPrice): PointSaleInterface; | |||
public function getIsPublic(): ?bool; | |||
public function setIsPublic(bool $isPublic): PointSaleInterface; | |||
public function getAddress(): ?AddressInterface; | |||
public function setAddress(AddressInterface $address): PointSaleInterface; | |||
/** | |||
* @return Collection|UserPointSaleInterface[] | |||
*/ | |||
public function getUserPointSales(): Collection; | |||
public function addUserPointSale(UserPointSaleInterface $userPointSale | |||
): PointSaleInterface; | |||
public function removeUserPointSale(UserPointSaleInterface $userPointSale | |||
): PointSaleInterface; | |||
public function getImage(): ?File; | |||
public function setImage(?File $image): PointSaleInterface; | |||
public function getMetaTitle(): ?string; | |||
public function setMetaTitle(?string $metaTitle); | |||
public function getMetaDescription(): ?string; | |||
public function setMetaDescription(?string $metaDescription); | |||
public function setOldUrls($oldUrls); | |||
public function getOldUrls(): ?array; | |||
public function getSlug(): ?string; | |||
public function setSlug(?string $slug); | |||
/** | |||
* @return float | |||
*/ | |||
public function getPosition(): float; | |||
/** | |||
* @param float $position | |||
* @return $this | |||
*/ | |||
public function setPosition(float $position); | |||
public function clearPosition(); | |||
public function getStatus(): ?float; | |||
public function setStatus(float $status); | |||
public function getCreatedAt(): ?\DateTimeInterface; | |||
public function setCreatedAt(\DateTimeInterface $createdAt); | |||
public function getUpdatedAt(): ?\DateTimeInterface; | |||
} | |||
public function setUpdatedAt(\DateTimeInterface $updatedAt); | |||
} |
@@ -18,7 +18,7 @@ use App\Entity\File\File; | |||
* @ORM\MappedSuperclass() | |||
*/ | |||
abstract class PointSaleModel extends AbstractFullEntity implements FilterMultipleMerchantsInterface, | |||
OrderAmountMinInterface | |||
OrderAmountMinInterface, PointSaleInterface | |||
{ | |||
use OrderAmountMinTrait; |
@@ -5,28 +5,46 @@ namespace Lc\CaracoleBundle\Model\Product; | |||
use Doctrine\Common\Collections\Collection; | |||
use Lc\CaracoleBundle\Model\Section\SectionInterface; | |||
use Lc\SovBundle\Model\File\FileInterface; | |||
use Lc\SovBundle\Model\User\UserInterface; | |||
interface ProductCategoryInterface | |||
{ | |||
public function getSection(): ?SectionInterface; | |||
public function getTitle(): ?string; | |||
public function setTitle(string $title); | |||
public function getDescription(): ?string; | |||
public function setDescription(?string $description); | |||
public function getCreatedBy(): ?UserInterface; | |||
public function setCreatedBy(?UserInterface $createdBy); | |||
public function getUpdatedBy(): ?UserInterface; | |||
public function setUpdatedBy(?UserInterface $updatedBy); | |||
public function setSection(SectionInterface $section): ProductCategoryModel; | |||
public function getDevAlias(): ?string; | |||
public function getParent(): ?self; | |||
public function setDevAlias(?string $devAlias); | |||
public function setParent(?ProductCategoryModel $productCategory): ProductCategoryModel; | |||
public function getSection(): SectionInterface; | |||
public function setSection(SectionInterface $section): ProductCategoryInterface; | |||
public function getParent(): ?ProductCategoryInterface; | |||
public function setParent(?ProductCategoryInterface $productCategory): ProductCategoryInterface; | |||
public function getParentCategory(); | |||
/** | |||
* @return Collection|self[] | |||
*/ | |||
public function getChildrens(): Collection; | |||
public function addChildren(ProductCategoryModel $productCategory): ProductCategoryModel; | |||
public function addChildren(ProductCategoryInterface $productCategory): ProductCategoryInterface; | |||
public function removeChildren(ProductCategoryModel $productCategory): ProductCategoryModel; | |||
public function removeChildren(ProductCategoryInterface $productCategory): ProductCategoryInterface; | |||
/** | |||
* @return Collection|ProductFamilyInterface[] | |||
@@ -34,14 +52,52 @@ interface ProductCategoryInterface | |||
public function getProductFamilies(): Collection; | |||
public function addProductFamily(ProductFamilyInterface $productFamily | |||
): ProductCategoryModel; | |||
): ProductCategoryInterface; | |||
public function removeProductFamily(ProductFamilyInterface $productFamily | |||
): ProductCategoryModel; | |||
): ProductCategoryInterface; | |||
public function countProductFamilies($status = null); | |||
public function getSaleStatus(): ?bool; | |||
public function setSaleStatus(bool $saleStatus): ProductCategoryModel; | |||
public function setSaleStatus(bool $saleStatus): ProductCategoryInterface; | |||
public function getImage(): ?FileInterface; | |||
public function setImage(?FileInterface $image): ProductCategoryInterface; | |||
public function getMetaTitle(): ?string; | |||
public function setMetaTitle(?string $metaTitle); | |||
public function getMetaDescription(): ?string; | |||
public function setMetaDescription(?string $metaDescription); | |||
public function setOldUrls($oldUrls); | |||
public function getOldUrls(): ?array; | |||
public function getSlug(): ?string; | |||
public function setSlug(?string $slug); | |||
public function getPosition(): float; | |||
public function setPosition(float $position); | |||
public function clearPosition(); | |||
public function getStatus(): ?float; | |||
public function setStatus(float $status); | |||
public function getCreatedAt(): ?\DateTimeInterface; | |||
public function setCreatedAt(\DateTimeInterface $createdAt); | |||
public function getUpdatedAt(): ?\DateTimeInterface; | |||
public function setUpdatedAt(\DateTimeInterface $updatedAt); | |||
} |
@@ -81,7 +81,7 @@ abstract class ProductCategoryModel extends AbstractFullEntity implements TreeIn | |||
return $this->parent; | |||
} | |||
public function setParent(?self $productCategory): self | |||
public function setParent(?ProductCategoryInterface $productCategory): self | |||
{ | |||
$this->parent = $productCategory; | |||
@@ -113,7 +113,7 @@ abstract class ProductCategoryModel extends AbstractFullEntity implements TreeIn | |||
return new ArrayCollection(iterator_to_array($iterator)); | |||
} | |||
public function addChildren(self $productCategory): self | |||
public function addChildren(ProductCategoryInterface $productCategory): self | |||
{ | |||
if (!$this->childrens->contains($productCategory)) { | |||
$this->childrens[] = $productCategory; | |||
@@ -123,7 +123,7 @@ abstract class ProductCategoryModel extends AbstractFullEntity implements TreeIn | |||
return $this; | |||
} | |||
public function removeChildren(self $productCategory): self | |||
public function removeChildren(ProductCategoryInterface $productCategory): self | |||
{ | |||
if ($this->childrens->contains($productCategory)) { | |||
$this->childrens->removeElement($productCategory); |
@@ -2,7 +2,314 @@ | |||
namespace Lc\CaracoleBundle\Model\Product; | |||
use Doctrine\Common\Collections\Collection; | |||
use Lc\CaracoleBundle\Model\Config\TaxRateInterface; | |||
use Lc\CaracoleBundle\Model\Config\UnitInterface; | |||
use Lc\CaracoleBundle\Model\Reduction\ReductionCatalogInterface; | |||
use Lc\SovBundle\Model\File\FileInterface; | |||
use Lc\SovBundle\Model\User\UserInterface; | |||
interface ProductFamilyInterface | |||
{ | |||
public function getTitle(): ?string; | |||
public function setTitle(string $title); | |||
public function getDescription(): ?string; | |||
public function setDescription(?string $description); | |||
public function getCreatedBy(): ?UserInterface; | |||
public function setCreatedBy(?UserInterface $createdBy); | |||
public function getUpdatedBy(): ?UserInterface; | |||
public function setUpdatedBy(?UserInterface $updatedBy); | |||
public function getDevAlias(): ?string; | |||
public function setDevAlias(?string $devAlias); | |||
public function getPriceInherited(): ?float; | |||
public function getUnitInherited(): ?UnitInterface; | |||
public function getTaxRateInherited(): ?TaxRateInterface; | |||
public function getBuyingPriceInherited(): ?float; | |||
public function getBuyingPrice(): ?float; | |||
public function setBuyingPrice(?float $buyingPrice): ProductFamilyInterface; | |||
public function getPrice(): ?float; | |||
public function setPrice(?float $price): ProductFamilyInterface; | |||
public function getUnit(): ?UnitInterface; | |||
public function setUnit(?UnitInterface $unit): ProductFamilyInterface; | |||
public function getTaxRate(): ?TaxRateInterface; | |||
public function setTaxRate(?TaxRateInterface $taxRate): ProductFamilyInterface; | |||
public function getActiveProducts(): ?bool; | |||
public function setActiveProducts(bool $activeProducts): ProductFamilyInterface; | |||
public function getProductsQuantityAsTitle(): ?bool; | |||
public function setProductsQuantityAsTitle(bool $productsQuantityAsTitle | |||
): ProductFamilyInterface; | |||
public function getProductsType(): ?string; | |||
public function setProductsType(?string $productsType): ProductFamilyInterface; | |||
public function getQuantityLabel(): ?string; | |||
public function setQuantityLabel(?string $quantityLabel): ProductFamilyInterface; | |||
/** | |||
* @return Collection|ProductInterface[] | |||
*/ | |||
public function getProducts(): Collection; | |||
public function addProduct(ProductInterface $product): ProductFamilyInterface; | |||
public function removeProduct(ProductInterface $product): ProductFamilyInterface; | |||
public function getReductionCatalog(): ?ReductionCatalogInterface; | |||
public function setReductionCatalog(?ReductionCatalogInterface $reductionCatalog | |||
): ProductFamilyInterface; | |||
/** | |||
* @return Collection|ProductCategoryInterface[] | |||
*/ | |||
public function getProductCategories(): Collection; | |||
public function initProductCategories(); | |||
public function addProductCategory(ProductCategoryInterface $productCategory | |||
): ProductFamilyInterface; | |||
public function removeProductCategory(ProductCategoryInterface $productCategory | |||
): ProductFamilyInterface; | |||
public function getSubtitle(): ?string; | |||
public function setSubtitle(?string $subtitle): ProductFamilyInterface; | |||
public function getWarningMessage(): ?string; | |||
public function setWarningMessage(?string $warningMessage): ProductFamilyInterface; | |||
public function getWarningMessageType(): ?string; | |||
public function setWarningMessageType(?string $warningMessageType | |||
): ProductFamilyInterface; | |||
public function getNote(): ?string; | |||
public function setNote(?string $note): ProductFamilyInterface; | |||
public function getBehaviorOutOfStock(): ?string; | |||
public function setBehaviorOutOfStock(?string $behaviorOutOfStock | |||
): ProductFamilyInterface; | |||
public function getBehaviorCountStock(): ?string; | |||
public function setBehaviorCountStock(string $behaviorCountStock | |||
): ProductFamilyInterface; | |||
public function getExportTitle(): ?string; | |||
public function setExportTitle(?string $exportTitle): ProductFamilyInterface; | |||
public function getExportNote(): ?string; | |||
public function setExportNote(?string $exportNote): ProductFamilyInterface; | |||
public function getBehaviorStockCycle(): ?string; | |||
public function setBehaviorStockCycle(string $behaviorStockCycle | |||
): ProductFamilyInterface; | |||
public function getBehaviorDisplaySale(): ?string; | |||
public function setBehaviorDisplaySale(string $behaviorDisplaySale | |||
): ProductFamilyInterface; | |||
public function getPropertyNoveltyExpirationDate(): ?\DateTimeInterface; | |||
public function setPropertyNoveltyExpirationDate(?\DateTimeInterface $propertyNoveltyExpirationDate | |||
): ProductFamilyInterface; | |||
public function getPropertyOrganicLabel(): ?string; | |||
public function setPropertyOrganicLabel(?string $propertyOrganicLabel | |||
): ProductFamilyInterface; | |||
public function getPropertyAllergens(): ?string; | |||
public function setPropertyAllergens(?string $propertyAllergens | |||
): ProductFamilyInterface; | |||
public function getPropertyComposition(): ?string; | |||
public function setPropertyComposition(?string $propertyComposition | |||
): ProductFamilyInterface; | |||
public function getPropertyFragrances(): ?string; | |||
public function setPropertyFragrances(?string $propertyFragrances | |||
): ProductFamilyInterface; | |||
public function getBehaviorExpirationDate(): ?string; | |||
public function setBehaviorExpirationDate(?string $behaviorExpirationDate | |||
): ProductFamilyInterface; | |||
public function getTypeExpirationDate(): ?string; | |||
public function setTypeExpirationDate(?string $typeExpirationDate | |||
): ProductFamilyInterface; | |||
public function getPropertyWeight(): ?string; | |||
public function setPropertyWeight(?string $propertyWeight): ProductFamilyInterface; | |||
public function getPropertyQuantity(): ?string; | |||
public function setPropertyQuantity(?string $propertyQuantity): ProductFamilyInterface; | |||
public function getPropertyVariety(): ?string; | |||
public function setPropertyVariety(?string $propertyVariety): ProductFamilyInterface; | |||
public function getPropertyFeature(): ?string; | |||
public function setPropertyFeature(?string $propertyFeature): ProductFamilyInterface; | |||
public function getPropertyAlcoholLevel(): ?string; | |||
public function setPropertyAlcoholLevel(?string $propertyAlcoholLevel | |||
): ProductFamilyInterface; | |||
public function getPropertyPackaging(): ?string; | |||
public function setPropertyPackaging(?string $propertyPackaging | |||
): ProductFamilyInterface; | |||
public function getPropertyCharacteristics(): ?string; | |||
public function setPropertyCharacteristics(?string $propertyCharacteristics | |||
): ProductFamilyInterface; | |||
public function getBehaviorAddToCart(): ?string; | |||
public function setBehaviorAddToCart(?string $behaviorAddToCart | |||
): ProductFamilyInterface; | |||
public function getBehaviorPrice(): ?string; | |||
public function setBehaviorPrice(?string $behaviorPrice): ProductFamilyInterface; | |||
public function getSaleStatus(): ?bool; | |||
public function setSaleStatus(bool $saleStatus): ProductFamilyInterface; | |||
public function getImage(): ?FileInterface; | |||
public function setImage(?FileInterface $image): ProductFamilyInterface; | |||
/** | |||
* @return Collection|ProductFamilySectionPropertyInterface[] | |||
*/ | |||
public function getProductFamilySectionProperties(): Collection; | |||
public function addProductFamilySectionProperty(ProductFamilySectionPropertyInterface $productFamilySectionProperty | |||
): ProductFamilyInterface; | |||
public function removeProductFamilySectionProperty( | |||
ProductFamilySectionPropertyInterface $productFamilySectionProperty | |||
): ProductFamilyInterface; | |||
/** | |||
* @return Collection|QualityLabelInterface[] | |||
*/ | |||
public function getQualityLabels(): Collection; | |||
public function addQualityLabel(QualityLabelInterface $qualityLabel | |||
): ProductFamilyInterface; | |||
public function removeQualityLabel(QualityLabelInterface $qualityLabel | |||
): ProductFamilyInterface; | |||
public function getBuyingPriceByRefUnit(): ?float; | |||
public function setBuyingPriceByRefUnit(?float $buyingPriceByRefUnit | |||
): ProductFamilyInterface; | |||
public function getPriceByRefUnit(): ?float; | |||
public function setPriceByRefUnit(?float $priceByRefUnit): ProductFamilyInterface; | |||
public function getQuantity(): ?float; | |||
public function setQuantity(?float $quantity): ProductFamilyInterface; | |||
public function getAvailableQuantity(): ?float; | |||
public function setAvailableQuantity(?float $availableQuantity | |||
): ProductFamilyInterface; | |||
public function getAvailableQuantityDefault(): ?float; | |||
public function setAvailableQuantityDefault(?float $availableQuantityDefault | |||
): ProductFamilyInterface; | |||
public function getPropertyExpirationDate(): ?string; | |||
public function setPropertyExpirationDate(?string $propertyExpirationDate | |||
): ProductFamilyInterface; | |||
public function getMetaTitle(): ?string; | |||
public function setMetaTitle(?string $metaTitle); | |||
public function getMetaDescription(): ?string; | |||
public function setMetaDescription(?string $metaDescription); | |||
public function setOldUrls($oldUrls); | |||
public function getOldUrls(): ?array; | |||
public function getSlug(): ?string; | |||
public function setSlug(?string $slug); | |||
public function getPosition(): float; | |||
public function setPosition(float $position); | |||
public function clearPosition(); | |||
public function getStatus(): ?float; | |||
public function setStatus(float $status); | |||
public function getCreatedAt(): ?\DateTimeInterface; | |||
public function setCreatedAt(\DateTimeInterface $createdAt); | |||
public function getUpdatedAt(): ?\DateTimeInterface; | |||
public function setUpdatedAt(\DateTimeInterface $updatedAt); | |||
} |
@@ -2,7 +2,21 @@ | |||
namespace Lc\CaracoleBundle\Model\Product; | |||
use App\Entity\Product\ProductFamily; | |||
use App\Entity\Section\Section; | |||
interface ProductFamilySectionPropertyInterface | |||
{ | |||
public function getSection(): ?Section; | |||
public function setSection(?Section $section): ProductFamilySectionPropertyInterface; | |||
public function getProductFamily(): ?ProductFamily; | |||
public function setProductFamily(?ProductFamily $productFamily): ProductFamilySectionPropertyInterface; | |||
public function getStatus(): ?float; | |||
} | |||
public function setStatus(float $status): ProductFamilySectionPropertyInterface; | |||
} |
@@ -3,29 +3,111 @@ | |||
namespace Lc\CaracoleBundle\Model\Product; | |||
use Lc\CaracoleBundle\Model\Order\OrderShopInterface; | |||
use Lc\CaracoleBundle\Model\Config\TaxRateInterface; | |||
use Lc\CaracoleBundle\Model\Config\UnitInterface; | |||
use Lc\SovBundle\Model\User\UserInterface; | |||
interface ProductInterface | |||
{ | |||
public function getCreatedBy(): ?UserInterface; | |||
public function setCreatedBy(?UserInterface $createdBy); | |||
public function getUpdatedBy(): ?UserInterface; | |||
public function setUpdatedBy(?UserInterface $updatedBy); | |||
public function getDevAlias(): ?string; | |||
public function setDevAlias(?string $devAlias); | |||
public function getPriceInherited(): ?float; | |||
public function getUnitInherited(): ?UnitInterface; | |||
public function getTaxRateInherited(): ?TaxRateInterface; | |||
public function getBuyingPriceInherited(): ?float; | |||
public function getBuyingPrice(): ?float; | |||
public function setBuyingPrice(?float $buyingPrice): ProductInterface; | |||
public function getPrice(): ?float; | |||
public function setPrice(?float $price): ProductInterface; | |||
public function getUnit(): ?UnitInterface; | |||
public function setUnit(?UnitInterface $unit): ProductInterface; | |||
public function getTaxRate(): ?TaxRateInterface; | |||
public function setTaxRate(?TaxRateInterface $taxRate): ProductInterface; | |||
public function getProductFamily(): ?ProductFamilyInterface; | |||
public function setProductFamily(?ProductFamilyInterface $productFamily | |||
): \Lc\CaracoleBundle\Model\Product\ProductModel; | |||
): ProductInterface; | |||
public function getTitle(): ?string; | |||
public function setTitle(?string $title): \Lc\CaracoleBundle\Model\Product\ProductModel; | |||
public function setTitle(?string $title): ProductInterface; | |||
public function getOriginProduct(): ?bool; | |||
public function setOriginProduct(?bool $originProduct): \Lc\CaracoleBundle\Model\Product\ProductModel; | |||
public function setOriginProduct(?bool $originProduct): ProductInterface; | |||
public function getExportTitle(): ?string; | |||
public function setExportTitle(?string $exportTitle): \Lc\CaracoleBundle\Model\Product\ProductModel; | |||
public function setExportTitle(?string $exportTitle): ProductInterface; | |||
public function getExportNote(): ?string; | |||
public function setExportNote(?string $exportNote): \Lc\CaracoleBundle\Model\Product\ProductModel; | |||
public function setExportNote(?string $exportNote): ProductInterface; | |||
public function getBuyingPriceByRefUnit(): ?float; | |||
public function setBuyingPriceByRefUnit(?float $buyingPriceByRefUnit | |||
): ProductInterface; | |||
public function getPriceByRefUnit(): ?float; | |||
public function setPriceByRefUnit(?float $priceByRefUnit): ProductInterface; | |||
public function getQuantity(): ?float; | |||
public function setQuantity(?float $quantity): ProductInterface; | |||
public function getAvailableQuantity(): ?float; | |||
public function setAvailableQuantity(?float $availableQuantity): ProductInterface; | |||
public function getAvailableQuantityDefault(): ?float; | |||
public function setAvailableQuantityDefault(?float $availableQuantityDefault | |||
): ProductInterface; | |||
public function getPropertyExpirationDate(): ?string; | |||
public function setPropertyExpirationDate(?string $propertyExpirationDate | |||
): ProductInterface; | |||
public function getPosition(): float; | |||
public function setPosition(float $position); | |||
public function clearPosition(); | |||
public function getStatus(): ?float; | |||
public function setStatus(float $status); | |||
public function getCreatedAt(): ?\DateTimeInterface; | |||
public function setCreatedAt(\DateTimeInterface $createdAt); | |||
public function getUpdatedAt(): ?\DateTimeInterface; | |||
public function setUpdatedAt(\DateTimeInterface $updatedAt); | |||
} |
@@ -2,7 +2,67 @@ | |||
namespace Lc\CaracoleBundle\Model\Product; | |||
use Lc\SovBundle\Model\File\FileInterface; | |||
use Lc\SovBundle\Model\User\UserInterface; | |||
interface QualityLabelInterface | |||
{ | |||
public function getTitle(): ?string; | |||
public function setTitle(string $title); | |||
public function getDescription(): ?string; | |||
public function setDescription(?string $description); | |||
public function getCreatedBy(): ?UserInterface; | |||
public function setCreatedBy(?UserInterface $createdBy); | |||
public function getUpdatedBy(): ?UserInterface; | |||
public function setUpdatedBy(?UserInterface $updatedBy); | |||
public function getDevAlias(): ?string; | |||
public function setDevAlias(?string $devAlias); | |||
public function getImage(): ?FileInterface; | |||
public function setImage(?FileInterface $image): QualityLabelInterface; | |||
public function getMetaTitle(): ?string; | |||
public function setMetaTitle(?string $metaTitle); | |||
public function getMetaDescription(): ?string; | |||
public function setMetaDescription(?string $metaDescription); | |||
public function setOldUrls($oldUrls); | |||
public function getOldUrls(): ?array; | |||
public function getSlug(): ?string; | |||
public function setSlug(?string $slug); | |||
public function getPosition(): float; | |||
public function setPosition(float $position); | |||
public function clearPosition(); | |||
public function getStatus(): ?float; | |||
public function setStatus(float $status); | |||
public function getCreatedAt(): ?\DateTimeInterface; | |||
public function setCreatedAt(\DateTimeInterface $createdAt); | |||
public function getUpdatedAt(): ?\DateTimeInterface; | |||
public function setUpdatedAt(\DateTimeInterface $updatedAt); | |||
} |
@@ -2,10 +2,142 @@ | |||
namespace Lc\CaracoleBundle\Model\Reduction; | |||
use Doctrine\Common\Collections\Collection; | |||
use Lc\CaracoleBundle\Model\PointSale; | |||
use Lc\CaracoleBundle\Model\Merchant\MerchantInterface; | |||
use Lc\CaracoleBundle\Model\PointSale\PointSaleInterface; | |||
use Lc\SovBundle\Model\User\GroupUserInterface; | |||
use Lc\SovBundle\Model\User\UserInterface; | |||
interface ReductionCartInterface | |||
{ | |||
public function getCreatedBy(): ?UserInterface; | |||
public function setCreatedBy(?UserInterface $createdBy); | |||
public function getUpdatedBy(): ?UserInterface; | |||
public function setUpdatedBy(?UserInterface $updatedBy); | |||
public function getDevAlias(): ?string; | |||
public function setDevAlias(?string $devAlias); | |||
public function getOrderAmountMin(): ?float; | |||
public function setOrderAmountMin(float $orderAmountMin): ReductionCartInterface; | |||
public function getTitle(): ?string; | |||
public function setTitle(string $title); | |||
public function getMerchant(): MerchantInterface; | |||
public function setMerchant(MerchantInterface $merchant): ReductionCartInterface; | |||
public function getCodes(): ?array; | |||
public function setCodes(?array $codes): ReductionCartInterface; | |||
/** | |||
* @return Collection|PointSaleInterface[] | |||
*/ | |||
public function getPointSales(): Collection; | |||
public function addPointSale(PointSaleInterface $pointSale): ReductionCartInterface; | |||
public function removePointSale(PointSaleInterface $pointSale | |||
): ReductionCartInterface; | |||
public function getAvailableQuantity(): ?int; | |||
public function setAvailableQuantity(int $availableQuantity): ReductionCartInterface; | |||
public function getAvailableQuantityPerUser(): ?int; | |||
public function setAvailableQuantityPerUser(int $availableQuantityPerUser | |||
): ReductionCartInterface; | |||
public function getUncombinables(): Collection; | |||
public function addUncombinable(ReductionCartInterface $uncombinable): ReductionCartInterface; | |||
public function removeUncombinables(ReductionCartInterface $uncombinable): ReductionCartInterface; | |||
public function getUncombinableTypes(): ?array; | |||
public function setUncombinableTypes(?array $uncombinableTypes | |||
): ReductionCartInterface; | |||
public function getAvailableQuantityPerCode(): ?int; | |||
public function setAvailableQuantityPerCode(int $availableQuantityPerCode | |||
): ReductionCartInterface; | |||
public function getFreeShipping(): ?bool; | |||
public function setFreeShipping(?bool $freeShipping): ReductionCartInterface; | |||
public function getAppliedTo(): ?string; | |||
public function setAppliedTo(string $appliedTo): ReductionCartInterface; | |||
public function getType(): ?string; | |||
public function setType(string $type): ReductionCartInterface; | |||
/** | |||
* @return Collection|UserInterface[] | |||
*/ | |||
public function getUsers(): Collection; | |||
public function addUser(UserInterface $user): ReductionCartInterface; | |||
public function removeUser(UserInterface $user): ReductionCartInterface; | |||
/** | |||
* @return Collection|GroupUserInterface[] | |||
*/ | |||
public function getGroupUsers(): Collection; | |||
public function addGroupUser(GroupUserInterface $groupUser): ReductionCartInterface; | |||
public function removeGroupUser(GroupUserInterface $groupUser | |||
): ReductionCartInterface; | |||
public function getDateStart(): ?\DateTimeInterface; | |||
public function setDateStart(?\DateTimeInterface $dateStart): ReductionCartInterface; | |||
public function getDateEnd(): ?\DateTimeInterface; | |||
public function setDateEnd(?\DateTimeInterface $dateEnd): ReductionCartInterface; | |||
public function getPermanent(): ?bool; | |||
public function setPermanent(bool $permanent): ReductionCartInterface; | |||
public function getValue(): ?float; | |||
public function setValue(?float $value): ReductionCartInterface; | |||
public function getUnit(): ?string; | |||
public function setUnit(?string $unit): ReductionCartInterface; | |||
public function getBehaviorTaxRate(): ?string; | |||
public function setBehaviorTaxRate(?string $behaviorTaxRate): ReductionCartInterface; | |||
public function getStatus(): ?float; | |||
public function setStatus(float $status); | |||
public function getCreatedAt(): ?\DateTimeInterface; | |||
public function setCreatedAt(\DateTimeInterface $createdAt); | |||
public function getUpdatedAt(): ?\DateTimeInterface; | |||
} | |||
public function setUpdatedAt(\DateTimeInterface $updatedAt); | |||
} |
@@ -27,7 +27,7 @@ abstract class ReductionCartModel extends AbstractLightEntity implements Reducti | |||
ReductionCartPropertyInterface, | |||
FilterMerchantInterface, | |||
OrderAmountMinInterface, | |||
StatusInterface | |||
StatusInterface, ReductionCartInterface | |||
{ | |||
use StatusTrait; | |||
use OrderAmountMinTrait; | |||
@@ -192,7 +192,7 @@ abstract class ReductionCartModel extends AbstractLightEntity implements Reducti | |||
return $this->uncombinables; | |||
} | |||
public function addUncombinable(self $uncombinable): self | |||
public function addUncombinable(ReductionCartInterface $uncombinable): self | |||
{ | |||
if (!$this->uncombinables->contains($uncombinable)) { | |||
$this->uncombinables[] = $uncombinable; | |||
@@ -201,7 +201,7 @@ abstract class ReductionCartModel extends AbstractLightEntity implements Reducti | |||
return $this; | |||
} | |||
public function removeUncombinables(self $uncombinable): self | |||
public function removeUncombinables(ReductionCartInterface $uncombinable): self | |||
{ | |||
if ($this->uncombinables->contains($uncombinable)) { | |||
$this->uncombinables->removeElement($uncombinable); |
@@ -2,6 +2,120 @@ | |||
namespace Lc\CaracoleBundle\Model\Reduction; | |||
use Doctrine\Common\Collections\Collection; | |||
use Lc\CaracoleBundle\Model\Merchant\MerchantInterface; | |||
use Lc\CaracoleBundle\Model\Product\ProductCategoryInterface; | |||
use Lc\CaracoleBundle\Model\Product\ProductFamilyInterface; | |||
use Lc\SovBundle\Model\User\GroupUserInterface; | |||
use Lc\SovBundle\Model\User\UserInterface; | |||
interface ReductionCatalogInterface | |||
{ | |||
} | |||
public function getCreatedBy(): ?UserInterface; | |||
public function setCreatedBy(?UserInterface $createdBy); | |||
public function getUpdatedBy(): ?UserInterface; | |||
public function setUpdatedBy(?UserInterface $updatedBy); | |||
public function getDevAlias(): ?string; | |||
public function setDevAlias(?string $devAlias); | |||
public function getTitle(): ?string; | |||
public function setTitle(string $title): ReductionCatalogInterface; | |||
public function getMerchant(): MerchantInterface; | |||
public function setMerchant(MerchantInterface $merchant): ReductionCatalogInterface; | |||
/** | |||
* @return Collection|ProductFamilyInterface[] | |||
*/ | |||
public function getProductFamilies(): Collection; | |||
public function addProductFamily(ProductFamilyInterface $productFamily | |||
): ReductionCatalogInterface; | |||
public function removeProductFamily(ProductFamilyInterface $productFamily | |||
): ReductionCatalogInterface; | |||
public function getProductFamily(): ?ProductFamilyInterface; | |||
public function setProductFamily(?ProductFamilyInterface $productFamily | |||
): ReductionCatalogInterface; | |||
/** | |||
* @return Collection|ProductCategoryInterface[] | |||
*/ | |||
public function getProductCategories(): Collection; | |||
public function addProductCategory(ProductCategoryInterface $productCategory | |||
): ReductionCatalogInterface; | |||
public function removeProductCategory(ProductCategoryInterface $productCategory | |||
): ReductionCatalogInterface; | |||
/** | |||
* @return Collection|UserInterface[] | |||
*/ | |||
public function getUsers(): Collection; | |||
public function addUser(UserInterface $user): ReductionCatalogInterface; | |||
public function removeUser(UserInterface $user): ReductionCatalogInterface; | |||
/** | |||
* @return Collection|GroupUserInterface[] | |||
*/ | |||
public function getGroupUsers(): Collection; | |||
public function addGroupUser(GroupUserInterface $groupUser | |||
): ReductionCatalogInterface; | |||
public function removeGroupUser(GroupUserInterface $groupUser | |||
): ReductionCatalogInterface; | |||
public function getDateStart(): ?\DateTimeInterface; | |||
public function setDateStart(?\DateTimeInterface $dateStart | |||
): ReductionCatalogInterface; | |||
public function getDateEnd(): ?\DateTimeInterface; | |||
public function setDateEnd(?\DateTimeInterface $dateEnd): ReductionCatalogInterface; | |||
public function getPermanent(): ?bool; | |||
public function setPermanent(bool $permanent): ReductionCatalogInterface; | |||
public function getValue(): ?float; | |||
public function setValue(?float $value): ReductionCatalogInterface; | |||
public function getUnit(): ?string; | |||
public function setUnit(?string $unit): ReductionCatalogInterface; | |||
public function getBehaviorTaxRate(): ?string; | |||
public function setBehaviorTaxRate(?string $behaviorTaxRate | |||
): ReductionCatalogInterface; | |||
public function getStatus(): ?float; | |||
public function setStatus(float $status); | |||
public function getCreatedAt(): ?\DateTimeInterface; | |||
public function setCreatedAt(\DateTimeInterface $createdAt | |||
); | |||
public function getUpdatedAt(): ?\DateTimeInterface; | |||
public function setUpdatedAt(\DateTimeInterface $updatedAt | |||
); | |||
} |
@@ -2,6 +2,91 @@ | |||
namespace Lc\CaracoleBundle\Model\Reduction; | |||
use Doctrine\Common\Collections\Collection; | |||
use Lc\CaracoleBundle\Model\Merchant\MerchantInterface; | |||
use Lc\SovBundle\Model\User\UserInterface; | |||
interface ReductionCreditInterface | |||
{ | |||
} | |||
public function getCreatedBy(): ?UserInterface; | |||
public function setCreatedBy(?UserInterface $createdBy); | |||
public function getUpdatedBy(): ?UserInterface; | |||
public function setUpdatedBy(?UserInterface $updatedBy); | |||
public function getDevAlias(): ?string; | |||
public function setDevAlias(?string $devAlias); | |||
public function getTitle(): ?string; | |||
public function setTitle(string $title): ReductionCreditInterface; | |||
public function getMerchant(): MerchantInterface; | |||
public function setMerchant(MerchantInterface $merchant): ReductionCreditInterface; | |||
public function getType(): ?string; | |||
public function setType(string $type): ReductionCreditInterface; | |||
/** | |||
* @return Collection|UserInterface[] | |||
*/ | |||
public function getUsers(): Collection; | |||
public function addUser(UserInterface $user): ReductionCreditInterface; | |||
public function removeUser(UserInterface $user): ReductionCreditInterface; | |||
public function getSended(): ?bool; | |||
public function setSended(?bool $sended): ReductionCreditInterface; | |||
public function getOwner(): ?UserInterface; | |||
public function setOwner(?UserInterface $owner): ReductionCreditInterface; | |||
public function getActivationDate(): ?\DateTimeInterface; | |||
public function setActivationDate(?\DateTimeInterface $activationDate | |||
): ReductionCreditInterface; | |||
public function getOwnerName(): ?string; | |||
public function setOwnerName(?string $ownerName): ReductionCreditInterface; | |||
public function getOwnerMessage(): ?string; | |||
public function setOwnerMessage(?string $ownerMessage): ReductionCreditInterface; | |||
public function getValue(): ?float; | |||
public function setValue(?float $value): ReductionCreditInterface; | |||
public function getUnit(): ?string; | |||
public function setUnit(?string $unit): ReductionCreditInterface; | |||
public function getBehaviorTaxRate(): ?string; | |||
public function setBehaviorTaxRate(?string $behaviorTaxRate | |||
): ReductionCreditInterface; | |||
public function getStatus(): ?float; | |||
public function setStatus(float $status): ReductionCreditInterface; | |||
public function getCreatedAt(): ?\DateTimeInterface; | |||
public function setCreatedAt(\DateTimeInterface $createdAt | |||
); | |||
public function getUpdatedAt(): ?\DateTimeInterface; | |||
public function setUpdatedAt(\DateTimeInterface $updatedAt | |||
); | |||
} |
@@ -20,7 +20,7 @@ use Lc\SovBundle\Model\User\UserInterface; | |||
*/ | |||
abstract class ReductionCreditModel extends AbstractLightEntity implements ReductionInterface, | |||
FilterMerchantInterface, | |||
StatusInterface | |||
StatusInterface, ReductionCreditInterface | |||
{ | |||
const TYPE_CREDIT = 'credit'; | |||
const TYPE_GIFT = 'gift'; |
@@ -2,7 +2,28 @@ | |||
namespace Lc\CaracoleBundle\Model\Section; | |||
use Lc\SovBundle\Model\User\GroupUserInterface; | |||
interface OpeningInterface | |||
{ | |||
public function getDay(): ?int; | |||
public function setDay(int $day): OpeningInterface; | |||
public function getTimeStart(): ?\DateTimeInterface; | |||
public function setTimeStart(?\DateTimeInterface $timeStart): OpeningInterface; | |||
public function getTimeEnd(): ?\DateTimeInterface; | |||
public function setTimeEnd(?\DateTimeInterface $timeEnd): OpeningInterface; | |||
public function getSection(): ?SectionInterface; | |||
public function setSection(?SectionInterface $section): OpeningInterface; | |||
public function getGroupUser(): ?GroupUserInterface; | |||
} | |||
public function setGroupUser(?GroupUserInterface $groupUser): OpeningInterface; | |||
} |
@@ -2,7 +2,165 @@ | |||
namespace Lc\CaracoleBundle\Model\Section; | |||
use Doctrine\Common\Collections\Collection; | |||
use Lc\CaracoleBundle\Model\Merchant\MerchantInterface; | |||
use Lc\CaracoleBundle\Model\Order\OrderShopInterface; | |||
use Lc\CaracoleBundle\Model\Product\ProductCategoryInterface; | |||
use Lc\CaracoleBundle\Model\Product\ProductFamilySectionPropertyInterface; | |||
use Lc\CaracoleBundle\Model\Setting\SectionSettingInterface; | |||
use Lc\SovBundle\Model\Newsletter\NewsletterInterface; | |||
use Lc\SovBundle\Model\Site\NewsInterface; | |||
use Lc\SovBundle\Model\Site\PageInterface; | |||
use Lc\SovBundle\Model\User\UserInterface; | |||
interface SectionInterface | |||
{ | |||
public function getTitle(): ?string; | |||
public function setTitle(string $title); | |||
public function getDescription(): ?string; | |||
public function setDescription(?string $description); | |||
public function getCreatedBy(): ?UserInterface; | |||
public function setCreatedBy(?UserInterface $createdBy); | |||
public function getUpdatedBy(): ?UserInterface; | |||
public function setUpdatedBy(?UserInterface $updatedBy); | |||
public function getDevAlias(): ?string; | |||
public function setDevAlias(?string $devAlias); | |||
public function getMerchant(): ?MerchantInterface; | |||
public function setMerchant(?MerchantInterface $merchant): SectionInterface; | |||
public function getColor(): ?string; | |||
public function setColor(string $color): SectionInterface; | |||
public function getCycleType(): ?string; | |||
public function setCycleType(string $cycleType): SectionInterface; | |||
/** | |||
* @return Collection|OrderShopInterface[] | |||
*/ | |||
public function getOrderShops(): Collection; | |||
public function addOrderShop(OrderShopInterface $orderShop): SectionInterface; | |||
public function removeOrderShop(OrderShopInterface $orderShop): SectionInterface; | |||
/** | |||
* @return Collection|ProductCategoryInterface[] | |||
*/ | |||
public function getProductCategories(): Collection; | |||
public function addProductCategory(ProductCategoryInterface $productCategory | |||
): SectionInterface; | |||
public function removeProductCategory(ProductCategoryInterface $productCategory | |||
): SectionInterface; | |||
/** | |||
* @return Collection|PageInterface[] | |||
*/ | |||
public function getPages(): Collection; | |||
public function addPage(PageInterface $page): SectionInterface; | |||
public function removePage(PageInterface $page): SectionInterface; | |||
/** | |||
* @return Collection|NewsInterface[] | |||
*/ | |||
public function getNews(): Collection; | |||
public function addNews(NewsInterface $news): SectionInterface; | |||
public function removeNews(NewsInterface $news): SectionInterface; | |||
/** | |||
* @return Collection|NewsletterInterface[] | |||
*/ | |||
public function getNewsletters(): Collection; | |||
public function addNewsletter(NewsletterInterface $newsletter): SectionInterface; | |||
public function removeNewsletter(NewsletterInterface $newsletter): SectionInterface; | |||
public function getIsDefault(): ?bool; | |||
public function setIsDefault(?bool $isDefault): SectionInterface; | |||
/** | |||
* @return Collection|SectionSettingInterface[] | |||
*/ | |||
public function getSettings(): Collection; | |||
public function addSetting(SectionSettingInterface $sectionSetting): SectionInterface; | |||
public function removeSetting(SectionSettingInterface $sectionSetting | |||
): SectionInterface; | |||
/** | |||
* @return Collection|OpeningInterface[] | |||
*/ | |||
public function getOpenings(): Collection; | |||
public function addOpening(OpeningInterface $opening): SectionInterface; | |||
public function removeOpening(OpeningInterface $opening): SectionInterface; | |||
/** | |||
* @return Collection|ProductFamilySectionPropertyInterface[] | |||
*/ | |||
public function getProductFamilySectionProperties(): Collection; | |||
public function addProductFamilySectionProperty(ProductFamilySectionPropertyInterface $productFamilySectionProperty | |||
): SectionInterface; | |||
public function removeProductFamilySectionProperty( | |||
ProductFamilySectionPropertyInterface $productFamilySectionProperty | |||
): SectionInterface; | |||
public function getMetaTitle(): ?string; | |||
public function setMetaTitle(?string $metaTitle); | |||
public function getMetaDescription(): ?string; | |||
public function setMetaDescription(?string $metaDescription); | |||
public function setOldUrls($oldUrls); | |||
public function getOldUrls(): ?array; | |||
public function getSlug(): ?string; | |||
public function setSlug(?string $slug); | |||
public function getPosition(): float; | |||
public function setPosition(float $position); | |||
public function clearPosition(); | |||
public function getStatus(): ?float; | |||
public function setStatus(float $status); | |||
public function getCreatedAt(): ?\DateTimeInterface; | |||
public function setCreatedAt(\DateTimeInterface $createdAt); | |||
public function getUpdatedAt(): ?\DateTimeInterface; | |||
} | |||
public function setUpdatedAt(\DateTimeInterface $updatedAt); | |||
} |
@@ -20,7 +20,7 @@ use Lc\SovBundle\Doctrine\Pattern\AbstractFullEntity; | |||
/** | |||
* @ORM\MappedSuperclass() | |||
*/ | |||
abstract class SectionModel extends AbstractFullEntity implements FilterMerchantInterface | |||
abstract class SectionModel extends AbstractFullEntity implements FilterMerchantInterface, SectionInterface | |||
{ | |||
const DEVALIAS_COMMON = 'common'; | |||
@@ -2,7 +2,29 @@ | |||
namespace Lc\CaracoleBundle\Model\Setting; | |||
use Lc\CaracoleBundle\Model\Merchant\MerchantInterface; | |||
use Lc\SovBundle\Model\File\FileInterface; | |||
use Lc\SovBundle\Model\Setting\SettingModel; | |||
interface MerchantSettingInterface | |||
{ | |||
public function getMerchant(): MerchantInterface; | |||
public function setMerchant(MerchantInterface $merchant): MerchantSettingInterface; | |||
public function getName(): ?string; | |||
public function setName(?string $name); | |||
public function getText(): ?string; | |||
public function setText($text); | |||
public function getDate(): ?\DateTimeInterface; | |||
public function setDate(?\DateTimeInterface $date); | |||
public function getFile(): ?FileInterface; | |||
public function setFile(?FileInterface $file); | |||
} |
@@ -8,7 +8,7 @@ use Doctrine\ORM\Mapping as ORM; | |||
use Lc\SovBundle\Doctrine\EntityInterface; | |||
use Lc\SovBundle\Model\Setting\SettingModel as SovSettingModel; | |||
abstract class MerchantSettingModel extends SovSettingModel implements EntityInterface, FilterMerchantInterface | |||
abstract class MerchantSettingModel extends SovSettingModel implements EntityInterface, FilterMerchantInterface, MerchantSettingInterface | |||
{ | |||
/** | |||
* @ORM\ManyToOne(targetEntity="Lc\CaracoleBundle\Model\Merchant\MerchantInterface", inversedBy="settings") |
@@ -2,7 +2,29 @@ | |||
namespace Lc\CaracoleBundle\Model\Setting; | |||
use Lc\CaracoleBundle\Model\Section\SectionInterface; | |||
use Lc\SovBundle\Model\File\FileInterface; | |||
use Lc\SovBundle\Model\Setting\SettingModel; | |||
interface SectionSettingInterface | |||
{ | |||
public function getSection(): ?SectionInterface; | |||
public function setSection(?SectionInterface $section): SectionSettingInterface; | |||
public function getName(): ?string; | |||
public function setName(?string $name); | |||
public function getText(): ?string; | |||
public function setText($text); | |||
public function getDate(): ?\DateTimeInterface; | |||
public function setDate(?\DateTimeInterface $date); | |||
public function getFile(): ?FileInterface; | |||
public function setFile(?FileInterface $file); | |||
} |
@@ -7,7 +7,7 @@ use Doctrine\ORM\Mapping as ORM; | |||
use Lc\SovBundle\Doctrine\EntityInterface; | |||
use Lc\SovBundle\Model\Setting\SettingModel as SovSettingModel; | |||
abstract class SectionSettingModel extends SovSettingModel implements EntityInterface | |||
abstract class SectionSettingModel extends SovSettingModel implements EntityInterface, SectionSettingInterface | |||
{ | |||
/** | |||
* @ORM\ManyToOne(targetEntity="Lc\CaracoleBundle\Model\Section\SectionInterface", inversedBy="settings") |
@@ -2,7 +2,55 @@ | |||
namespace Lc\CaracoleBundle\Model\User; | |||
use Doctrine\Common\Collections\Collection; | |||
use Lc\CaracoleBundle\Model\Credit\CreditHistoryInterface; | |||
use Lc\CaracoleBundle\Model\Merchant\MerchantInterface; | |||
use Lc\CaracoleBundle\Model\Section\SectionInterface; | |||
interface UserMerchantInterface | |||
{ | |||
public function getUser(): ?UserModel; | |||
public function setUser(?UserModel $user): UserMerchantInterface; | |||
public function getMerchant(): ?MerchantInterface; | |||
public function setMerchant(?MerchantInterface $merchant): UserMerchantInterface; | |||
public function getCurrentAdminSection(): ?SectionInterface; | |||
public function setCurrentAdminSection(?SectionInterface $currentAdminSection | |||
): UserMerchantInterface; | |||
public function getCredit(): ?float; | |||
public function setCredit(?float $credit): UserMerchantInterface; | |||
public function getCreditActive(): ?bool; | |||
public function isCreditActive(): bool; | |||
public function setCreditActive(bool $creditActive): UserMerchantInterface; | |||
/** | |||
* @return Collection|CreditHistoryInterface[] | |||
*/ | |||
public function getCreditHistories(): Collection; | |||
public function addCreditHistory(CreditHistoryInterface $creditHistory | |||
): UserMerchantInterface; | |||
public function removeCreditHistory(CreditHistoryInterface $creditHistory | |||
): UserMerchantInterface; | |||
public function getActive(): ?bool; | |||
public function setActive(bool $active): UserMerchantInterface; | |||
public function getRoles(): array; | |||
public function setRoles(array $roles): UserMerchantInterface; | |||
} | |||
public function hasRole($role); | |||
} |
@@ -15,7 +15,7 @@ use Lc\SovBundle\Doctrine\EntityInterface; | |||
* @ORM\MappedSuperclass() | |||
* | |||
*/ | |||
abstract class UserMerchantModel implements FilterMerchantInterface, EntityInterface | |||
abstract class UserMerchantModel implements FilterMerchantInterface, EntityInterface, UserMerchantInterface | |||
{ | |||
/** | |||
* @ORM\ManyToOne(targetEntity="Lc\SovBundle\Model\User\UserInterface", inversedBy="userMerchants") |
@@ -2,7 +2,21 @@ | |||
namespace Lc\CaracoleBundle\Model\User; | |||
use Lc\CaracoleBundle\Model\PointSale\PointSaleInterface; | |||
use Lc\SovBundle\Model\User\UserInterface; | |||
interface UserPointSaleInterface | |||
{ | |||
public function getUser(): ?UserInterface; | |||
public function setUser(?UserInterface $user): UserPointSaleInterface; | |||
public function getPointSale(): ?PointSaleInterface; | |||
public function setPointSale(?PointSaleInterface $pointSale): UserPointSaleInterface; | |||
public function getComment(): ?string; | |||
} | |||
public function setComment(?string $comment): UserPointSaleInterface; | |||
} |
@@ -9,7 +9,7 @@ use Lc\SovBundle\Model\User\UserInterface; | |||
/** | |||
* @ORM\MappedSuperclass | |||
*/ | |||
abstract class UserPointSaleModel | |||
abstract class UserPointSaleModel implements UserPointSaleInterface | |||
{ | |||
/** | |||
* @ORM\ManyToOne(targetEntity="Lc\SovBundle\Model\User\UserInterface", inversedBy="userPointSales") |
@@ -2,7 +2,36 @@ | |||
namespace Lc\CaracoleBundle\Model\User; | |||
use Doctrine\Common\Collections\Collection; | |||
use Lc\CaracoleBundle\Model\Order\OrderShopInterface; | |||
interface VisitorInterface | |||
{ | |||
public function getSummary(); | |||
public function getCookie(): ?string; | |||
public function setCookie(?string $cookie): VisitorInterface; | |||
public function getLastAccess(): ?\DateTimeInterface; | |||
public function setLastAccess(\DateTimeInterface $lastAccess): VisitorInterface; | |||
public function getIp(): ?string; | |||
public function setIp(?string $ip): VisitorInterface; | |||
public function getTotalVisit(): ?int; | |||
public function setTotalVisit(int $totalVisit): VisitorInterface; | |||
/** | |||
* @return Collection|OrderShopInterface[] | |||
*/ | |||
public function getOrders(): Collection; | |||
public function addOrder(OrderShopInterface $order): VisitorInterface; | |||
} | |||
public function removeOrder(OrderShopInterface $order): VisitorInterface; | |||
} |
@@ -11,7 +11,7 @@ use Lc\SovBundle\Doctrine\EntityInterface; | |||
/** | |||
* @ORM\MappedSuperclass() | |||
*/ | |||
abstract class VisitorModel implements EntityInterface | |||
abstract class VisitorModel implements EntityInterface, VisitorInterface | |||
{ | |||
/** | |||
* @ORM\Column(type="string", length=255) |