2022-01-29 15:03:41 +01:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace Garradin;
|
|
|
|
|
2022-02-22 10:47:54 +01:00
|
|
|
use Garradin\Plugin\RecusFiscaux\RecusHTML;
|
2022-01-29 15:03:41 +01:00
|
|
|
use Garradin\Plugin\RecusFiscaux\Utils;
|
|
|
|
use Garradin\Plugin\RecusFiscaux\Personne;
|
|
|
|
|
|
|
|
// récupérer les lignes sélectionnées
|
|
|
|
$lesLignes = f('selected');
|
|
|
|
|
|
|
|
// filtrer les versements sélectionnés
|
|
|
|
$versementsSelectionnes = array();
|
2022-02-17 10:21:33 +01:00
|
|
|
foreach ($lesLignes as $ligne) {
|
2022-01-29 15:03:41 +01:00
|
|
|
$versementsSelectionnes[] = $_SESSION['lesVersements'][$ligne];
|
|
|
|
}
|
|
|
|
// cumuler les versements d'une personne
|
|
|
|
$totalPersonnes = cumulerVersements($versementsSelectionnes);
|
|
|
|
|
|
|
|
// générer les reçus
|
|
|
|
$nomAsso = Utils::getNomAsso();
|
|
|
|
$adresseAsso = Utils::getAdresseAsso();
|
|
|
|
|
2022-02-25 13:23:30 +01:00
|
|
|
$signature =
|
|
|
|
(null !== $plugin->getConfig('signature')) ?
|
|
|
|
\Garradin\Files\Files::get($plugin->getConfig('signature'))->fullpath() :
|
|
|
|
\Garradin\WWW_URL . "plugin/recusFiscaux/default_signature.png";
|
|
|
|
|
2022-02-25 15:51:48 +01:00
|
|
|
// articles du CGI
|
|
|
|
$articlesCGI = array();
|
|
|
|
foreach ($plugin->getConfig('articlesCGI') as $article)
|
|
|
|
{
|
|
|
|
if ($article->valeur == 1) {
|
|
|
|
$articlesCGI[] = $article->titre;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
$listeFichiers = array(); // fichiers pdf générés
|
2022-02-22 10:47:54 +01:00
|
|
|
foreach ($totalPersonnes as $idPersonne => $personne)
|
|
|
|
{
|
2022-01-29 15:03:41 +01:00
|
|
|
// générer un fichier par reçu
|
2022-02-22 10:47:54 +01:00
|
|
|
$html = new RecusHTML(
|
2022-01-29 15:03:41 +01:00
|
|
|
$nomAsso,
|
|
|
|
$adresseAsso,
|
2022-02-19 20:06:22 +01:00
|
|
|
$plugin->getConfig('objet_asso'),
|
2022-02-25 15:51:48 +01:00
|
|
|
$plugin->getConfig('nom_responsable'),
|
|
|
|
$plugin->getConfig('fonction_responsable'),
|
|
|
|
$articlesCGI,
|
2022-01-29 15:03:41 +01:00
|
|
|
$signature
|
|
|
|
);
|
|
|
|
// extraire les montants des versements
|
|
|
|
$lesMontants = array();
|
2022-02-18 12:51:13 +01:00
|
|
|
foreach ($personne->versements as $versement)
|
|
|
|
{
|
|
|
|
if (array_key_exists($versement->tauxReduction, $lesMontants)) {
|
|
|
|
$lesMontants[$versement->tauxReduction] += $versement->montant;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
$lesMontants[$versement->tauxReduction] = $versement->montant;
|
|
|
|
}
|
2022-01-29 15:03:41 +01:00
|
|
|
}
|
2022-02-22 10:47:54 +01:00
|
|
|
$html->imprimer_recu(
|
2022-01-29 15:03:41 +01:00
|
|
|
$_SESSION['annee_recu'],
|
|
|
|
$personne->id,
|
|
|
|
$personne->nomPrenom,
|
|
|
|
$lesMontants,
|
|
|
|
$personne->adresse,
|
2022-02-10 17:05:24 +01:00
|
|
|
$personne->codePostal,
|
|
|
|
$personne->ville
|
2022-01-29 15:03:41 +01:00
|
|
|
);
|
2022-02-19 20:06:22 +01:00
|
|
|
// fabriquer le fichier PDF
|
2022-02-22 10:47:54 +01:00
|
|
|
$nomPDF = \Garradin\Utils::filePDF($html->get());
|
|
|
|
// changer le nom du fichier
|
|
|
|
$nom = str_replace(' ', '_', $personne->nomPrenom);
|
|
|
|
$nom = str_replace("'", "", $nom);
|
|
|
|
$nomFichier = "recu_" . $_SESSION['annee_recu'] . "_" . $nom . ".pdf";
|
|
|
|
rename($nomPDF, $nomFichier);
|
2022-01-29 15:03:41 +01:00
|
|
|
// ajouter le nom du fichier à la liste pour mettre dans une archive
|
|
|
|
$listeFichiers[] = $nomFichier;
|
|
|
|
}
|
|
|
|
|
|
|
|
// faire une archive zip
|
|
|
|
$fichierZip = Utils::makeArchive(
|
|
|
|
$listeFichiers,
|
|
|
|
$_SESSION['annee_recu'],
|
|
|
|
PLUGIN_ROOT . "/zip"
|
|
|
|
);
|
|
|
|
|
|
|
|
/**
|
2022-02-10 17:05:24 +01:00
|
|
|
* Cumuler les versements de chaque personne par tarif
|
2022-02-17 10:21:33 +01:00
|
|
|
* @param tableau des versements triés par idTarif, idUser, date
|
|
|
|
* @return tableau des versements cumulés : id => Personne
|
2022-01-29 15:03:41 +01:00
|
|
|
*/
|
|
|
|
function cumulerVersements($versements)
|
|
|
|
{
|
|
|
|
$totalPersonnes = array();
|
|
|
|
$idTarif_courant = -1;
|
|
|
|
$idPersonne_courant = -1;
|
|
|
|
$totalVersements = 0;
|
2022-02-18 12:51:13 +01:00
|
|
|
foreach ($versements as $ligne)
|
|
|
|
{
|
2022-01-29 15:03:41 +01:00
|
|
|
if (
|
|
|
|
$ligne->idTarif != $idTarif_courant ||
|
|
|
|
$ligne->idUser != $idPersonne_courant
|
2022-02-18 12:51:13 +01:00
|
|
|
)
|
|
|
|
{
|
2022-02-10 17:05:24 +01:00
|
|
|
if ($idTarif_courant != -1) {
|
2022-02-18 12:51:13 +01:00
|
|
|
$totalPersonnes[$idPersonne_courant]->ajouterVersement(
|
2022-02-10 17:05:24 +01:00
|
|
|
$_SESSION['lesTarifs'][$idTarif_courant]->idActivite,
|
2022-01-29 15:03:41 +01:00
|
|
|
$idTarif_courant,
|
2022-02-18 12:51:13 +01:00
|
|
|
$totalVersements/100,
|
|
|
|
$_SESSION['tauxSelectionnes'][$idTarif_courant]
|
2022-01-29 15:03:41 +01:00
|
|
|
);
|
|
|
|
}
|
|
|
|
$idTarif_courant = $ligne->idTarif;
|
|
|
|
$idPersonne_courant = $ligne->idUser;
|
|
|
|
$totalVersements = $ligne->versement;
|
|
|
|
// créer les infos de la personne, sauf si elle est déjà présente
|
2022-02-10 17:05:24 +01:00
|
|
|
if (!array_key_exists($idPersonne_courant, $totalPersonnes))
|
|
|
|
{
|
2022-02-19 14:31:04 +01:00
|
|
|
$totalPersonnes["$idPersonne_courant"] = $_SESSION['membresDonateurs'][$ligne->idUser]->clone();
|
2022-01-29 15:03:41 +01:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
// cumuler versements
|
|
|
|
$totalVersements += $ligne->versement;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// et le dernier
|
2022-02-18 12:51:13 +01:00
|
|
|
$totalPersonnes[$idPersonne_courant]->ajouterVersement(
|
|
|
|
$_SESSION['lesTarifs'][$idTarif_courant]->idActivite,
|
|
|
|
$idTarif_courant,
|
|
|
|
$totalVersements/100,
|
|
|
|
$_SESSION['tauxSelectionnes'][$idTarif_courant]
|
|
|
|
);
|
2022-01-29 15:03:41 +01:00
|
|
|
|
|
|
|
return $totalPersonnes;
|
|
|
|
}
|