CotisationTavReversement.php 1.78 KB
Newer Older
1 2 3 4 5 6 7 8 9
<?php

namespace App\Entity;

use App\Enum\CurrencyEnum;
use App\Utils\OperationFactory;
use Doctrine\ORM\Mapping as ORM;

/**
10 11 12
 *  * Dans les cas suivants :
 * - [Profil de Cotisation] La taux est supérieur à 1 
 * - [Allocation selon foyer] Le montant reçu calculé est supérieur au montant payé
13
 * - [Allocation selon foyer] Un administrateur effectue une opération de correction de solde qui conduit à un reversement.
14 15
 * 
 * L'adhérent•e reçoit plus d'emlc que ce qu'elle•il paye en €, 
Damien Moulard committed
16
 * un second flux est créé pour reverser le complément de la cotisation.
17 18 19
 *
 * @ORM\Entity
 */
20
class CotisationTavReversement extends CotisationTavApplication
21 22 23 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 58 59 60 61 62
{
    /**
     * @ORM\OneToOne(targetEntity="Siege")
     * @ORM\JoinColumn(name="siege_id", referencedColumnName="id")
     */
    protected $expediteur;

    /**
     * @ORM\OneToOne(targetEntity="Adherent")
     * @ORM\JoinColumn(name="adherent_id", referencedColumnName="id")
     */
    protected $destinataire;

    public function getAllOperations($em)
    {
        return [
            OperationFactory::getOperation($this, $this->getExpediteur(), CurrencyEnum::CURRENCY_EMLC, $this->getMontant()), // Increase Siege ecompte
            OperationFactory::getOperation($this, $this->getDestinataire(), CurrencyEnum::CURRENCY_EMLC, $this->getMontant()),
        ];
    }

    public function operate($em)
    {
        $this->getExpediteur()->addEcompteNantie($this->getMontant());
        $this->getDestinataire()->addEcompte($this->getMontant());

        return [$this->getExpediteur(), $this->getDestinataire()];
    }

    /**
     * @return string
     */
    public function getType(): string
    {
        return parent::TYPE_REVERSEMENT_COTISATION_ADHERENT;
    }

    public function getUsersToNotify()
    {
        return [];
    }
}