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-03-31 21:55:30 +02:00
|
|
|
|
use Garradin\UserTemplate\UserTemplate;
|
2022-03-24 19:00:39 +01:00
|
|
|
|
|
2022-01-29 15:03:41 +01:00
|
|
|
|
use Garradin\Plugin\RecusFiscaux\Utils;
|
|
|
|
|
use Garradin\Plugin\RecusFiscaux\Personne;
|
|
|
|
|
|
2022-03-31 21:55:30 +02:00
|
|
|
|
// signature
|
2022-02-25 13:23:30 +01:00
|
|
|
|
$signature =
|
2023-01-31 19:35:27 +01:00
|
|
|
|
(null !== $plugin->getConfig('signature')) ?
|
|
|
|
|
\KD2\HTTP::getScheme() . '://' . \KD2\HTTP::getHost() . WWW_URI . "/" . $plugin->getConfig('signature') :
|
|
|
|
|
"";
|
2022-02-25 13:23:30 +01:00
|
|
|
|
|
2022-03-23 11:00:37 +01:00
|
|
|
|
// logo
|
2023-01-31 19:35:27 +01:00
|
|
|
|
$config = Config::getInstance();
|
2022-03-31 21:55:30 +02:00
|
|
|
|
$logo_asso =
|
2023-01-31 19:35:27 +01:00
|
|
|
|
(null !== $config->fileURL('logo')) ?
|
|
|
|
|
$config->fileURL('logo') :
|
|
|
|
|
"";
|
2022-03-23 11:00:37 +01:00
|
|
|
|
|
2022-02-25 15:51:48 +01:00
|
|
|
|
// articles du CGI
|
|
|
|
|
$articlesCGI = array();
|
2023-01-31 19:35:27 +01:00
|
|
|
|
foreach ($plugin->getConfig('articlesCGI') as $article) {
|
2022-02-25 15:51:48 +01:00
|
|
|
|
if ($article->valeur == 1) {
|
|
|
|
|
$articlesCGI[] = $article->titre;
|
|
|
|
|
}
|
|
|
|
|
}
|
2022-03-31 21:55:30 +02:00
|
|
|
|
$nbArticles = count($articlesCGI);
|
2023-01-31 19:35:27 +01:00
|
|
|
|
if ($nbArticles == 1) {
|
2022-03-31 21:55:30 +02:00
|
|
|
|
$texteArticles = 'à l’article ' . $articlesCGI[0];
|
2023-01-31 19:35:27 +01:00
|
|
|
|
} elseif ($nbArticles > 1) {
|
2022-03-31 21:55:30 +02:00
|
|
|
|
$texteArticles = 'aux articles ';
|
|
|
|
|
for ($i = 0; $i < $nbArticles; ++$i) {
|
|
|
|
|
$texteArticles .= $articlesCGI[$i];
|
|
|
|
|
if ($i < $nbArticles - 2) {
|
|
|
|
|
$texteArticles .= ", ";
|
2023-01-31 19:35:27 +01:00
|
|
|
|
} else if ($i == $nbArticles - 2) {
|
2022-03-31 21:55:30 +02:00
|
|
|
|
$texteArticles .= " et ";
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2022-05-18 12:29:48 +02:00
|
|
|
|
// libellés pour les taux de réduction
|
|
|
|
|
$libelles_taux = Utils::getLignesReduction($plugin->getConfig('reduction'));
|
|
|
|
|
|
2023-01-31 19:35:27 +01:00
|
|
|
|
// numérotation des reçus
|
2023-01-23 18:53:53 +01:00
|
|
|
|
$configNum = $plugin->getConfig('numerotation');
|
|
|
|
|
|
2022-03-31 21:55:30 +02:00
|
|
|
|
// filtrer les versements sélectionnés
|
|
|
|
|
$lesLignes = f('selected');
|
|
|
|
|
$versementsSelectionnes = array();
|
|
|
|
|
foreach ($lesLignes as $ligne) {
|
|
|
|
|
$versementsSelectionnes[] = $_SESSION['lesVersements'][$ligne];
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// cumuler les versements
|
2023-01-31 19:35:27 +01:00
|
|
|
|
if ($_GET['type'] == 'personne') {
|
2022-03-31 21:55:30 +02:00
|
|
|
|
$totalPersonnes = cumulerVersementsPersonne($versementsSelectionnes);
|
2023-01-31 19:35:27 +01:00
|
|
|
|
} elseif ($_GET['type'] == 'activite') {
|
2022-03-31 21:55:30 +02:00
|
|
|
|
$totalPersonnes = cumulerVersementsTarif($versementsSelectionnes);
|
|
|
|
|
}
|
2022-03-24 19:00:39 +01:00
|
|
|
|
|
2022-03-31 11:10:24 +02:00
|
|
|
|
// générer les reçus
|
2023-01-31 19:35:27 +01:00
|
|
|
|
if ($_GET['format'] == 'pdf') {
|
|
|
|
|
genererRecusPDF($totalPersonnes,
|
|
|
|
|
$signature,
|
|
|
|
|
$logo_asso,
|
|
|
|
|
$texteArticles,
|
|
|
|
|
$plugin,
|
|
|
|
|
$configNum,
|
|
|
|
|
$libelles_taux
|
|
|
|
|
);
|
|
|
|
|
} else if ($_GET['format'] == 'print') {
|
|
|
|
|
generererRecusHTML($tpl,
|
|
|
|
|
$totalPersonnes,
|
|
|
|
|
$signature,
|
|
|
|
|
$logo_asso,
|
|
|
|
|
$texteArticles,
|
|
|
|
|
$plugin,
|
|
|
|
|
$configNum,
|
|
|
|
|
$libelles_taux
|
|
|
|
|
);
|
|
|
|
|
} else {
|
|
|
|
|
// Erreur : format inconnu ; ne devrait pas se produire
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function genererRecusPDF($totalPersonnes,
|
|
|
|
|
$signature,
|
|
|
|
|
$logo_asso,
|
|
|
|
|
$texteArticles,
|
|
|
|
|
$plugin,
|
|
|
|
|
$configNum,
|
|
|
|
|
$libelles_taux
|
|
|
|
|
)
|
2022-02-22 10:47:54 +01:00
|
|
|
|
{
|
2023-01-31 19:35:27 +01:00
|
|
|
|
$listeFichiersPDF = array();
|
|
|
|
|
$fmt = new \NumberFormatter('fr_FR', \NumberFormatter::SPELLOUT);
|
|
|
|
|
$prefixeNum = getNumPrefixe($configNum);
|
|
|
|
|
$numero_sequentiel = getNumSequentiel($configNum);
|
|
|
|
|
foreach ($totalPersonnes as $idPersonne => $personne) {
|
|
|
|
|
$tpl = new UserTemplate();
|
|
|
|
|
$tpl->setSource(PLUGIN_ROOT . '/templates/recu.skel');
|
2022-03-25 16:09:55 +01:00
|
|
|
|
|
2023-01-31 19:35:27 +01:00
|
|
|
|
$tpl->assignArray(compact('signature', 'logo_asso', 'texteArticles'));
|
|
|
|
|
$tpl->assign('objet_asso', $plugin->getConfig('objet_asso'));
|
|
|
|
|
$tpl->assign('nom_responsable', $plugin->getConfig('nom_responsable'));
|
|
|
|
|
$tpl->assign('fonction_responsable', $plugin->getConfig('fonction_responsable'));
|
|
|
|
|
$tpl->assign('ville_asso', $plugin->getConfig('ville_asso'));
|
|
|
|
|
$tpl->assign('nom', $personne->nomPrenom);
|
|
|
|
|
$tpl->assign('adresse', $personne->adresse);
|
|
|
|
|
$tpl->assign('code_postal', $personne->codePostal);
|
|
|
|
|
$tpl->assign('ville', $personne->ville);
|
|
|
|
|
$tpl->assign('date', date("j/m/Y"));
|
2022-03-31 21:55:30 +02:00
|
|
|
|
|
2023-01-31 19:35:27 +01:00
|
|
|
|
// numéro de reçu
|
|
|
|
|
$tpl->assign('numero',
|
|
|
|
|
faireNumeroRecu($prefixeNum,
|
|
|
|
|
$configNum->membre,
|
|
|
|
|
$personne->numero,
|
|
|
|
|
$numero_sequentiel));
|
2023-01-23 18:53:53 +01:00
|
|
|
|
|
2023-01-31 19:35:27 +01:00
|
|
|
|
// adresse de courriel
|
|
|
|
|
if ($plugin->getConfig('imprimerCourriel')) {
|
|
|
|
|
$courriel = $personne->courriel;
|
|
|
|
|
} else {
|
|
|
|
|
$courriel = "";
|
|
|
|
|
}
|
|
|
|
|
$tpl->assign('courriel', $courriel);
|
2022-03-31 21:55:30 +02:00
|
|
|
|
|
2023-01-31 19:35:27 +01:00
|
|
|
|
// les versements
|
|
|
|
|
$tpl->registerSection(
|
|
|
|
|
'versements',
|
|
|
|
|
function () use ($personne, $libelles_taux, $fmt) {
|
|
|
|
|
foreach ($personne->versements as $taux => $versement) {
|
|
|
|
|
$ligne['montant'] = $versement->montant;
|
|
|
|
|
$ligne['euros'] = $fmt->format((int)($versement->montant / 100));
|
|
|
|
|
if ($versement->montant % 100 != 0) {
|
|
|
|
|
$ligne['cents'] = $fmt->format($versement->montant % 100);
|
|
|
|
|
} else {
|
|
|
|
|
$ligne['cents'] = "";
|
|
|
|
|
}
|
|
|
|
|
$ligne['libelle'] = $libelles_taux[$taux];
|
|
|
|
|
$ligne['dateMin'] = date("d/m/Y", $versement->dateMin);
|
|
|
|
|
$ligne['dateMax'] = date("d/m/Y", $versement->dateMax);
|
|
|
|
|
yield $ligne;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
);
|
2022-03-31 21:55:30 +02:00
|
|
|
|
|
2023-01-31 19:35:27 +01:00
|
|
|
|
// mentions complémentaires
|
|
|
|
|
$complements = mentionsComplémentaires();
|
2022-03-31 21:55:30 +02:00
|
|
|
|
|
2023-01-31 19:35:27 +01:00
|
|
|
|
$tpl->registerSection(
|
|
|
|
|
'informations',
|
|
|
|
|
function () use ($complements) {
|
|
|
|
|
foreach ($complements as $elem) {
|
|
|
|
|
yield (array) $elem;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
// fabriquer le fichier PDF
|
|
|
|
|
genererPDF($tpl->fetch(), $personne->nomPrenom, $listeFichiersPDF);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// faire une archive zip
|
|
|
|
|
$fichierZip = Utils::makeArchive(
|
|
|
|
|
$listeFichiersPDF,
|
|
|
|
|
$_SESSION['annee_recu'],
|
|
|
|
|
PLUGIN_ROOT . "/zip"
|
|
|
|
|
);
|
2022-01-29 15:03:41 +01:00
|
|
|
|
|
2023-01-31 19:35:27 +01:00
|
|
|
|
//supprimer les fichiers pdf (utile ?)
|
|
|
|
|
foreach ($listeFichiersPDF as $f) {
|
|
|
|
|
// Utils::safe_unlink($f);
|
|
|
|
|
}
|
|
|
|
|
} // genererRecusPDF
|
2022-01-29 15:03:41 +01:00
|
|
|
|
|
2023-01-31 19:35:27 +01:00
|
|
|
|
function generererRecusHTML($tpl,
|
|
|
|
|
$totalPersonnes,
|
|
|
|
|
$signature,
|
|
|
|
|
$logo_asso,
|
|
|
|
|
$texteArticles,
|
|
|
|
|
$plugin,
|
|
|
|
|
$configNum,
|
|
|
|
|
$libelles_taux
|
|
|
|
|
)
|
2023-01-23 18:53:53 +01:00
|
|
|
|
{
|
2023-01-31 19:35:27 +01:00
|
|
|
|
$tpl->register_function('afficher_numero_recu', function($params)
|
|
|
|
|
{
|
|
|
|
|
$prefixeNum = $params['prefixe'];
|
|
|
|
|
$membre = $params['membre'];
|
|
|
|
|
$numero_personne = $params['numero_personne'];
|
|
|
|
|
$numero_sequentiel = $params['numero_sequentiel'];
|
|
|
|
|
$numero = faireNumeroRecu($prefixeNum,
|
|
|
|
|
$membre,
|
|
|
|
|
$numero_personne,
|
|
|
|
|
$numero_sequentiel);
|
|
|
|
|
$out = sprintf('
|
|
|
|
|
<p class="important">Reçu %s</p>',
|
|
|
|
|
$numero
|
|
|
|
|
);
|
|
|
|
|
return $out;
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
$tpl->assign(compact(
|
|
|
|
|
'totalPersonnes',
|
|
|
|
|
'logo_asso',
|
|
|
|
|
'signature',
|
|
|
|
|
'libelles_taux',
|
|
|
|
|
'texteArticles'
|
|
|
|
|
));
|
|
|
|
|
$tpl->assign('prefixeNum', getNumPrefixe($configNum));
|
|
|
|
|
$tpl->assign('membre', $configNum->membre);
|
|
|
|
|
$tpl->assign('numero_sequentiel', getNumSequentiel($configNum));
|
|
|
|
|
$tpl->assign('nom_asso', Config::getInstance()->get('nom_asso'));
|
|
|
|
|
$tpl->assign('adresse_asso', Config::getInstance()->get('adresse_asso'));
|
|
|
|
|
$tpl->assign('objet_asso', $plugin->getConfig('objet_asso'));
|
|
|
|
|
$tpl->assign('courriel', $plugin->getConfig('imprimerCourriel'));
|
|
|
|
|
$tpl->assign('complements', mentionsComplémentaires());
|
|
|
|
|
$tpl->assign('ville_asso', $plugin->getConfig('ville_asso'));
|
|
|
|
|
$tpl->assign('date', date("j/m/Y"));
|
|
|
|
|
$tpl->assign('nom_responsable', $plugin->getConfig('nom_responsable'));
|
|
|
|
|
$tpl->assign('fonction_responsable', $plugin->getConfig('fonction_responsable'));
|
|
|
|
|
|
|
|
|
|
$tpl->assign('plugin_css', ['previs_recu.css', 'imprimer_recu.css']);
|
|
|
|
|
$tpl->display(PLUGIN_ROOT . '/templates/recu_html.tpl');
|
|
|
|
|
} // generererRecusHTML
|
2022-05-17 10:41:55 +02:00
|
|
|
|
|
2022-03-31 11:10:24 +02:00
|
|
|
|
/**
|
|
|
|
|
* Cumuler les versements de chaque personne
|
|
|
|
|
* @param tableau des versements triés par idUser, date
|
|
|
|
|
* @return tableau des versements cumulés : id => Personne
|
|
|
|
|
*/
|
|
|
|
|
function cumulerVersementsPersonne($versements)
|
|
|
|
|
{
|
|
|
|
|
$totalPersonnes = array();
|
|
|
|
|
$idPersonneCourant = -1;
|
2022-05-20 21:43:38 +02:00
|
|
|
|
$dateMin = PHP_INT_MAX;
|
|
|
|
|
$dateMax = -1;
|
2022-03-31 11:10:24 +02:00
|
|
|
|
$totalVersements = 0;
|
2023-01-31 19:35:27 +01:00
|
|
|
|
foreach ($versements as $ligne) {
|
|
|
|
|
if ($ligne->idUser != $idPersonneCourant) {
|
2022-03-31 11:10:24 +02:00
|
|
|
|
// changement de personne
|
2023-01-31 19:35:27 +01:00
|
|
|
|
if ($idPersonneCourant != -1) {
|
2022-03-31 11:10:24 +02:00
|
|
|
|
$totalPersonnes[$idPersonneCourant]->ajouterVersement(
|
|
|
|
|
$_SESSION['taux_reduction'],
|
2022-05-20 21:43:38 +02:00
|
|
|
|
$totalVersements,
|
|
|
|
|
$dateMin,
|
|
|
|
|
$dateMax
|
2022-03-31 11:10:24 +02:00
|
|
|
|
);
|
|
|
|
|
}
|
2022-05-20 21:43:38 +02:00
|
|
|
|
$dateMin = strtotime($ligne->date);
|
|
|
|
|
$dateMax = strtotime($ligne->date);
|
2022-03-31 11:10:24 +02:00
|
|
|
|
$idPersonneCourant = $ligne->idUser;
|
|
|
|
|
$totalVersements = $ligne->versement;
|
|
|
|
|
// créer les infos de la personne, sauf si elle est déjà présente
|
2023-01-31 19:35:27 +01:00
|
|
|
|
if (!array_key_exists($idPersonneCourant, $totalPersonnes)) {
|
|
|
|
|
$totalPersonnes[$idPersonneCourant] = $_SESSION['membresDonateurs'][$ligne->idUser]->clone();
|
2022-03-31 11:10:24 +02:00
|
|
|
|
}
|
|
|
|
|
} else {
|
2022-05-20 21:43:38 +02:00
|
|
|
|
// même personne : cumuler versements et mettre à jour les dates
|
2022-03-31 11:10:24 +02:00
|
|
|
|
$totalVersements += $ligne->versement;
|
2023-01-31 19:35:27 +01:00
|
|
|
|
if (strtotime($ligne->date) < $dateMin) {
|
|
|
|
|
$dateMin = strtotime($ligne->date);
|
|
|
|
|
}
|
|
|
|
|
if (strtotime($ligne->date) > $dateMax) {
|
|
|
|
|
$dateMax = strtotime($ligne->date);
|
|
|
|
|
}
|
2022-03-31 11:10:24 +02:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
// et le dernier
|
|
|
|
|
$totalPersonnes[$idPersonneCourant]->ajouterVersement(
|
|
|
|
|
$_SESSION['taux_reduction'],
|
2022-05-20 21:43:38 +02:00
|
|
|
|
$totalVersements,
|
|
|
|
|
$dateMin,
|
|
|
|
|
$dateMax
|
2022-03-31 11:10:24 +02:00
|
|
|
|
);
|
|
|
|
|
return $totalPersonnes;
|
2023-01-31 19:35:27 +01:00
|
|
|
|
} // cumulerVersementsPersonne
|
2022-03-31 11:10:24 +02:00
|
|
|
|
|
2022-01-29 15:03:41 +01:00
|
|
|
|
/**
|
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
|
|
|
|
*/
|
2022-03-31 11:10:24 +02:00
|
|
|
|
function cumulerVersementsTarif($versements)
|
2022-01-29 15:03:41 +01:00
|
|
|
|
{
|
|
|
|
|
$totalPersonnes = array();
|
2022-03-24 19:00:39 +01:00
|
|
|
|
$idTarifCourant = -1;
|
|
|
|
|
$idPersonneCourant = -1;
|
2022-05-18 21:38:59 +02:00
|
|
|
|
$idCompteCourant = -1;
|
2022-05-20 21:43:38 +02:00
|
|
|
|
$dateMin = PHP_INT_MAX;
|
|
|
|
|
$dateMax = -1;
|
2022-01-29 15:03:41 +01:00
|
|
|
|
$totalVersements = 0;
|
2023-01-31 19:35:27 +01:00
|
|
|
|
foreach ($versements as $ligne) {
|
2022-01-29 15:03:41 +01:00
|
|
|
|
if (
|
2022-05-18 21:38:59 +02:00
|
|
|
|
$ligne->idTarif != $idTarifCourant ||
|
|
|
|
|
$ligne->idUser != $idPersonneCourant ||
|
|
|
|
|
$ligne->idCompte != $idCompteCourant
|
2023-01-31 19:35:27 +01:00
|
|
|
|
) {
|
|
|
|
|
if ($idTarifCourant != -1) {
|
2022-05-20 21:43:38 +02:00
|
|
|
|
// changement de tarif, de personne ou de compte
|
2022-05-18 21:38:59 +02:00
|
|
|
|
$tarifCompte = ($idTarifCourant == 0) ?
|
2023-01-31 19:35:27 +01:00
|
|
|
|
$idCompteCourant :
|
|
|
|
|
$idTarifCourant . "_" . $idCompteCourant;
|
2022-03-24 19:00:39 +01:00
|
|
|
|
$totalPersonnes[$idPersonneCourant]->ajouterVersement(
|
2022-05-18 21:38:59 +02:00
|
|
|
|
$_SESSION['tauxSelectionnes'][$tarifCompte],
|
2022-05-20 21:43:38 +02:00
|
|
|
|
$totalVersements,
|
|
|
|
|
$dateMin,
|
|
|
|
|
$dateMax
|
2022-01-29 15:03:41 +01:00
|
|
|
|
);
|
|
|
|
|
}
|
2022-05-20 21:43:38 +02:00
|
|
|
|
$dateMin = strtotime($ligne->date);
|
|
|
|
|
$dateMax = strtotime($ligne->date);
|
2022-05-18 21:38:59 +02:00
|
|
|
|
$idTarifCourant = $ligne->idTarif;
|
2022-03-24 19:00:39 +01:00
|
|
|
|
$idPersonneCourant = $ligne->idUser;
|
2022-05-18 21:38:59 +02:00
|
|
|
|
$idCompteCourant = $ligne->idCompte;
|
|
|
|
|
$totalVersements = $ligne->versement;
|
2022-01-29 15:03:41 +01:00
|
|
|
|
// créer les infos de la personne, sauf si elle est déjà présente
|
2023-01-31 19:35:27 +01:00
|
|
|
|
if (!array_key_exists($idPersonneCourant, $totalPersonnes)) {
|
|
|
|
|
$totalPersonnes[$idPersonneCourant] = $_SESSION['membresDonateurs'][$ligne->idUser]->clone();
|
2022-01-29 15:03:41 +01:00
|
|
|
|
}
|
|
|
|
|
} else {
|
2022-05-20 21:43:38 +02:00
|
|
|
|
// même personne : cumuler versements et mettre à jour les dates
|
2022-01-29 15:03:41 +01:00
|
|
|
|
$totalVersements += $ligne->versement;
|
2023-01-31 19:35:27 +01:00
|
|
|
|
if (strtotime($ligne->date) < $dateMin) {
|
|
|
|
|
$dateMin = strtotime($ligne->date);
|
|
|
|
|
}
|
|
|
|
|
if (strtotime($ligne->date) > $dateMax) {
|
|
|
|
|
$dateMax = strtotime($ligne->date);
|
|
|
|
|
}
|
2022-01-29 15:03:41 +01:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
// et le dernier
|
2022-05-18 21:38:59 +02:00
|
|
|
|
$tarifCompte = ($idTarifCourant == 0) ?
|
2023-01-31 19:35:27 +01:00
|
|
|
|
$idCompteCourant :
|
|
|
|
|
$idTarifCourant . "_" . $idCompteCourant;
|
2022-03-24 19:00:39 +01:00
|
|
|
|
$totalPersonnes[$idPersonneCourant]->ajouterVersement(
|
2022-05-18 21:38:59 +02:00
|
|
|
|
$_SESSION['tauxSelectionnes'][$tarifCompte],
|
2022-05-20 21:43:38 +02:00
|
|
|
|
$totalVersements,
|
|
|
|
|
$dateMin,
|
|
|
|
|
$dateMax
|
2022-02-18 12:51:13 +01:00
|
|
|
|
);
|
2022-01-29 15:03:41 +01:00
|
|
|
|
return $totalPersonnes;
|
2023-01-31 19:35:27 +01:00
|
|
|
|
} // cumulerVersementsTarif
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* génère un fichier PDF à partir d'un document html
|
|
|
|
|
* ajoute son nom à la liste de fichiers
|
|
|
|
|
*/
|
|
|
|
|
function genererPDF($docHTML, $nomPersonne, &$listeFichiersPDF)
|
|
|
|
|
{
|
|
|
|
|
// fabriquer le fichier PDF
|
|
|
|
|
$nomPDF = \Garradin\Utils::filePDF($docHTML);
|
|
|
|
|
// changer le nom du fichier
|
|
|
|
|
$nom = str_replace(' ', '_', $nomPersonne);
|
|
|
|
|
$nom = str_replace("'", "", $nom);
|
|
|
|
|
$nomFichier = sprintf(
|
|
|
|
|
'%s/recu_%s_%s.pdf',
|
|
|
|
|
dirname($nomPDF),
|
|
|
|
|
$_SESSION['annee_recu'],
|
|
|
|
|
$nom
|
|
|
|
|
);
|
|
|
|
|
rename($nomPDF, $nomFichier);
|
|
|
|
|
// ajouter le nom du fichier à la liste pour mettre dans une archive
|
|
|
|
|
$listeFichiersPDF[] = $nomFichier;
|
|
|
|
|
} // genererPDF
|
|
|
|
|
|
|
|
|
|
function faireNumeroRecu($prefixeNum, $membre, $numero, &$numero_sequentiel)
|
|
|
|
|
{
|
|
|
|
|
if (isset($membre) && $membre) {
|
|
|
|
|
if ($prefixeNum != "") {
|
|
|
|
|
$prefixeNum .= "-";
|
|
|
|
|
}
|
|
|
|
|
$prefixeNum .= $numero;
|
|
|
|
|
}
|
|
|
|
|
if ($numero_sequentiel) {
|
|
|
|
|
if ($prefixeNum != "") {
|
|
|
|
|
$prefixeNum .= "-";
|
|
|
|
|
}
|
|
|
|
|
$prefixeNum .= $numero_sequentiel;
|
|
|
|
|
++$numero_sequentiel;
|
|
|
|
|
}
|
|
|
|
|
return $prefixeNum;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* renvoyer le préfixe du numéro de reçu
|
|
|
|
|
*/
|
|
|
|
|
function getNumPrefixe($configNum)
|
|
|
|
|
{
|
|
|
|
|
$prefixeNum = "";
|
|
|
|
|
if (isset($configNum->prefixe) && $configNum->prefixe != "") {
|
|
|
|
|
$prefixeNum = $configNum->prefixe;
|
|
|
|
|
}
|
|
|
|
|
if (isset($configNum->annee) && $configNum->annee) {
|
|
|
|
|
if ($prefixeNum != "") {
|
|
|
|
|
$prefixeNum .= "-";
|
|
|
|
|
}
|
|
|
|
|
$prefixeNum .= $_SESSION['annee_recu'];
|
|
|
|
|
}
|
|
|
|
|
return $prefixeNum;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* renvoyer le premier numéro de la numérotation séquentielle
|
|
|
|
|
* renvoie false si pas de numérotation séquentielle
|
|
|
|
|
*/
|
|
|
|
|
function getNumSequentiel($configNum)
|
|
|
|
|
{
|
|
|
|
|
if (isset($configNum->sequentiel) && $configNum->sequentiel) {
|
|
|
|
|
if (isset($configNum->valeur_init) && $configNum->valeur_init != "") {
|
|
|
|
|
$numero_sequentiel = $configNum->valeur_init;
|
|
|
|
|
} else {
|
|
|
|
|
$numero_sequentiel = 1;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return isset($numero_sequentiel) ? $numero_sequentiel : false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
function mentionsComplémentaires()
|
|
|
|
|
{
|
|
|
|
|
$donnees = array(
|
|
|
|
|
'Nature du don : ' => "Numéraire",
|
|
|
|
|
'Mode de versement : ' => "chèque et/ou virement"
|
|
|
|
|
);
|
|
|
|
|
$complements = array();
|
|
|
|
|
foreach ($donnees as $titre => $libelle) {
|
|
|
|
|
$elem = new \stdClass();
|
|
|
|
|
$elem->titre = $titre;
|
|
|
|
|
$elem->libelle = $libelle;
|
|
|
|
|
$complements[] = $elem;
|
|
|
|
|
}
|
|
|
|
|
return $complements;
|
2022-01-29 15:03:41 +01:00
|
|
|
|
}
|