vérification sélections cases et radios
FossilOrigin-Name: ba0d1089be4acbc5c7cfba5ab180a19e6a66bb1b466e8ed238337c239d326a49
This commit is contained in:
parent
a3e855870c
commit
38a3556dbd
3 changed files with 75 additions and 28 deletions
|
|
@ -32,6 +32,10 @@ class Personne
|
|||
$this->versements = array();
|
||||
}
|
||||
|
||||
/**
|
||||
* return copie d'une personne
|
||||
* @param $p
|
||||
*/
|
||||
public static function copier($p)
|
||||
{
|
||||
return new Personne(
|
||||
|
|
@ -44,8 +48,12 @@ class Personne
|
|||
}
|
||||
|
||||
|
||||
/*
|
||||
* ajouter un versement pour une activité et un tarif donnés
|
||||
/**
|
||||
* ajouter un versement
|
||||
* @param $idActivite
|
||||
* @param $idTarif
|
||||
* @param $montant
|
||||
* @param $tauxReduction
|
||||
*/
|
||||
public function ajouterVersement(
|
||||
$idActivite,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue