2022-01-29 15:03:41 +01:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace Garradin;
|
|
|
|
|
2022-03-24 19:00:39 +01:00
|
|
|
use Garradin\Files\Files;
|
|
|
|
use Garradin\Entities\Files\File;
|
|
|
|
|
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];
|
|
|
|
}
|
2022-03-24 19:00:39 +01:00
|
|
|
|
|
|
|
// cumuler les versements d'une personne : id => Personne
|
2022-01-29 15:03:41 +01:00
|
|
|
$totalPersonnes = cumulerVersements($versementsSelectionnes);
|
2022-03-25 11:27:03 +01:00
|
|
|
error_log("totalPersonnes = " . print_r($totalPersonnes, true));
|
2022-01-29 15:03:41 +01:00
|
|
|
|
2022-03-23 11:00:37 +01:00
|
|
|
// informations pour les reçus
|
2022-03-24 19:00:39 +01:00
|
|
|
$nomAsso = $config->get('nom_asso');
|
|
|
|
$adresseAsso = $config->get('adresse_asso');
|
2022-02-25 13:23:30 +01:00
|
|
|
$signature =
|
2022-03-25 10:08:46 +01:00
|
|
|
(null !== $plugin->getConfig('signature')) ?
|
|
|
|
Files::get($plugin->getConfig('signature'))->fullpath() :
|
2022-03-04 11:11:00 +01:00
|
|
|
"";
|
2022-02-25 13:23:30 +01:00
|
|
|
|
2022-03-23 11:00:37 +01:00
|
|
|
// logo
|
2022-03-24 19:00:39 +01:00
|
|
|
$logo_file = Files::get(File::CONTEXT_CONFIG . '/logo.png');
|
2022-03-23 11:00:37 +01:00
|
|
|
$logoAsso =
|
2022-03-25 10:08:46 +01:00
|
|
|
(null !== $logo_file) ?
|
|
|
|
Files::get($logo_file->path)->fullpath() :
|
2022-03-24 19:00:39 +01:00
|
|
|
"";
|
2022-03-23 11:00:37 +01:00
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
}
|
2022-03-24 19:00:39 +01:00
|
|
|
|
2022-02-25 15:51:48 +01:00
|
|
|
$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-03-23 11:00:37 +01:00
|
|
|
$logoAsso,
|
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'),
|
2022-03-18 09:30:41 +01:00
|
|
|
$plugin->getConfig('ville_asso'),
|
2022-02-25 15:51:48 +01:00
|
|
|
$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();
|
2022-03-24 19:00:39 +01:00
|
|
|
$idTarifCourant = -1;
|
|
|
|
$idPersonneCourant = -1;
|
2022-01-29 15:03:41 +01:00
|
|
|
$totalVersements = 0;
|
2022-02-18 12:51:13 +01:00
|
|
|
foreach ($versements as $ligne)
|
|
|
|
{
|
2022-01-29 15:03:41 +01:00
|
|
|
if (
|
2022-03-24 19:00:39 +01:00
|
|
|
$ligne->idTarif != $idTarifCourant ||
|
|
|
|
$ligne->idUser != $idPersonneCourant
|
2022-02-18 12:51:13 +01:00
|
|
|
)
|
|
|
|
{
|
2022-03-24 19:00:39 +01:00
|
|
|
if ($idTarifCourant != -1) {
|
|
|
|
$totalPersonnes[$idPersonneCourant]->ajouterVersement(
|
|
|
|
$_SESSION['lesTarifs'][$idTarifCourant]->idActivite,
|
|
|
|
$idTarifCourant,
|
2022-02-18 12:51:13 +01:00
|
|
|
$totalVersements/100,
|
2022-03-24 19:00:39 +01:00
|
|
|
$_SESSION['tauxSelectionnes'][$idTarifCourant]
|
2022-01-29 15:03:41 +01:00
|
|
|
);
|
|
|
|
}
|
2022-03-24 19:00:39 +01:00
|
|
|
$idTarifCourant = $ligne->idTarif;
|
|
|
|
$idPersonneCourant = $ligne->idUser;
|
2022-01-29 15:03:41 +01:00
|
|
|
$totalVersements = $ligne->versement;
|
|
|
|
// créer les infos de la personne, sauf si elle est déjà présente
|
2022-03-24 19:00:39 +01:00
|
|
|
if (!array_key_exists($idPersonneCourant, $totalPersonnes))
|
2022-02-10 17:05:24 +01:00
|
|
|
{
|
2022-03-25 11:27:03 +01:00
|
|
|
$totalPersonnes["$idPersonneCourant"] = $_SESSION['membresDonateurs'][$ligne->idUser]->clone();
|
2022-01-29 15:03:41 +01:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
// cumuler versements
|
|
|
|
$totalVersements += $ligne->versement;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// et le dernier
|
2022-03-24 19:00:39 +01:00
|
|
|
$totalPersonnes[$idPersonneCourant]->ajouterVersement(
|
|
|
|
$_SESSION['lesTarifs'][$idTarifCourant]->idActivite,
|
|
|
|
$idTarifCourant,
|
2022-02-18 12:51:13 +01:00
|
|
|
$totalVersements/100,
|
2022-03-24 19:00:39 +01:00
|
|
|
$_SESSION['tauxSelectionnes'][$idTarifCourant]
|
2022-02-18 12:51:13 +01:00
|
|
|
);
|
2022-01-29 15:03:41 +01:00
|
|
|
return $totalPersonnes;
|
|
|
|
}
|