f7aca72950
FossilOrigin-Name: 34367b01dc439cf6979ad81ed4735787c167d106a197d3172f5519fdd53fde3f
51 lines
1.0 KiB
PHP
51 lines
1.0 KiB
PHP
<?php
|
|
|
|
namespace Garradin\Plugin\RecusFiscaux;
|
|
|
|
/**
|
|
* rassembler les infos d'une personne
|
|
*/
|
|
class Personne
|
|
{
|
|
public $id;
|
|
public $nomPrenom;
|
|
public $adresse;
|
|
public $ville;
|
|
public $codePostal;
|
|
public $courriel;
|
|
public $versements; // tableau des versements totaux par activité/tarif
|
|
|
|
public function __construct(
|
|
$id,
|
|
$nomPrenom,
|
|
$adresse,
|
|
$ville,
|
|
$codePostal,
|
|
$courriel
|
|
) {
|
|
$this->id = $id;
|
|
$this->nomPrenom = $nomPrenom;
|
|
$this->adresse = $adresse;
|
|
$this->ville = $ville;
|
|
$this->codePostal = $codePostal;
|
|
$this->courriel = $courriel;
|
|
$this->versements = array();
|
|
}
|
|
|
|
/*
|
|
* ajouter un versement pour une activité et un tarif donnés
|
|
*/
|
|
public function ajouterVersement(
|
|
$idActivite,
|
|
$idTarif,
|
|
$montant
|
|
) {
|
|
$this->versements[] =
|
|
new Versement(
|
|
$idActivite,
|
|
$idTarif,
|
|
$montant
|
|
);
|
|
}
|
|
}
|