2022-02-03 11:05:01 +01:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace Garradin;
|
|
|
|
|
2022-02-22 10:47:54 +01:00
|
|
|
use Garradin\Plugin\RecusFiscaux\RecusHTML;
|
2022-02-03 11:05:01 +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-02-03 11:05:01 +01:00
|
|
|
$versementsSelectionnes[] = $_SESSION['lesVersementsTotaux'][$ligne];
|
|
|
|
}
|
|
|
|
|
|
|
|
// générer les reçus
|
|
|
|
$nomAsso = Utils::getNomAsso();
|
|
|
|
$adresseAsso = Utils::getAdresseAsso();
|
|
|
|
|
2022-02-24 11:28:08 +01:00
|
|
|
$signature =
|
|
|
|
(null !== $plugin->getConfig('signature')) ?
|
2022-02-25 13:23:30 +01:00
|
|
|
\Garradin\Files\Files::get($plugin->getConfig('signature'))->fullpath() :
|
|
|
|
\Garradin\WWW_URL . "plugin/recusFiscaux/default_signature.png";
|
2022-02-24 11:28:08 +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;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
$listeFichiers = array(); // fichiers pdf générés
|
2022-02-19 20:06:22 +01:00
|
|
|
foreach ($versementsSelectionnes as $ligne)
|
|
|
|
{
|
2022-02-03 11:05:01 +01:00
|
|
|
// générer un fichier par reçu
|
2022-02-22 11:26:45 +01:00
|
|
|
$html = new RecusHTML(
|
2022-02-03 11:05:01 +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-02-03 11:05:01 +01:00
|
|
|
$signature
|
|
|
|
);
|
2022-02-19 20:06:22 +01:00
|
|
|
|
2022-02-03 11:05:01 +01:00
|
|
|
// extraire les montants des versements
|
2022-02-18 12:51:13 +01:00
|
|
|
$lesMontants[$_SESSION['taux_reduction']] = $ligne->versement/100;
|
2022-02-22 11:26:45 +01:00
|
|
|
$personne = $_SESSION['membresDonateurs'][$ligne->idUser];
|
|
|
|
$html->imprimer_recu(
|
2022-02-03 11:05:01 +01:00
|
|
|
$_SESSION['annee_recu'],
|
2022-02-22 11:26:45 +01:00
|
|
|
$personne->id,
|
|
|
|
$personne->nomPrenom,
|
2022-02-18 12:51:13 +01:00
|
|
|
$lesMontants,
|
2022-02-22 11:26:45 +01:00
|
|
|
$personne->adresse,
|
|
|
|
$personne->codePostal,
|
|
|
|
$personne->ville
|
2022-02-03 11:05:01 +01:00
|
|
|
);
|
2022-02-19 20:06:22 +01:00
|
|
|
// fabriquer le fichier PDF
|
2022-02-22 11:26:45 +01:00
|
|
|
$nomPDF = \Garradin\Utils::filePDF($html->get());
|
2022-02-22 10:47:54 +01:00
|
|
|
// changer le nom du fichier
|
2022-02-22 11:26:45 +01:00
|
|
|
$nom = str_replace(' ', '_', $personne->nomPrenom);
|
2022-02-22 10:47:54 +01:00
|
|
|
$nom = str_replace("'", "", $nom);
|
|
|
|
$nomFichier = "recu_" . $_SESSION['annee_recu'] . "_" . $nom . ".pdf";
|
|
|
|
rename($nomPDF, $nomFichier);
|
2022-02-03 11:05:01 +01:00
|
|
|
// ajouter le nom du fichier à la liste pour mettre dans une archive
|
|
|
|
$listeFichiers[] = $nomFichier;
|
|
|
|
}
|
2022-02-19 20:06:22 +01:00
|
|
|
|
2022-02-03 11:05:01 +01:00
|
|
|
// faire une archive zip
|
|
|
|
$fichierZip = Utils::makeArchive(
|
|
|
|
$listeFichiers,
|
|
|
|
$_SESSION['annee_recu'],
|
|
|
|
PLUGIN_ROOT . "/zip"
|
|
|
|
);
|