correction bug total compte
FossilOrigin-Name: d24bebd61e6729bab7cb2caa65523d20146e187b621935e47be84169db710dc7
This commit is contained in:
parent
92a4b7b8a6
commit
358aad1ec7
|
@ -205,25 +205,31 @@ function cumulerVersementsTarif($versements)
|
|||
$totalPersonnes = array();
|
||||
$idTarifCourant = -1;
|
||||
$idPersonneCourant = -1;
|
||||
$idCompteCourant = -1;
|
||||
$totalVersements = 0;
|
||||
foreach ($versements as $ligne)
|
||||
{
|
||||
if (
|
||||
$ligne->idTarif != $idTarifCourant ||
|
||||
$ligne->idUser != $idPersonneCourant
|
||||
$ligne->idTarif != $idTarifCourant ||
|
||||
$ligne->idUser != $idPersonneCourant ||
|
||||
$ligne->idCompte != $idCompteCourant
|
||||
)
|
||||
{
|
||||
if ($idTarifCourant != -1)
|
||||
{
|
||||
// changement de tarif ou de personne
|
||||
$tarifCompte = ($idTarifCourant == 0) ?
|
||||
$idCompteCourant :
|
||||
$idTarifCourant . "_" . $idCompteCourant;
|
||||
$totalPersonnes[$idPersonneCourant]->ajouterVersement(
|
||||
$_SESSION['tauxSelectionnes'][$idTarifCourant],
|
||||
$_SESSION['tauxSelectionnes'][$tarifCompte],
|
||||
$totalVersements
|
||||
);
|
||||
}
|
||||
$idTarifCourant = $ligne->idTarif;
|
||||
$idTarifCourant = $ligne->idTarif;
|
||||
$idPersonneCourant = $ligne->idUser;
|
||||
$totalVersements = $ligne->versement;
|
||||
$idCompteCourant = $ligne->idCompte;
|
||||
$totalVersements = $ligne->versement;
|
||||
// créer les infos de la personne, sauf si elle est déjà présente
|
||||
if (!array_key_exists($idPersonneCourant, $totalPersonnes))
|
||||
{
|
||||
|
@ -235,8 +241,11 @@ function cumulerVersementsTarif($versements)
|
|||
}
|
||||
}
|
||||
// et le dernier
|
||||
$tarifCompte = ($idTarifCourant == 0) ?
|
||||
$idCompteCourant :
|
||||
$idTarifCourant . "_" . $idCompteCourant;
|
||||
$totalPersonnes[$idPersonneCourant]->ajouterVersement(
|
||||
$_SESSION['tauxSelectionnes'][$idTarifCourant],
|
||||
$_SESSION['tauxSelectionnes'][$tarifCompte],
|
||||
$totalVersements
|
||||
);
|
||||
return $totalPersonnes;
|
||||
|
|
Loading…
Reference in New Issue