70 lines
1.4 KiB
PHP
70 lines
1.4 KiB
PHP
<?php
|
|
|
|
namespace Garradin\Plugin\RecusFiscaux;
|
|
|
|
/**
|
|
* rassembler les infos d'une personne
|
|
*/
|
|
class Personne
|
|
{
|
|
public $id;
|
|
public $nomPrenom;
|
|
public $adresse;
|
|
public $codePostal;
|
|
public $ville;
|
|
public $courriel;
|
|
public $versements; // versements par taux de réduction
|
|
|
|
public function __construct(
|
|
$id,
|
|
$nomPrenom,
|
|
$adresse,
|
|
$codePostal,
|
|
$ville,
|
|
$courriel = ""
|
|
)
|
|
{
|
|
$this->id = $id;
|
|
$this->nomPrenom = $nomPrenom;
|
|
$this->adresse = $adresse;
|
|
$this->codePostal = $codePostal;
|
|
$this->ville = $ville;
|
|
$this->courriel = $courriel;
|
|
$this->versements = array(); // clé = tarif, valeur = montant
|
|
}
|
|
|
|
/**
|
|
* return copie d'une personne
|
|
*/
|
|
public function clone()
|
|
{
|
|
return new Personne(
|
|
$this->id,
|
|
$this->nomPrenom,
|
|
$this->adresse,
|
|
$this->codePostal,
|
|
$this->ville,
|
|
$this->courriel);
|
|
}
|
|
|
|
/**
|
|
* ajouter un versement
|
|
* @param $tauxReduction
|
|
* @param $montant
|
|
*/
|
|
public function ajouterVersement(
|
|
$tauxReduction,
|
|
$montant
|
|
)
|
|
{
|
|
if (array_key_exists($tauxReduction, $this->versements))
|
|
{
|
|
$this->versements[$tauxReduction] += $montant;
|
|
}
|
|
else
|
|
{
|
|
$this->versements[$tauxReduction] = $montant;
|
|
}
|
|
}
|
|
}
|