Adherent.php 12.4 KB
Newer Older
Julien Jorry committed
1 2 3 4 5 6 7 8 9 10 11 12
<?php

namespace App\Entity;

use ApiPlatform\Core\Annotation\ApiResource;
use App\Entity\EntityTrait\EnablableEntityTrait;
use App\Entity\EntityTrait\GeolocEntityTrait;
use App\Entity\EntityTrait\HasAccountsTrait;
use App\Entity\EntityTrait\HasEcompteEntity;
use App\Flux\AccountableInterface;
use App\Flux\AccountableObject;
use Doctrine\Common\Collections\ArrayCollection;
13
use Doctrine\Common\Collections\Collection;
Julien Jorry committed
14 15 16 17 18 19 20 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
use Doctrine\ORM\Mapping as ORM;
use Gedmo\Timestampable\Traits\TimestampableEntity;
use Ramsey\Uuid\Doctrine\UuidGenerator;
use Symfony\Component\Serializer\Annotation\Groups;

/**
 * ApiResource(
 *     attributes={"security"="is_granted('ROLE_ADMIN_ADHERENT_GERER_VIEW')"},
 *     collectionOperations={
 *         "get"={"security"="is_granted('ROLE_ADMIN_ADHERENT_GERER_LIST')"},
 *         "post"={"security"="is_granted('ROLE_ADMIN_ADHERENT_GERER_EDIT')"}
 *     },
 *     itemOperations={
 *         "get"={"security"="is_granted('ROLE_ADMIN_ADHERENT_GERER_LIST')"},
 *         "put"={"security"="is_granted('ROLE_ADMIN_ADHERENT_GERER_EDIT') or object.user == user"},
 *     },
 *     normalizationContext={"groups"={"read"}},
 *     denormalizationContext={"groups"={"write"}}
 * ).
 *
 * @ORM\Entity(repositoryClass="App\Repository\AdherentRepository")
 * @ORM\Table(name="adherent")
 * @ORM\HasLifecycleCallbacks()
 */
class Adherent extends AccountableObject implements AccountableInterface
{
    use EnablableEntityTrait;
    use TimestampableEntity;
    use GeolocEntityTrait;
    use HasEcompteEntity;
    use HasAccountsTrait;

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

56 57 58 59 60 61 62 63
    /**
     * @var string
     *
     * @ORM\Column(name="idmlc", type="string", length=100, nullable=true)
     * @Groups({"read", "write"})
     */
    protected $idmlc;

Julien Jorry committed
64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79
    /**
     * @var User
     *
     * @ORM\OneToOne(targetEntity="User", cascade={"all"}, mappedBy="adherent", fetch="LAZY")
     */
    protected $user;

    /**
     * @var Groupe
     *
     * @ORM\ManyToOne(targetEntity="Groupe", inversedBy="adherents")
     */
    private $groupe;

    /**
     * @var ArrayCollection|AccountAdherent[]
80
     * @ORM\OneToMany(targetEntity="AccountAdherent", mappedBy="adherent", cascade={"remove"})
Julien Jorry committed
81 82 83
     */
    private $accounts;

84 85 86 87 88
    /**
     * @ORM\Column(type="string", length=255, nullable=true)
     */
    private $paymentCode;

89 90 91 92
    /**
     * @var ProfilDeCotisation
     *
     * @ORM\ManyToOne(targetEntity="ProfilDeCotisation", cascade={"persist"}, inversedBy="beneficiaires")
93
     * @ORM\JoinColumn(name="profildecotisation_id", referencedColumnName="id", nullable=true, onDelete="SET NULL")
94 95 96
     */
    private $profilDeCotisation;

97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116
    /**
     * @ORM\Column(type="string", length=255, nullable=true)
     */
    private $moyenDePaiement;

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

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

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

117 118 119 120 121
    /**
     * @ORM\OneToMany(targetEntity=DependentChild::class, mappedBy="adherent", orphanRemoval=true, cascade={"persist"})
     */
    private $dependentChildren;

122 123 124 125 126
    /**
     * @ORM\Column(type="string", length=255, nullable=true)
     */
    private $householdComposition;

127
    /**
128
     * @ORM\Column(type="integer", nullable=true)
129 130 131
     */
    private $householdAdultCount;

132 133 134 135 136 137 138
    /**
     * In simplified household based allocation process, don't keep track of adults & children in the household 
     * 
     * @ORM\Column(type="integer", nullable=true)
     */
    private $householdCount;

139 140 141 142 143 144 145 146
    /**
     * On household based allowance process, define a cotisation amount for each adherent.
     * 
     * @ORM\Column(type="float", nullable=true)
     */
    private $cotisationAmount;

    /**
147
     * On household based allowance process, the allowance amount is calculated based on household data.
148 149 150 151 152 153
     * Calculate and save the allocation amount when the household data is updated.
     * 
     * @ORM\Column(type="float", nullable=true)
     */
    private $allocationAmount;

154 155 156
    /**
     * @ORM\Column(type="boolean", options={"default": false})
     */
157
    private $ccasAccepted = false;
158 159 160 161

    /**
     * @ORM\Column(type="boolean", options={"default": false})
     */
162
    private $ccasEligible = false;
163 164 165 166

    /**
     * @ORM\Column(type="string", length=36, nullable=true, unique=true)
     */
Damien Moulard committed
167
    private $anonymousToken;
168

169

Julien Jorry committed
170 171 172
    public function __construct()
    {
        $this->accounts = new ArrayCollection();
173
        $this->dependentChildren = new ArrayCollection();
Julien Jorry committed
174 175 176 177 178 179 180
    }

    public function getId()
    {
        return $this->id;
    }

181
    /**
182 183 184 185
     * Get idmlc.
     *
     * @return
     */
186 187 188 189
    public function getIdmlc(): ?string
    {
        return $this->idmlc;
    }
190

191
    /**
192 193 194 195
     * Set idmlc.
     *
     * @return $this
     */
196 197 198 199 200 201 202
    public function setIdmlc(string $idmlc): self
    {
        $this->idmlc = $idmlc;

        return $this;
    }

Julien Jorry committed
203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280
    public function getCompte(): float
    {
        return $this->getEcompte();
    }

    public function setCompte(float $ecompte): self
    {
        $this->setEcompte($ecompte);

        return $this;
    }

    /**
     * @return User
     */
    public function getUser(): ?User
    {
        return $this->user;
    }

    /**
     * @param User $user
     *
     * @return Prestataire
     */
    public function setUser(User $user): self
    {
        $this->user = $user;

        return $this;
    }

    /**
     * @param Groupe|null $groupe
     *
     * @return $this
     */
    public function setGroupe(?Groupe $groupe): self
    {
        $this->groupe = $groupe;

        return $this;
    }

    /**
     * @return Groupe|null
     */
    public function getGroupe(): ?Groupe
    {
        return $this->groupe;
    }

    public function isEnabled(): bool
    {
        return $this->getUser()->isEnabled();
    }

    public function setEnabled($enabled): self
    {
        $this->getUser()->setEnabled($enabled);

        return $this;
    }

    public function getName(): string
    {
        return $this->__toString();
    }

    public function __toString(): string
    {
        if (!empty($this->getUser())) {
            if (!empty($this->getUser()->getLastname() . $this->getUser()->getFirstname())) {
                return $this->getUser()->getLastname() . ' ' . $this->getUser()->getFirstname();
            }
            if (!empty($this->getUser()->getUsername())) {
                return $this->getUser()->getUsername();
            }
281 282 283
            if (!empty($this->getUser()->getEmail())) {
                return $this->getUser()->getEmail();
            }
Julien Jorry committed
284 285
        }

286
        return 'Adhérent xxx';
Julien Jorry committed
287
    }
288

289 290 291 292 293 294 295 296
    public function getEmail(): ?string
    {
        if (!empty($this->getUser())) {
            return $this->getUser()->getEmail();
        }
        return '';
    }

297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312
    public function getFullname(): string
    {
        $return = '';
        if (!empty($this->getUser())) {
            if (!empty($this->getUser()->getLastname() . $this->getUser()->getFirstname())) {
                $return = $this->getUser()->getLastname() . ' ' . $this->getUser()->getFirstname();
                if (!empty($this->getUser()->getEmail())) {
                    $return .= '(' . $this->getUser()->getEmail() . ')';
                }
            } elseif (!empty($this->getUser()->getEmail())) {
                $return = $this->getUser()->getEmail();
            }

            return $return;
        }

313
        return 'Adhérent xxx';
314
    }
315

316 317 318 319 320 321 322 323 324 325 326
    public function getPaymentCode(): ?string
    {
        return $this->paymentCode;
    }

    public function setPaymentCode(?string $paymentCode): self
    {
        $this->paymentCode = $paymentCode;

        return $this;
    }
327

328 329 330
    /**
     * @return ProfilDeCotisation
     */
331
    public function getProfilDeCotisation(): ?ProfilDeCotisation
332 333 334 335 336 337 338 339 340 341 342 343 344
    {
        return $this->profilDeCotisation;
    }

    /**
     * @return $this
     */
    public function setProfilDeCotisation($profilDeCotisation): self
    {
        $this->profilDeCotisation = $profilDeCotisation;

        return $this;
    }
345 346 347 348 349 350 351 352 353 354 355 356

    public function getMoyenDePaiement(): ?string
    {
        return $this->moyenDePaiement;
    }

    public function setMoyenDePaiement(?string $moyenDePaiement): self
    {
        $this->moyenDePaiement = $moyenDePaiement;

        return $this;
    }
357 358 359 360 361 362 363 364 365 366 367 368
    
    public function getHouseholdComposition(): ?string
    {
        return $this->householdComposition;
    }

    public function setHouseholdComposition(?string $householdComposition): self
    {
        $this->householdComposition = $householdComposition;

        return $this;
    }
369 370 371 372 373 374 375 376 377 378 379 380

    public function getJourPrelevement(): ?int
    {
        return $this->jourPrelevement;
    }

    public function setJourPrelevement(?int $jourPrelevement): self
    {
        $this->jourPrelevement = $jourPrelevement;

        return $this;
    }
381 382 383 384 385 386 387 388 389 390 391 392
    
    public function getHouseholdAdultCount(): ?int
    {
        return $this->householdAdultCount;
    }

    public function setHouseholdAdultCount(?int $householdAdultCount): self
    {
        $this->householdAdultCount = $householdAdultCount;

        return $this;
    }
393

394 395 396 397 398 399 400 401 402 403 404 405
    public function getHouseholdCount(): ?int
    {
        return $this->householdCount;
    }

    public function setHouseholdCount(?int $householdCount): self
    {
        $this->householdCount = $householdCount;

        return $this;
    }

406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428
    public function getMailRappelCotisation(): ?bool
    {
        return $this->mailRappelCotisation;
    }

    public function setMailRappelCotisation(?bool $mailRappelCotisation): self
    {
        $this->mailRappelCotisation = $mailRappelCotisation;

        return $this;
    }

    public function getJourMailRappelCotisation(): ?int
    {
        return $this->jourMailRappelCotisation;
    }

    public function setJourMailRappelCotisation(?int $jourMailRappelCotisation): self
    {
        $this->jourMailRappelCotisation = $jourMailRappelCotisation;

        return $this;
    }
429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458

    /**
     * @return Collection<int, DependentChild>
     */
    public function getDependentChildren(): Collection
    {
        return $this->dependentChildren;
    }

    public function addDependentChild(DependentChild $dependentChild): self
    {
        if (!$this->dependentChildren->contains($dependentChild)) {
            $this->dependentChildren[] = $dependentChild;
            $dependentChild->setAdherent($this);
        }

        return $this;
    }

    public function removeDependentChild(DependentChild $dependentChild): self
    {
        if ($this->dependentChildren->removeElement($dependentChild)) {
            // set the owning side to null (unless already changed)
            if ($dependentChild->getAdherent() === $this) {
                $dependentChild->setAdherent(null);
            }
        }

        return $this;
    }
459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482

    public function getCotisationAmount(): ?float
    {
        return $this->cotisationAmount;
    }

    public function setCotisationAmount(?float $cotisationAmount): self
    {
        $this->cotisationAmount = $cotisationAmount;

        return $this;
    }

    public function getAllocationAmount(): ?float
    {
        return $this->allocationAmount;
    }

    public function setAllocationAmount(?float $allocationAmount): self
    {
        $this->allocationAmount = $allocationAmount;

        return $this;
    }
483 484 485 486 487 488

    public function getCeiling()
    {
        //This formula has been configured for ssa gironde project
        return 2 * $this->allocationAmount;
    }
489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524

    public function getCcasAccepted(): ?bool
    {
        return $this->ccasAccepted;
    }

    public function setCcasAccepted(bool $ccasAccepted): self
    {
        $this->ccasAccepted = $ccasAccepted;

        return $this;
    }

    public function getCcasEligible(): ?bool
    {
        return $this->ccasEligible;
    }

    public function setCcasEligible(bool $ccasEligible): self
    {
        $this->ccasEligible = $ccasEligible;

        return $this;
    }

    public function getAnonymousToken(): ?string
    {
        return $this->anonymousToken;
    }

    public function setAnonymousToken(?string $anonymousToken): self
    {
        $this->anonymousToken = $anonymousToken;

        return $this;
    }
Julien Jorry committed
525
}