gestion complète taux réduction

FossilOrigin-Name: 65f4c90bd70dda1733695d52ff242e58fe10220efee4077c813f49961d2686bc
This commit is contained in:
engel 2022-02-18 11:51:13 +00:00
parent 38a3556dbd
commit 3acbd2038e
10 changed files with 61 additions and 28 deletions

View File

@ -58,13 +58,15 @@ class Personne
public function ajouterVersement( public function ajouterVersement(
$idActivite, $idActivite,
$idTarif, $idTarif,
$montant $montant,
$tauxReduction
) { ) {
$this->versements[] = $this->versements[] =
new Versement( new Versement(
$idActivite, $idActivite,
$idTarif, $idTarif,
$montant $montant,
$tauxReduction
); );
} }
} }

View File

@ -164,9 +164,9 @@ class RecusPDF extends tFPDF
"Le bénéficiaire reconnaît avoir reçu au titre des dons et versements ouvrant droit à réduction d'impôt :", "Le bénéficiaire reconnaît avoir reçu au titre des dons et versements ouvrant droit à réduction d'impôt :",
'LTR', 'LTR',
1); 1);
foreach ($lesMontants as $montant) foreach ($lesMontants as $taux => $montant)
{ {
$this->imprimer_montant(" - la somme de ", $montant, "aide aux personnes en difficulté"); $this->imprimer_montant(" - la somme de ", $montant, Utils::getLigneReduction($taux));
} }
$this->Cell(0, 3, "", 'LR', 1); $this->Cell(0, 3, "", 'LR', 1);
$this->imprimer_description('Date des versements : ', $this->imprimer_description('Date des versements : ',

View File

@ -139,6 +139,23 @@ class Utils
return DB::getInstance()->get($sql, $annee); return DB::getInstance()->get($sql, $annee);
} }
public static function getLignesReduction($lesTaux)
{
foreach ($lesTaux as $elem)
{
$ligne = "taux " . $elem->taux . ", ligne " . $elem->ligne;
if ($elem->remarque != "") {
$ligne .= ", " . $elem->remarque;
}
$lignes[$elem->taux] = $ligne;
}
return $lignes;
}
public static function getLigneReduction($taux)
{
return $_SESSION['ligneReduction'][$taux];
}
// ------------------------------------------------------------ // ------------------------------------------------------------
/** /**
@ -373,7 +390,7 @@ class Utils
* @param tableau des versements par personne * @param tableau des versements par personne
*/ */
static function genererRecus() { static function genererRecus() {
} }
/** /**

View File

@ -12,10 +12,13 @@ class Versement
public function __construct( public function __construct(
$idActivite, $idActivite,
$idTarif, $idTarif,
$montant $montant,
) { $tauxReduction
)
{
$this->idActivite = $idActivite; $this->idActivite = $idActivite;
$this->idTarif = $idTarif; $this->idTarif = $idTarif;
$this->montant = $montant; $this->montant = $montant;
$this->tauxReduction = $tauxReduction;
} }
} }

View File

@ -4,7 +4,7 @@ namespace Garradin;
$session->requireAccess($session::SECTION_CONFIG, $session::ACCESS_ADMIN); $session->requireAccess($session::SECTION_CONFIG, $session::ACCESS_ADMIN);
$art_sel=f('articlesCGI') ? : []; $art_sel=f('articlesCGI') ? : [];
error_log("art sel=" . print_r($art_sel, true) . "\n");
if (f('save') && $form->check('recusfiscaux_config')) if (f('save') && $form->check('recusfiscaux_config'))
{ {
try { try {
@ -18,9 +18,7 @@ if (f('save') && $form->check('recusfiscaux_config'))
foreach ($art_sel as $article) { foreach ($art_sel as $article) {
$confArticles[$article]->valeur = 1; $confArticles[$article]->valeur = 1;
} }
error_log("confArticles=" . print_r($confArticles, true) . "\n");
$plugin->setConfig("articlesCGI", $confArticles); $plugin->setConfig("articlesCGI", $confArticles);
error_log("plugin->config=" . print_r($plugin->getConfig("articlesCGI"), true) . "\n");
\Garradin\Utils::redirect(PLUGIN_URL . 'config.php?ok'); \Garradin\Utils::redirect(PLUGIN_URL . 'config.php?ok');
} }
catch (UserException $e) catch (UserException $e)

View File

@ -41,8 +41,14 @@ foreach ($totalPersonnes as $idPersonne => $personne) {
); );
// extraire les montants des versements // extraire les montants des versements
$lesMontants = array(); $lesMontants = array();
foreach ($personne->versements as $versement) { foreach ($personne->versements as $versement)
$lesMontants[] = $versement->montant; {
if (array_key_exists($versement->tauxReduction, $lesMontants)) {
$lesMontants[$versement->tauxReduction] += $versement->montant;
}
else {
$lesMontants[$versement->tauxReduction] = $versement->montant;
}
} }
$pdf->imprimer_recu( $pdf->imprimer_recu(
$_SESSION['annee_recu'], $_SESSION['annee_recu'],
@ -82,16 +88,19 @@ function cumulerVersements($versements)
$idTarif_courant = -1; $idTarif_courant = -1;
$idPersonne_courant = -1; $idPersonne_courant = -1;
$totalVersements = 0; $totalVersements = 0;
foreach ($versements as $ligne) { foreach ($versements as $ligne)
{
if ( if (
$ligne->idTarif != $idTarif_courant || $ligne->idTarif != $idTarif_courant ||
$ligne->idUser != $idPersonne_courant $ligne->idUser != $idPersonne_courant
) { )
{
if ($idTarif_courant != -1) { if ($idTarif_courant != -1) {
$totalPersonnes["$idPersonne_courant"]->ajouterVersement( $totalPersonnes[$idPersonne_courant]->ajouterVersement(
$_SESSION['lesTarifs'][$idTarif_courant]->idActivite, $_SESSION['lesTarifs'][$idTarif_courant]->idActivite,
$idTarif_courant, $idTarif_courant,
$totalVersements/100 $totalVersements/100,
$_SESSION['tauxSelectionnes'][$idTarif_courant]
); );
} }
$idTarif_courant = $ligne->idTarif; $idTarif_courant = $ligne->idTarif;
@ -108,11 +117,12 @@ function cumulerVersements($versements)
} }
} }
// et le dernier // et le dernier
$totalPersonnes["$idPersonne_courant"]->ajouterVersement( $totalPersonnes[$idPersonne_courant]->ajouterVersement(
$_SESSION['lesTarifs'][$idTarif_courant]->idActivite, $_SESSION['lesTarifs'][$idTarif_courant]->idActivite,
$idTarif_courant, $idTarif_courant,
$totalVersements/100 $totalVersements/100,
); $_SESSION['tauxSelectionnes'][$idTarif_courant]
);
return $totalPersonnes; return $totalPersonnes;
} }

View File

@ -15,15 +15,10 @@ foreach ($lesLignes as $ligne) {
$versementsSelectionnes[] = $_SESSION['lesVersementsTotaux'][$ligne]; $versementsSelectionnes[] = $_SESSION['lesVersementsTotaux'][$ligne];
} }
error_log("versements sélectionnés " . print_r($versementsSelectionnes, true));
// générer les reçus // générer les reçus
$nomAsso = Utils::getNomAsso(); $nomAsso = Utils::getNomAsso();
$adresseAsso = Utils::getAdresseAsso(); $adresseAsso = Utils::getAdresseAsso();
// TODO
// - associer le taux de réduction à chaque montant total
$logoCERFA = PLUGIN_ROOT . "/data/logoCerfa.png"; $logoCERFA = PLUGIN_ROOT . "/data/logoCerfa.png";
$signature = PLUGIN_ROOT . "/data/default_signature.png"; $signature = PLUGIN_ROOT . "/data/default_signature.png";
$listeFichiers = []; $listeFichiers = [];
@ -39,11 +34,12 @@ foreach ($versementsSelectionnes as $ligne) {
$signature $signature
); );
// extraire les montants des versements // extraire les montants des versements
$lesMontants[$_SESSION['taux_reduction']] = $ligne->versement/100;
$pdf->imprimer_recu( $pdf->imprimer_recu(
$_SESSION['annee_recu'], $_SESSION['annee_recu'],
$ligne->idUser, $ligne->idUser,
$_SESSION['membresDonateurs'][$ligne->idUser]->nomPrenom, $_SESSION['membresDonateurs'][$ligne->idUser]->nomPrenom,
array($ligne->versement/100), $lesMontants,
$_SESSION['membresDonateurs'][$ligne->idUser]->adresse, $_SESSION['membresDonateurs'][$ligne->idUser]->adresse,
$_SESSION['membresDonateurs'][$ligne->idUser]->codePostal, $_SESSION['membresDonateurs'][$ligne->idUser]->codePostal,
$_SESSION['membresDonateurs'][$ligne->idUser]->ville $_SESSION['membresDonateurs'][$ligne->idUser]->ville

View File

@ -11,6 +11,9 @@ if ($anneesFiscales[0] < $anneeCourante) {
array_unshift($anneesFiscales, $anneeCourante); array_unshift($anneesFiscales, $anneeCourante);
} }
// libellés pour les taux de réduction
$_SESSION['ligneReduction'] = Utils::getLignesReduction($plugin->getConfig('reduction'));
// liste des activités, cotisations et comptes associés // liste des activités, cotisations et comptes associés
$activitesTarifsComptes = Utils::getActivitesTarifsEtComptes(); $activitesTarifsComptes = Utils::getActivitesTarifsEtComptes();

View File

@ -20,8 +20,10 @@ $tauxSelectionnes = array();
foreach ($tarifsSelectionnes as $idTarif) { foreach ($tarifsSelectionnes as $idTarif) {
$nomRadio = "taux_reduction_" . $idTarif; $nomRadio = "taux_reduction_" . $idTarif;
$valRadio = f("$nomRadio"); $valRadio = f("$nomRadio");
$tauxSelectionnes[] = $valRadio ? $valRadio: $plugin->getConfig('reduction')[0]->taux; $tauxSelectionnes[$idTarif] = $valRadio;
} }
$_SESSION['tauxSelectionnes'] = $tauxSelectionnes;
// obtenir les instances de tarifs correspondant à la sélection // obtenir les instances de tarifs correspondant à la sélection
$lesTarifs = array(); $lesTarifs = array();
foreach (Utils::getTarifs($tarifsSelectionnes) as $ot) { foreach (Utils::getTarifs($tarifsSelectionnes) as $ot) {

View File

@ -5,6 +5,8 @@ namespace Garradin;
use Garradin\Plugin\RecusFiscaux\Personne; use Garradin\Plugin\RecusFiscaux\Personne;
use Garradin\Plugin\RecusFiscaux\Utils; use Garradin\Plugin\RecusFiscaux\Utils;
$_SESSION['taux_reduction'] = $_POST['taux_reduction'];
// vérifier si l'année a bien été sélectionnée au préalable // vérifier si l'année a bien été sélectionnée au préalable
$_SESSION['annee_recu'] = f('annee_recu'); $_SESSION['annee_recu'] = f('annee_recu');
if (! isset($_SESSION['annee_recu']) || $_SESSION['annee_recu'] == "") { if (! isset($_SESSION['annee_recu']) || $_SESSION['annee_recu'] == "") {