Payment.php 3.89 KB
Newer Older
Julien Jorry committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
<?php

namespace App\Entity;

use Doctrine\ORM\Mapping as ORM;
use Payum\Core\Model\Payment as BasePayment;
use Ramsey\Uuid\Doctrine\UuidGenerator;

/**
 * @ORM\Entity(repositoryClass="App\Repository\PaymentRepository")
 * @ORM\Table(name="payment")
 */
class Payment extends BasePayment
{
    const TYPE_ACHAT_MONNAIE_ADHERENT = 'achat_monnaie_adherent';
    const TYPE_ACHAT_MONNAIE_PRESTA = 'achat_monnaie_presta';
    const TYPE_COTISATION_ADHERENT = 'cotisation_adherent';
    const TYPE_COTISATION_PRESTA = 'cotisation_presta';
    const TYPE_ADHESION = 'adhesion';
20
    const TYPE_PAIEMENT_COTISATION_TAV = 'paiement_cotisation_tav';
21 22 23
    const TYPE_PAIEMENT_RECURRENT_COTISATION_TAV = 'paiement_recurrent_cotisation_tav';

    // todo : new field pour donnes d'abonnement
Julien Jorry committed
24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57

    /**
     * @var \Ramsey\Uuid\UuidInterface
     *
     * @ORM\Id
     * @ORM\Column(type="uuid", unique=true)
     * @ORM\GeneratedValue(strategy="CUSTOM")
     * @ORM\CustomIdGenerator(class=UuidGenerator::class)
     */
    protected $id;

    /**
     * @var string|null
     *
     * @ORM\Column(type="string", length=50, nullable=true)
     */
    protected $status;

    /**
     * @var string|null
     *                  JSON array of 'Flux' to persist if payment valid
     *
     * @ORM\Column(type="text", nullable=true)
     */
    protected $flux_data;

    /**
     * @var string|null
     *                  Extra data to persist if payment valid
     *
     * @ORM\Column(type="text", nullable=true)
     */
    protected $extra_data;

Damien Moulard committed
58
    /**
59
     * @ORM\Column(type="boolean", nullable=True)
Damien Moulard committed
60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77
     */
    private $isRecurrent;

    /**
     * @ORM\Column(type="integer", nullable=true)
     */
    private $recurrenceMonthsCount;

    /**
     * @ORM\Column(type="integer", nullable=true)
     */
    private $recurrenceMonthDay;

    /**
     * @ORM\Column(type="integer", nullable=true)
     */
    private $recurrenceAmount;

Julien Jorry committed
78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136
    /**
     * @return string
     */
    public function getStatus(): ?string
    {
        return $this->status;
    }

    /**
     * @param string $status
     *
     * @return Payment
     */
    public function setStatus(string $status): self
    {
        $this->status = $status;

        return $this;
    }

    /**
     * @return string
     */
    public function getFluxData(): ?string
    {
        return $this->flux_data;
    }

    /**
     * @param string $flux_data
     *
     * @return Payment
     */
    public function setFluxData(string $flux_data): self
    {
        $this->flux_data = $flux_data;

        return $this;
    }

    /**
     * @return string
     */
    public function getExtraData(): ?string
    {
        return $this->extra_data;
    }

    /**
     * @param string $extra_data
     *
     * @return Payment
     */
    public function setExtraData(string $extra_data): self
    {
        $this->extra_data = $extra_data;

        return $this;
    }
Damien Moulard committed
137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184

    public function getIsRecurrent(): ?bool
    {
        return $this->isRecurrent;
    }

    public function setIsRecurrent(bool $isRecurrent): self
    {
        $this->isRecurrent = $isRecurrent;

        return $this;
    }

    public function getRecurrenceMonthsCount(): ?int
    {
        return $this->recurrenceMonthsCount;
    }

    public function setRecurrenceMonthsCount(?int $recurrenceMonthsCount): self
    {
        $this->recurrenceMonthsCount = $recurrenceMonthsCount;

        return $this;
    }

    public function getRecurrenceMonthDay(): ?int
    {
        return $this->recurrenceMonthDay;
    }

    public function setRecurrenceMonthDay(?int $recurrenceMonthDay): self
    {
        $this->recurrenceMonthDay = $recurrenceMonthDay;

        return $this;
    }

    public function getRecurrenceAmount(): ?int
    {
        return $this->recurrenceAmount;
    }

    public function setRecurrenceAmount(?int $recurrenceAmount): self
    {
        $this->recurrenceAmount = $recurrenceAmount;

        return $this;
    }
Julien Jorry committed
185
}