Vente.php 483 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
<?php

namespace App\Entity;

use Doctrine\ORM\Mapping as ORM;

/**
 * Vente => (Diffusion de monnaie papier auprès des adhérents)
 *
 * Types de vente :
 *
 *   - COMPTOIR     =>    ADHERENTS         (Vente à un adherent)
 *   - COMPTOIR     =>    PRESTATAIRES      (Vente à un prestataire)
 *
 * @ORM\Entity
 */
abstract class Vente extends Flux
{
    /**
     * @return string
     */
    public function getParenttype(): string
    {
        return self::TYPE_VENTE;
    }
}