|
- <?php
-
- namespace Lc\CaracoleBundle\Model\Reduction;
-
- use Doctrine\Common\Collections\ArrayCollection;
- use Doctrine\Common\Collections\Collection;
- use Doctrine\ORM\Mapping as ORM;
- use Lc\CaracoleBundle\Doctrine\Extension\FilterMerchantInterface;
- use Lc\CaracoleBundle\Doctrine\Extension\FilterSectionInterface;
- use Lc\CaracoleBundle\Doctrine\Extension\ReductionInterface;
- use Lc\CaracoleBundle\Doctrine\Extension\ReductionTrait;
- use Lc\CaracoleBundle\Model\Config\UnitModel;
- use Lc\CaracoleBundle\Model\Merchant\MerchantInterface;
- use Lc\CaracoleBundle\Model\Section\SectionInterface;
- use Lc\SovBundle\Doctrine\Extension\StatusInterface;
- use Lc\SovBundle\Doctrine\Extension\StatusTrait;
- use Lc\SovBundle\Doctrine\Pattern\AbstractLightEntity;
- use Lc\SovBundle\Model\User\UserInterface;
-
- /**
- * @ORM\MappedSuperclass()
- */
- abstract class ReductionCreditModel extends AbstractLightEntity implements ReductionInterface, FilterSectionInterface,
- StatusInterface
- {
- const TYPE_CREDIT = 'credit';
- const TYPE_GIFT = 'gift';
-
- use ReductionTrait;
- use StatusTrait;
-
- /**
- * @ORM\Column(type="string", length=255)
- */
- protected $title;
-
- /**
- * @ORM\ManyToMany(targetEntity="Lc\SovBundle\Model\User\UserInterface", inversedBy="reductionCredits")
- */
- protected $users;
-
- /**
- * @ORM\ManyToOne(targetEntity="Lc\CaracoleBundle\Model\Section\SectionInterface")
- * @ORM\JoinColumn(nullable=false)
- */
- protected $section;
-
- /**
- * @ORM\Column(type="string", length=255)
- */
- protected $type;
-
- /**
- * @ORM\Column(type="boolean", nullable=true)
- */
- protected $sended;
-
- /**
- * @ORM\ManyToOne(targetEntity="Lc\SovBundle\Model\User\UserInterface")
- */
- protected $owner;
-
- /**
- * @ORM\Column(type="datetime", nullable=true)
- */
- protected $activationDate;
-
- /**
- * @ORM\Column(type="string", length=255, nullable=true)
- */
- protected $ownerName;
-
- /**
- * @ORM\Column(type="text", nullable=true)
- */
- protected $ownerMessage;
-
-
- public function __construct()
- {
- $this->users = new ArrayCollection();
- $this->unit = UnitModel::UNIT_AMOUNT;
- }
-
- public function __toString()
- {
- return $this->title;
- }
-
- public function getTitle(): ?string
- {
- return $this->title;
- }
-
- public function setTitle(string $title): self
- {
- $this->title = $title;
-
- return $this;
- }
-
- public function getSection(): SectionInterface
- {
- return $this->section;
- }
-
- public function setSection(SectionInterface $section): self
- {
- $this->section = $section;
-
- return $this;
- }
-
- public function getType(): ?string
- {
- return $this->type;
- }
-
- public function setType(string $type): self
- {
- $this->type = $type;
-
- return $this;
- }
-
- /**
- * @return Collection|UserInterface[]
- */
- public function getUsers(): Collection
- {
- return $this->users;
- }
-
- public function addUser(UserInterface $user): self
- {
- if (!$this->users->contains($user)) {
- $this->users[] = $user;
- }
-
- return $this;
- }
-
- public function removeUser(UserInterface $user): self
- {
- if ($this->users->contains($user)) {
- $this->users->removeElement($user);
- }
-
- return $this;
- }
-
- public function getSended(): ?bool
- {
- return $this->sended;
- }
-
- public function setSended(?bool $sended): self
- {
- $this->sended = $sended;
-
- return $this;
- }
-
- public function getOwner(): ?UserInterface
- {
- return $this->owner;
- }
-
- public function setOwner(?UserInterface $owner): self
- {
- $this->owner = $owner;
-
- return $this;
- }
-
- public function getActivationDate(): ?\DateTimeInterface
- {
- return $this->activationDate;
- }
-
- public function setActivationDate(?\DateTimeInterface $activationDate): self
- {
- $this->activationDate = $activationDate;
-
- return $this;
- }
-
- public function getOwnerName(): ?string
- {
- return $this->ownerName;
- }
-
- public function setOwnerName(?string $ownerName): self
- {
- $this->ownerName = $ownerName;
-
- return $this;
- }
-
- public function getOwnerMessage(): ?string
- {
- return $this->ownerMessage;
- }
-
- public function setOwnerMessage(?string $ownerMessage): self
- {
- $this->ownerMessage = $ownerMessage;
-
- return $this;
- }
- }
|