petite simplification
FossilOrigin-Name: 5219b12deb4e5d59ca48864054c8909781cbf35df357a74e66cc7fa2c22667e3
This commit is contained in:
parent
130cff0787
commit
b9d97d9914
|
@ -22,7 +22,8 @@ class Personne
|
|||
$codePostal,
|
||||
$ville,
|
||||
$courriel = ""
|
||||
) {
|
||||
)
|
||||
{
|
||||
$this->id = $id;
|
||||
$this->nomPrenom = $nomPrenom;
|
||||
$this->adresse = $adresse;
|
||||
|
@ -34,20 +35,18 @@ class Personne
|
|||
|
||||
/**
|
||||
* return copie d'une personne
|
||||
* @param $p
|
||||
*/
|
||||
public static function copier($p)
|
||||
public function clone()
|
||||
{
|
||||
return new Personne(
|
||||
$p->id,
|
||||
$p->nomPrenom,
|
||||
$p->adresse,
|
||||
$p->codePostal,
|
||||
$p->ville,
|
||||
$p->courriel);
|
||||
$this->id,
|
||||
$this->nomPrenom,
|
||||
$this->adresse,
|
||||
$this->codePostal,
|
||||
$this->ville,
|
||||
$this->courriel);
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* ajouter un versement
|
||||
* @param $idActivite
|
||||
|
@ -60,7 +59,8 @@ class Personne
|
|||
$idTarif,
|
||||
$montant,
|
||||
$tauxReduction
|
||||
) {
|
||||
)
|
||||
{
|
||||
$this->versements[] =
|
||||
new Versement(
|
||||
$idActivite,
|
||||
|
|
|
@ -109,7 +109,7 @@ function cumulerVersements($versements)
|
|||
// créer les infos de la personne, sauf si elle est déjà présente
|
||||
if (!array_key_exists($idPersonne_courant, $totalPersonnes))
|
||||
{
|
||||
$totalPersonnes["$idPersonne_courant"] = Personne::copier($_SESSION['membresDonateurs'][$ligne->idUser]);
|
||||
$totalPersonnes["$idPersonne_courant"] = $_SESSION['membresDonateurs'][$ligne->idUser]->clone();
|
||||
}
|
||||
} else {
|
||||
// cumuler versements
|
||||
|
|
Loading…
Reference in New Issue