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