Compare commits
No commits in common. "master" and "bug" have entirely different histories.
18
README.md
18
README.md
|
@ -1,18 +1,16 @@
|
|||
# Plugin reçus fiscaux pour Paheko
|
||||
# Plugin reçus fiscaux pour Garradin
|
||||
|
||||
Plugin de reçus fiscaux pour le logiciel de gestion d'association [Paheko](https://paheko.cloud).
|
||||
Plugin de reçus fiscaux pour le logiciel de gestion d'association Garradin (https://garradin.eu/ - https://fossil.kd2.org/garradin).
|
||||
Source : https://git.roflcopter.fr/lesanges/recus-fiscaux-garradin
|
||||
|
||||
## Installation
|
||||
|
||||
Télécharger la [version la plus récente](https://git.roflcopter.fr/lesanges/recusfiscaux/releases) au format tar.gz, supprimer le numéro de version du nom de l'archive et la copier dans le répertoire data/plugins de Paheko
|
||||
Vous pouvez télécharger [l'archive .tar.gz](https://git.roflcopter.fr/lesanges/recus-fiscaux-garradin/-/archive/master/recus-fiscaux-garradin-master.tar.gz), et la copier ou la désarchiver dans le dossier plugins de Garradin.
|
||||
|
||||
## Fonctionnalités
|
||||
- Créer des reçus fiscaux pour les dons des membres
|
||||
- reçu par activité et tarif : un, plusieurs ou tous
|
||||
- reçu par personne : une, plusieurs ou tous
|
||||
- reçu par activité et tarif : 1, plusieurs ou tous
|
||||
- reçu par personne : 1, plusieurs ou tous
|
||||
- distinguer les différents taux de réduction
|
||||
- génération des reçus au format PDF avec un générateur PDF externe
|
||||
ou impression depuis le navigateur
|
||||
|
||||
## Configuration
|
||||
- association
|
||||
|
@ -25,6 +23,4 @@ Télécharger la [version la plus récente](https://git.roflcopter.fr/lesanges/r
|
|||
- signature (image)
|
||||
- autres
|
||||
- ville (précède la date sur le formulaire)
|
||||
- paramétrage du numéro de reçu (préfixe quelconque, année fiscale, numéro de membre ou séquentiel)
|
||||
- possibilité d'imprimer l'adresse de courriel
|
||||
- choix et ordre des champs pour le nom et prénom (le libellé doit contenir le terme 'nom', casse indifférente)
|
||||
- champs pour le nom et prénom (le libellé doit contenir le terme 'nom', casse indifférente)
|
||||
|
|
217
admin/action.php
217
admin/action.php
|
@ -1,217 +0,0 @@
|
|||
<?php
|
||||
|
||||
namespace Paheko;
|
||||
session_start();
|
||||
|
||||
use Paheko\Plugin\RecusFiscaux\Utils;
|
||||
|
||||
// ------------------------------------------------------------------------
|
||||
// opérations communes
|
||||
// ------------------------------------------------------------------------
|
||||
|
||||
// champs pour le nom et prénom
|
||||
$confNoms = Utils::getChampsNom($config, $plugin);
|
||||
uasort($confNoms, function ($a, $b)
|
||||
{
|
||||
return $a->position - $b->position;
|
||||
});
|
||||
$champsNom = array();
|
||||
foreach ($confNoms as $nom => $champ)
|
||||
{
|
||||
if ($champ->position != 0) { $champsNom[] = $nom; }
|
||||
}
|
||||
|
||||
// membres donateurs
|
||||
$_SESSION['membresDonateurs'] = Utils::getDonateurs($_SESSION['annee_recu'],
|
||||
$champsNom);
|
||||
|
||||
// comparaison de lignes de versements
|
||||
// comparer 2 lignes selon le nom
|
||||
function comparerNoms($ligne1, $ligne2)
|
||||
{
|
||||
return
|
||||
$_SESSION['membresDonateurs'][$ligne1->idUser]->rang
|
||||
-
|
||||
$_SESSION['membresDonateurs'][$ligne2->idUser]->rang;
|
||||
}
|
||||
|
||||
// comparer 2 activités par leur libellé
|
||||
function comparerActivites($ligne1, $ligne2)
|
||||
{
|
||||
return strcoll(
|
||||
$_SESSION['lesActivites'][$_SESSION['lesTarifs'][$ligne1->idTarif]->idActivite]->label,
|
||||
$_SESSION['lesActivites'][$_SESSION['lesTarifs'][$ligne2->idTarif]->idActivite]->label);
|
||||
}
|
||||
|
||||
// comparer 2 lignes selon la date
|
||||
function comparerDate($ligne1, $ligne2)
|
||||
{
|
||||
return
|
||||
strtotime($ligne1->date) - strtotime($ligne2->date);
|
||||
}
|
||||
|
||||
// comparer 2 lignes selon un champ numérique entier
|
||||
function comparerChamp($ligne1, $ligne2, $champ)
|
||||
{
|
||||
return $ligne1->$champ - $ligne2->$champ;
|
||||
}
|
||||
|
||||
// ------------------------------------------------------------------------
|
||||
// fonctions pour l'affichage
|
||||
// ------------------------------------------------------------------------
|
||||
|
||||
// afficher les informations d'une activité et d'un tarif
|
||||
$tpl->register_function('afficher_debut_tarif', function ($params)
|
||||
{
|
||||
$versement = $params['versement'];
|
||||
$idTarif = $versement->idTarif;
|
||||
|
||||
$out = sprintf('
|
||||
<details class="activite" open="open">
|
||||
<summary class="activite">
|
||||
<div class="activite">
|
||||
<input type="checkbox" id="check_%1$s"
|
||||
onclick="cocherDecocherTarif(check_%1$s)" />',
|
||||
$idTarif);
|
||||
if ($idTarif == 0) {
|
||||
// versement sur un compte non rattaché à une activité
|
||||
$out .= sprintf('
|
||||
<label for="check_%s">
|
||||
<h3 class="activite">Versements non rattachés à une activité</h3>',
|
||||
$idTarif);
|
||||
}
|
||||
else {
|
||||
$tarif = $_SESSION['lesTarifs'][$idTarif];
|
||||
$idActivite = $tarif->idActivite;
|
||||
$activite = $_SESSION['lesActivites'][$idActivite];
|
||||
|
||||
$out .= sprintf('
|
||||
<label for="check_%s">
|
||||
<h3 class="activite">Activité « %s »</h3>',
|
||||
$idTarif,
|
||||
$activite->label);
|
||||
|
||||
if (!empty($activite->description)) {
|
||||
$out .= sprintf('
|
||||
<p class="activite">%s</p>', $activite->description);
|
||||
}
|
||||
$out .= sprintf('
|
||||
<p class="activite">tarif « %s »', $tarif->label);
|
||||
if ($tarif->montant > 0) {
|
||||
$out .= sprintf(' montant : %.2f €</p>', $tarif->montant/100);
|
||||
} else {
|
||||
$out .= ' montant : libre</p>';
|
||||
}
|
||||
}
|
||||
$out .= '
|
||||
</label>
|
||||
</div>
|
||||
</summary>';
|
||||
return $out;
|
||||
});
|
||||
|
||||
// Afficher les informations d'une personne
|
||||
$tpl->register_function('afficher_debut_personne', function ($params)
|
||||
{
|
||||
$idUser = $params['user'];
|
||||
$idVersement = $params['idVersement'];
|
||||
|
||||
$personne = $_SESSION['membresDonateurs'][$idUser];
|
||||
$out = sprintf('
|
||||
<details class="personne" open="open">
|
||||
<summary class="personne">
|
||||
<div class="personne">
|
||||
<input type="checkbox" id="check_%1$s"
|
||||
onclick="cocherDecocherPersonne(check_%1$s, total_%1$s)" />
|
||||
<label for="check_%1$s">
|
||||
%2$s : <span class="total" id="total_%1$s">0,00 €</span>
|
||||
</label>
|
||||
</div>
|
||||
</summary>
|
||||
<div class="versements">',
|
||||
$idVersement,
|
||||
$personne->nomPrenom
|
||||
);
|
||||
return $out;
|
||||
});
|
||||
|
||||
// afficher infos compte
|
||||
$tpl->register_function('afficher_debut_compte', function ($params)
|
||||
{
|
||||
$idCompte = $params['idCompte'];
|
||||
$out = sprintf('
|
||||
<fieldset class="versements">
|
||||
<div><p>Compte N° %1$s : %2$s</p></div>',
|
||||
$_SESSION['comptes'][$idCompte]->codeCompte,
|
||||
$_SESSION['comptes'][$idCompte]->nomCompte);
|
||||
return $out;
|
||||
});
|
||||
|
||||
// afficher un versement
|
||||
$tpl->register_function('afficher_versement', function ($params)
|
||||
{
|
||||
$versement = $params['versement'];
|
||||
$idVersement = $params['idVersement'];
|
||||
$rang = $params['rang'];
|
||||
$pair = $params['pair'];
|
||||
|
||||
$out = '<div class="';
|
||||
$out .= $pair ? 'pair">' : 'impair">';
|
||||
$out .= sprintf('
|
||||
<input type="checkbox"
|
||||
class="check_%1$s"
|
||||
id="check_%1$s_%2$s"
|
||||
name="selected[]"
|
||||
value="%2$s"
|
||||
onclick="cocherDecocherVersement(check_%1$s_%2$s, total_%1$s)" />
|
||||
<label for="check_%1$s_%2$s"><span class="montant">%3$s</span>
|
||||
<span>%4$s</span>
|
||||
</label>
|
||||
</div>',
|
||||
$idVersement,
|
||||
$rang,
|
||||
number_format(
|
||||
$versement->versement/100,
|
||||
2,
|
||||
",",
|
||||
" "
|
||||
),
|
||||
date_format(date_create($versement->date),"d/m/Y")
|
||||
);
|
||||
return $out;
|
||||
});
|
||||
|
||||
$tpl->register_function('fin_compte', function ()
|
||||
{
|
||||
$out = '
|
||||
</fieldset>';
|
||||
return $out;
|
||||
});
|
||||
|
||||
$tpl->register_function('fin_personne', function ()
|
||||
{
|
||||
$out = '
|
||||
</div>
|
||||
</details>';
|
||||
return $out;
|
||||
});
|
||||
|
||||
$tpl->register_function('fin_tarif', function ($params)
|
||||
{
|
||||
$out = '
|
||||
</details>';
|
||||
return $out;
|
||||
});
|
||||
|
||||
// ------------------------------------------------------------------------
|
||||
// aiguillage
|
||||
// ------------------------------------------------------------------------
|
||||
unset($_SESSION['comptesSelectionnes']);
|
||||
unset($_SESSION['tauxSelectionnes']);
|
||||
unset($_SESSION['lesVersements']);
|
||||
|
||||
if ($_GET['action'] == 'personne') {
|
||||
require('versements_personnes.php');
|
||||
} else if ($_GET['action'] == 'activite') {
|
||||
require('versements_activites.php');
|
||||
}
|
|
@ -1,24 +0,0 @@
|
|||
<?php
|
||||
|
||||
namespace Paheko;
|
||||
session_start();
|
||||
|
||||
use Paheko\Plugin\RecusFiscaux\Utils;
|
||||
|
||||
// liste des années fiscales
|
||||
$anneeCourante = date("Y");
|
||||
$anneesFiscales = Utils::getAnneesFiscales();
|
||||
if ($anneesFiscales[0] < $anneeCourante) {
|
||||
array_unshift($anneesFiscales, $anneeCourante);
|
||||
}
|
||||
|
||||
$csrf_key = 'acc_select_year';
|
||||
$form->runIf('change', function () {
|
||||
$_SESSION['annee_recu'] = f('annee_recu');
|
||||
}, $csrf_key, PLUGIN_ROOT . '/admin/index.php');
|
||||
|
||||
$tpl->assign(compact('anneesFiscales', 'csrf_key'));
|
||||
|
||||
$tpl->assign('annee_recu', $_SESSION['annee_recu']);
|
||||
|
||||
$tpl->display(PLUGIN_ROOT . '/templates/choix_annee.tpl');
|
123
admin/config.php
123
admin/config.php
|
@ -1,123 +0,0 @@
|
|||
<?php
|
||||
|
||||
namespace Paheko;
|
||||
session_start();
|
||||
|
||||
use Paheko\Files\Files;
|
||||
use Paheko\Entities\Files\File;
|
||||
use Paheko\Plugin\RecusFiscaux\Utils;
|
||||
|
||||
$session->requireAccess($session::SECTION_CONFIG, $session::ACCESS_ADMIN);
|
||||
|
||||
// récupérer les champs des noms
|
||||
$champsNom = Utils::getChampsNom($config, $plugin);
|
||||
|
||||
$csrf_key = 'recusfiscaux_config';
|
||||
|
||||
$form->runIf('save', function () use ($plugin, $champsNom) {
|
||||
// Objet de l'asso
|
||||
$plugin->setConfigProperty('objet_asso', trim(f('objet_asso')));
|
||||
|
||||
// Articles du CGI
|
||||
$confArticles = $plugin->getConfig('articlesCGI');
|
||||
// effacer l'ancienne configuration
|
||||
for ($i = 0; $i < count($confArticles); ++$i) {
|
||||
$confArticles[$i]->valeur = false;
|
||||
}
|
||||
// et copier la nouvelle
|
||||
$art_sel = f('articlesCGI') ?: [];
|
||||
foreach ($art_sel as $article) {
|
||||
$confArticles[$article]->valeur = true;
|
||||
}
|
||||
$plugin->setConfigProperty('articlesCGI', $confArticles);
|
||||
|
||||
// Taux de réduction
|
||||
$confTaux = $plugin->getConfig('reduction');
|
||||
// effacer l'ancienne configuration
|
||||
for ($i = 0; $i < count($confTaux); ++$i) {
|
||||
$confTaux[$i]->valeur = false;
|
||||
}
|
||||
// et copier la nouvelle
|
||||
$taux_sel = f('tauxReduction') ?: [];
|
||||
foreach ($taux_sel as $taux) {
|
||||
$confTaux[$taux]->valeur = true;
|
||||
}
|
||||
$plugin->setConfigProperty("reduction", $confTaux);
|
||||
|
||||
// Informations au sujet du responsable
|
||||
$plugin->setConfigProperty('nom_responsable', trim(f('nom_responsable') ?: '') ?: null);
|
||||
$plugin->setConfigProperty('fonction_responsable', trim(f('fonction_responsable') ?: '') ?: null);
|
||||
$plugin->setConfigProperty('ville_asso', trim(f('ville_asso') ?: '') ?: null);
|
||||
|
||||
// signature
|
||||
if (isset($_SESSION['sig_file']) && count($_SESSION['sig_file']) > 0) {
|
||||
// supprimer la signature précédente, si besoin
|
||||
if (
|
||||
null !== $plugin->getConfig('signature')
|
||||
&&
|
||||
$plugin->getConfig('signature') != $_SESSION['sig_file'][0]->path
|
||||
) {
|
||||
$sig_file = \Paheko\Files\Files::get($plugin->getConfig('signature'));
|
||||
if (null !== $sig_file) {
|
||||
$sig_file->delete();
|
||||
}
|
||||
}
|
||||
// puis installer la nouvelle
|
||||
$plugin->setConfigProperty('signature', $_SESSION['sig_file'][0]->path);
|
||||
}
|
||||
|
||||
// Numérotation des reçus
|
||||
$configNum = $plugin->getConfig('numerotation');
|
||||
$formNum = clone $configNum;
|
||||
if ($configNum->prefixe != trim(f('prefixe'))) {
|
||||
$formNum->prefixe = trim(f('prefixe'));
|
||||
}
|
||||
$formNum->annee = f('annee');
|
||||
$formNum->membre = f('membre');
|
||||
$formNum->sequentiel = f('sequentiel');
|
||||
$formNum->valeur_init = f('valeur_init');
|
||||
$plugin->setConfigProperty('numerotation', $formNum);
|
||||
|
||||
// Impression des adresses de courriel
|
||||
$plugin->setConfigProperty('imprimerCourriel', trim(f('imprimerCourriel') ?: '') ?: null);
|
||||
|
||||
// champs pour le nom et prénom
|
||||
foreach ($champsNom as $nom => $champ) {
|
||||
$champ->position = 0;
|
||||
}
|
||||
$noms_sel = f('champsNom') ?: [];
|
||||
$i = -count($noms_sel);
|
||||
foreach ($noms_sel as $nom) {
|
||||
$champsNom[$nom]->position = $i++;
|
||||
}
|
||||
$plugin->setConfigProperty('champsNom', $champsNom);
|
||||
|
||||
// enregistrer la nouvelle config
|
||||
$plugin->save();
|
||||
}, $csrf_key, PLUGIN_ADMIN_URL . 'config.php?ok');
|
||||
|
||||
|
||||
// test fonctions fichiers : voir files.sor
|
||||
// $fichiers = Files::list('config');
|
||||
// error_log("fichiers config = " . print_r($fichiers, true));
|
||||
// $fichiers = Files::list('ext/recusfiscaux');
|
||||
// error_log("fichiers ext/recusfiscaux = " . print_r($fichiers, true));
|
||||
$sig_file = Files::get('ext/recusfiscaux/default_signature.png');
|
||||
// error_log("sig_file = " . print_r($sig_file, true));
|
||||
|
||||
//error_log("config.php::config=" . print_r($plugin->getConfig(), true));
|
||||
|
||||
|
||||
// trier les champs de nom pour l'affichage
|
||||
uasort($champsNom, function ($a, $b) {
|
||||
return $a->position - $b->position;
|
||||
});
|
||||
|
||||
$path = qg('path') ?: File::CONTEXT_CONFIG;
|
||||
$tpl->assign('default_signature', '/' . 'ext/recusfiscaux/default_signature.png');
|
||||
// $tpl->assign('default_signature', \Paheko\WWW_URL . "plugin/recusfiscaux/default_signature.png");
|
||||
$tpl->assign('plugin_config', $plugin->getConfig());
|
||||
$tpl->assign('plugin_css', ['style.css']);
|
||||
$tpl->assign('numerotation', $plugin->getConfig('numerotation'));
|
||||
$tpl->assign(compact('csrf_key', 'path', 'champsNom'));
|
||||
$tpl->display(PLUGIN_ROOT . '/templates/config.tpl');
|
|
@ -1,475 +0,0 @@
|
|||
<?php
|
||||
|
||||
namespace Paheko;
|
||||
session_start();
|
||||
|
||||
use Paheko\Files\Files;
|
||||
use Paheko\Entities\Files\File;
|
||||
use Paheko\UserTemplate\UserTemplate;
|
||||
|
||||
use Paheko\Plugin\RecusFiscaux\Utils;
|
||||
use Paheko\Plugin\RecusFiscaux\Personne;
|
||||
|
||||
// forcer mode dialog pour ouvrir le squelette des reçus dans un nouvel onglet
|
||||
// à combiner avec target="_blank" ou target="_dialog" dans le fichier tpl
|
||||
$_GET['_dialog'] = true;
|
||||
|
||||
// signature
|
||||
$signature =
|
||||
(null !== $config->fileURL('signature')) ?
|
||||
$config->fileURL('signature') :
|
||||
((null !== $plugin->getConfig('signature')) ?
|
||||
\KD2\HTTP::getScheme() . '://' . \KD2\HTTP::getHost() . WWW_URI . $plugin->getConfig('signature') :
|
||||
"");
|
||||
|
||||
// http://test.paheko.bzh/config/cavalier.png
|
||||
error_log('signature = ' . $signature);
|
||||
// logo
|
||||
$config = Config::getInstance();
|
||||
$logo_asso =
|
||||
(null !== $config->fileURL('logo')) ?
|
||||
$config->fileURL('logo') :
|
||||
"";
|
||||
|
||||
// articles du CGI
|
||||
$articlesCGI = array();
|
||||
foreach ($plugin->getConfig('articlesCGI') as $article) {
|
||||
if ($article->valeur == 1) {
|
||||
$articlesCGI[] = $article->titre;
|
||||
}
|
||||
}
|
||||
$nbArticles = count($articlesCGI);
|
||||
if ($nbArticles == 1) {
|
||||
$texteArticles = 'à l’article ' . $articlesCGI[0];
|
||||
} elseif ($nbArticles > 1) {
|
||||
$texteArticles = 'aux articles ';
|
||||
for ($i = 0; $i < $nbArticles; ++$i) {
|
||||
$texteArticles .= $articlesCGI[$i];
|
||||
if ($i < $nbArticles - 2) {
|
||||
$texteArticles .= ", ";
|
||||
} else if ($i == $nbArticles - 2) {
|
||||
$texteArticles .= " et ";
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// libellés pour les taux de réduction
|
||||
$libelles_taux = Utils::getLignesReduction($plugin->getConfig('reduction'));
|
||||
|
||||
// numérotation des reçus
|
||||
$configNum = $plugin->getConfig('numerotation');
|
||||
|
||||
// filtrer les versements sélectionnés
|
||||
$lesLignes = f('selected');
|
||||
$versementsSelectionnes = array();
|
||||
foreach ($lesLignes as $ligne) {
|
||||
$versementsSelectionnes[] = $_SESSION['lesVersements'][$ligne];
|
||||
}
|
||||
|
||||
// cumuler les versements
|
||||
if ($_GET['type'] == 'personne') {
|
||||
$totalPersonnes = cumulerVersementsPersonne($versementsSelectionnes);
|
||||
} elseif ($_GET['type'] == 'activite') {
|
||||
$totalPersonnes = cumulerVersementsTarif($versementsSelectionnes);
|
||||
}
|
||||
|
||||
// générer les reçus
|
||||
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
|
||||
)
|
||||
{
|
||||
// <TEST>
|
||||
$fichierHTML = sprintf('%s/print-%s.html', CACHE_ROOT, md5(random_bytes(16)));
|
||||
// </TEST>
|
||||
$listeFichiersPDF = array();
|
||||
$fmt = new \NumberFormatter('fr_FR', \NumberFormatter::SPELLOUT);
|
||||
$prefixeNum = getNumPrefixe($configNum);
|
||||
$numero_sequentiel = getNumSequentiel($configNum);
|
||||
foreach ($totalPersonnes as $idPersonne => $personne) {
|
||||
$tpl = new UserTemplate(null);
|
||||
/* $tpl->setSource(PLUGIN_ROOT . '/templates/recu.skel'); */
|
||||
$tpl->setSourcePath(PLUGIN_ROOT . '/templates/recu.skel');
|
||||
|
||||
$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"));
|
||||
|
||||
// numéro de reçu
|
||||
$tpl->assign('numero',
|
||||
faireNumeroRecu($prefixeNum,
|
||||
$configNum->membre,
|
||||
$personne->numero,
|
||||
$numero_sequentiel));
|
||||
|
||||
// adresse de courriel
|
||||
if ($plugin->getConfig('imprimerCourriel')) {
|
||||
$courriel = $personne->courriel;
|
||||
} else {
|
||||
$courriel = "";
|
||||
}
|
||||
$tpl->assign('courriel', $courriel);
|
||||
|
||||
// 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;
|
||||
}
|
||||
}
|
||||
);
|
||||
|
||||
// mentions complémentaires
|
||||
$complements = mentionsComplémentaires();
|
||||
|
||||
$tpl->registerSection(
|
||||
'informations',
|
||||
function () use ($complements) {
|
||||
foreach ($complements as $elem) {
|
||||
yield (array) $elem;
|
||||
}
|
||||
}
|
||||
);
|
||||
|
||||
// <TEST>
|
||||
// récupérer les reçus au format html
|
||||
$recuHTML = $tpl->fetch();
|
||||
// enregistrer dans le fichier
|
||||
file_put_contents($fichierHTML, $recuHTML, FILE_APPEND);
|
||||
// </TEST>
|
||||
|
||||
// fabriquer le fichier PDF
|
||||
genererPDF($tpl->fetch(), $personne->nomPrenom, $listeFichiersPDF);
|
||||
}
|
||||
|
||||
// afficher dans un dialog
|
||||
//marche pas
|
||||
// printf('
|
||||
// <dialog id="dialog" open="" style="" class="loaded">
|
||||
// <button class="icn-btn closeBtn" data-icon="✘" type="button">Fermer
|
||||
// </button>
|
||||
// <iframe src="%s" name="dialog" id="frameDialog" scrolling="yes" data-height="%s" style="height: %s;" width="0" height="0">
|
||||
// </iframe>
|
||||
// </dialog>
|
||||
// ', $fichierHTML, "90%", "90%");
|
||||
|
||||
// affiche une page vide
|
||||
// $link = "<script>window.open('$fichierHTML', '_blank')</script>";
|
||||
// echo $link;
|
||||
|
||||
// faire une archive zip
|
||||
$fichierZip = Utils::makeArchive(
|
||||
$listeFichiersPDF,
|
||||
$_SESSION['annee_recu'],
|
||||
PLUGIN_ROOT . "/zip"
|
||||
);
|
||||
|
||||
//supprimer les fichiers pdf
|
||||
// foreach ($listeFichiersPDF as $f) {
|
||||
// \Paheko\Utils::safe_unlink($f);
|
||||
// }
|
||||
} // genererRecusPDF
|
||||
|
||||
function generererRecusHTML($tpl,
|
||||
$totalPersonnes,
|
||||
$signature,
|
||||
$logo_asso,
|
||||
$texteArticles,
|
||||
$plugin,
|
||||
$configNum,
|
||||
$libelles_taux
|
||||
)
|
||||
{
|
||||
$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('org_name', Config::getInstance()->get('org_name'));
|
||||
$tpl->assign('org_address', Config::getInstance()->get('org_address'));
|
||||
$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
|
||||
|
||||
/**
|
||||
* 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;
|
||||
$dateMin = PHP_INT_MAX;
|
||||
$dateMax = -1;
|
||||
$totalVersements = 0;
|
||||
foreach ($versements as $ligne) {
|
||||
if ($ligne->idUser != $idPersonneCourant) {
|
||||
// changement de personne
|
||||
if ($idPersonneCourant != -1) {
|
||||
$totalPersonnes[$idPersonneCourant]->ajouterVersement(
|
||||
$_SESSION['taux_reduction'],
|
||||
$totalVersements,
|
||||
$dateMin,
|
||||
$dateMax
|
||||
);
|
||||
}
|
||||
$dateMin = strtotime($ligne->date);
|
||||
$dateMax = strtotime($ligne->date);
|
||||
$idPersonneCourant = $ligne->idUser;
|
||||
$totalVersements = $ligne->versement;
|
||||
// créer les infos de la personne, sauf si elle est déjà présente
|
||||
if (!array_key_exists($idPersonneCourant, $totalPersonnes)) {
|
||||
$totalPersonnes[$idPersonneCourant] = $_SESSION['membresDonateurs'][$ligne->idUser]->clone();
|
||||
}
|
||||
} else {
|
||||
// même personne : cumuler versements et mettre à jour les dates
|
||||
$totalVersements += $ligne->versement;
|
||||
if (strtotime($ligne->date) < $dateMin) {
|
||||
$dateMin = strtotime($ligne->date);
|
||||
}
|
||||
if (strtotime($ligne->date) > $dateMax) {
|
||||
$dateMax = strtotime($ligne->date);
|
||||
}
|
||||
}
|
||||
}
|
||||
// et le dernier
|
||||
$totalPersonnes[$idPersonneCourant]->ajouterVersement(
|
||||
$_SESSION['taux_reduction'],
|
||||
$totalVersements,
|
||||
$dateMin,
|
||||
$dateMax
|
||||
);
|
||||
return $totalPersonnes;
|
||||
} // cumulerVersementsPersonne
|
||||
|
||||
/**
|
||||
* Cumuler les versements de chaque personne par tarif
|
||||
* @param tableau des versements triés par idTarif, idUser, date
|
||||
* @return tableau des versements cumulés : id => Personne
|
||||
*/
|
||||
function cumulerVersementsTarif($versements)
|
||||
{
|
||||
$totalPersonnes = array();
|
||||
$idTarifCourant = -1;
|
||||
$idPersonneCourant = -1;
|
||||
$idCompteCourant = -1;
|
||||
$dateMin = PHP_INT_MAX;
|
||||
$dateMax = -1;
|
||||
$totalVersements = 0;
|
||||
foreach ($versements as $ligne) {
|
||||
if (
|
||||
$ligne->idTarif != $idTarifCourant ||
|
||||
$ligne->idUser != $idPersonneCourant ||
|
||||
$ligne->idCompte != $idCompteCourant
|
||||
) {
|
||||
if ($idTarifCourant != -1) {
|
||||
// changement de tarif, de personne ou de compte
|
||||
$tarifCompte = ($idTarifCourant == 0) ?
|
||||
$idCompteCourant :
|
||||
$idTarifCourant . "_" . $idCompteCourant;
|
||||
$totalPersonnes[$idPersonneCourant]->ajouterVersement(
|
||||
$_SESSION['tauxSelectionnes'][$tarifCompte],
|
||||
$totalVersements,
|
||||
$dateMin,
|
||||
$dateMax
|
||||
);
|
||||
}
|
||||
$dateMin = strtotime($ligne->date);
|
||||
$dateMax = strtotime($ligne->date);
|
||||
$idTarifCourant = $ligne->idTarif;
|
||||
$idPersonneCourant = $ligne->idUser;
|
||||
$idCompteCourant = $ligne->idCompte;
|
||||
$totalVersements = $ligne->versement;
|
||||
// créer les infos de la personne, sauf si elle est déjà présente
|
||||
if (!array_key_exists($idPersonneCourant, $totalPersonnes)) {
|
||||
$totalPersonnes[$idPersonneCourant] = $_SESSION['membresDonateurs'][$ligne->idUser]->clone();
|
||||
}
|
||||
} else {
|
||||
// même personne : cumuler versements et mettre à jour les dates
|
||||
$totalVersements += $ligne->versement;
|
||||
if (strtotime($ligne->date) < $dateMin) {
|
||||
$dateMin = strtotime($ligne->date);
|
||||
}
|
||||
if (strtotime($ligne->date) > $dateMax) {
|
||||
$dateMax = strtotime($ligne->date);
|
||||
}
|
||||
}
|
||||
}
|
||||
// et le dernier
|
||||
$tarifCompte = ($idTarifCourant == 0) ?
|
||||
$idCompteCourant :
|
||||
$idTarifCourant . "_" . $idCompteCourant;
|
||||
$totalPersonnes[$idPersonneCourant]->ajouterVersement(
|
||||
$_SESSION['tauxSelectionnes'][$tarifCompte],
|
||||
$totalVersements,
|
||||
$dateMin,
|
||||
$dateMax
|
||||
);
|
||||
return $totalPersonnes;
|
||||
} // 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 = \Paheko\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;
|
||||
}
|
|
@ -1,38 +0,0 @@
|
|||
/*
|
||||
* impression
|
||||
*/
|
||||
@page
|
||||
{
|
||||
size: A4 portrait;
|
||||
}
|
||||
|
||||
header.header {
|
||||
display: none;
|
||||
}
|
||||
|
||||
body {
|
||||
background: #fff;
|
||||
padding: 0;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
.noprint {
|
||||
display: none;
|
||||
}
|
||||
|
||||
nav.tabs
|
||||
{
|
||||
display: none;
|
||||
}
|
||||
|
||||
main {
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
div.previs_recu
|
||||
{
|
||||
font-family: Serif;
|
||||
font-size: 11pt;
|
||||
background-color: white;
|
||||
page-break-after: always;
|
||||
}
|
|
@ -1,75 +0,0 @@
|
|||
<?php
|
||||
|
||||
namespace Paheko;
|
||||
session_start();
|
||||
|
||||
use Paheko\Plugin\RecusFiscaux\Utils;
|
||||
|
||||
// mettre à jour le plugin si besoin
|
||||
if ($plugin->needUpgrade()) {
|
||||
$plugin->upgrade();
|
||||
}
|
||||
|
||||
// Année fiscale par défaut
|
||||
if (! isset($_SESSION['annee_recu']) || $_SESSION['annee_recu'] == "")
|
||||
{
|
||||
$_SESSION['annee_recu'] = date("Y") - 1;
|
||||
}
|
||||
|
||||
// nombre de taux de réduction activés
|
||||
$nbTaux = 0;
|
||||
foreach ($plugin->getConfig('reduction') as $taux)
|
||||
{
|
||||
if ($taux->valeur) { ++$nbTaux; }
|
||||
}
|
||||
|
||||
// idem avec les champs nom/prénom
|
||||
$nbChamps = 0;
|
||||
$champsNom = Utils::getChampsNom($config, $plugin);
|
||||
if (null !== $champsNom)
|
||||
{
|
||||
foreach ($champsNom as $nom => $champ)
|
||||
{
|
||||
if ($champ->position != 0) { ++$nbChamps; }
|
||||
}
|
||||
}
|
||||
|
||||
// comptes sur lesquels des versements de membres ont été faits
|
||||
// pendant l'année fiscale choisie
|
||||
$_SESSION['comptes'] = Utils::getComptes($_SESSION['annee_recu'], 'like', '7%');
|
||||
|
||||
// liste des activités, tarifs et comptes associés
|
||||
$activitesTarifsComptes = Utils::getTarifsComptes($_SESSION['annee_recu'], 'like', '7%');
|
||||
$_SESSION['lesTarifs'] = Utils::getTarifs();
|
||||
$_SESSION['lesActivites'] = Utils::getActivites();
|
||||
|
||||
// liste des comptes associés à aucune activité
|
||||
$comptesSansActivite = array();
|
||||
foreach ($_SESSION['comptes'] as $id => $elem)
|
||||
{
|
||||
$trouve = false;
|
||||
foreach ($activitesTarifsComptes as $elem)
|
||||
{
|
||||
if ($id == $elem->idCompte) { $trouve = true ; break; }
|
||||
}
|
||||
if (! $trouve) { $comptesSansActivite[] = $id; }
|
||||
}
|
||||
|
||||
// préparation de l'affichage
|
||||
$tpl->assign('annee_recu', $_SESSION['annee_recu']);
|
||||
$tpl->assign('lesComptes', $_SESSION['comptes']);
|
||||
$tpl->assign('lesTarifs', $_SESSION['lesTarifs']);
|
||||
$tpl->assign('lesActivites', $_SESSION['lesActivites']);
|
||||
$tpl->assign('activitesTarifsComptes', $activitesTarifsComptes);
|
||||
$tpl->assign('comptesSansActivite', $comptesSansActivite);
|
||||
$tpl->assign('nbComptesSansActivite',count($comptesSansActivite));
|
||||
$tpl->assign('nbTarifs', count($activitesTarifsComptes));
|
||||
$tpl->assign('nbComptes', count($_SESSION['comptes']));
|
||||
$tpl->assign('plugin_config', $plugin->getConfig());
|
||||
$tpl->assign('nbTaux', $nbTaux);
|
||||
$tpl->assign('nbChamps', $nbChamps);
|
||||
$tpl->assign('plugin_css', ['style.css']);
|
||||
$tpl->assign('plugin_url', \Paheko\Utils::plugin_url());
|
||||
|
||||
// envoyer au template
|
||||
$tpl->display(PLUGIN_ROOT . '/templates/index.tpl');
|
|
@ -1,103 +0,0 @@
|
|||
/*
|
||||
* prévisualisation reçu au format HTML
|
||||
*/
|
||||
|
||||
div.previs_recu
|
||||
{
|
||||
width : 18.5cm;
|
||||
}
|
||||
|
||||
#logo
|
||||
{
|
||||
max-height : 4cm;
|
||||
}
|
||||
|
||||
#titre
|
||||
{
|
||||
margin : 0 2cm 0 2cm;
|
||||
text-align : center;
|
||||
font-size : 14pt;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
#articles
|
||||
{
|
||||
margin-bottom: 0.5cm;
|
||||
text-align : center;
|
||||
}
|
||||
|
||||
#numRecu
|
||||
{
|
||||
text-align : right;
|
||||
margin-right: 1em;
|
||||
}
|
||||
|
||||
#versements
|
||||
{
|
||||
border-top: 1px solid rgb(0, 0, 128);
|
||||
border-bottom: 1px solid rgb(0, 0, 128);
|
||||
padding-top: 1em;
|
||||
margin-bottom: 1em;
|
||||
}
|
||||
|
||||
.cartouche
|
||||
{
|
||||
padding-bottom: 1em;
|
||||
}
|
||||
|
||||
.rubrique
|
||||
{
|
||||
background-color : rgb(200, 200, 250);
|
||||
padding : 0 0 0 1mm;
|
||||
margin-bottom: 1em;
|
||||
}
|
||||
|
||||
.titre, .important
|
||||
{
|
||||
font-weight:bold;
|
||||
}
|
||||
.libelle
|
||||
{
|
||||
font-weight: normal;
|
||||
}
|
||||
|
||||
#ville
|
||||
{
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
#signature
|
||||
{
|
||||
display: block;
|
||||
max-width : 7cm;
|
||||
max-height : 4cm;
|
||||
margin: 0 auto;
|
||||
padding-bottom : 2mm;
|
||||
}
|
||||
|
||||
#versements > ul
|
||||
{
|
||||
list-style: inside;
|
||||
margin-left: 2em;
|
||||
}
|
||||
|
||||
#date_versements
|
||||
{
|
||||
margin-left: 1.5em;
|
||||
}
|
||||
|
||||
p.complements
|
||||
{
|
||||
margin-top : 1em;
|
||||
}
|
||||
|
||||
span.titre, span.libelle
|
||||
{
|
||||
display : inline;
|
||||
}
|
||||
|
||||
/* Ne pas imprimer le bandeau des boutons du profiler */
|
||||
#__profiler
|
||||
{
|
||||
display: none;
|
||||
}
|
276
admin/script.js
276
admin/script.js
|
@ -1,276 +0,0 @@
|
|||
"use strict";
|
||||
|
||||
// ------------------------------------------------------------------------
|
||||
// actions sur la liste des versements
|
||||
// ------------------------------------------------------------------------
|
||||
|
||||
/**
|
||||
* Fonction appelée quand on (dé)coche la case globale
|
||||
* (dé)sélectionner toutes les cases de toutes les activités
|
||||
* @param {HTMLInputElement} idCaseGlobale id de la case globale
|
||||
*/
|
||||
function cocherDecocherTout(idCaseGlobale) {
|
||||
// itérer sur la liste des éléments détails : 1 par couple <activité, tarif>
|
||||
let lesDetails = document.querySelectorAll("details.activite");
|
||||
for (let i = 0; i < lesDetails.length; ++i) {
|
||||
let idCase = lesDetails[i].querySelector("input[type=checkbox]");
|
||||
idCase.checked = idCaseGlobale.checked;
|
||||
cocherDecocherTarif(idCase);
|
||||
}
|
||||
// changer le message
|
||||
changerMessage(idCaseGlobale.nextElementSibling, idCaseGlobale);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fonction appelée quand on (dé)coche la case d'activité
|
||||
* (dé)sélectionner toutes les cases de cette activité
|
||||
* @param {HTMLInputElement} idCaseGlobale id de la case d'activité
|
||||
*/
|
||||
function cocherDecocherTarif(idCaseGlobale) {
|
||||
let lesPersonnes = idCaseGlobale.closest("details").querySelectorAll("div.personne");
|
||||
cocherDecocherLesPersonnes(idCaseGlobale, lesPersonnes);
|
||||
}
|
||||
|
||||
/**
|
||||
* idem dans le cas des versements des personnes
|
||||
* @param {HTMLInputElement} idCaseGlobale id case à cocher d'une personne
|
||||
*/
|
||||
function cocherDecocherToutesLesPersonnes(idCaseGlobale) {
|
||||
let lesPersonnes = document.querySelectorAll("div.personne");
|
||||
cocherDecocherLesPersonnes(idCaseGlobale, lesPersonnes);
|
||||
changerMessage(idCaseGlobale.nextElementSibling, idCaseGlobale);
|
||||
}
|
||||
|
||||
/**
|
||||
* @param {HTMLInputElement} idCaseGlobale
|
||||
* @param {NodeListOf<Element>} lesPersonnes
|
||||
*/
|
||||
function cocherDecocherLesPersonnes(idCaseGlobale, lesPersonnes) {
|
||||
for (let j = 0; j < lesPersonnes.length; ++j) {
|
||||
// trouver l'élément total de la personne
|
||||
let idTotal = lesPersonnes[j].querySelector("span");
|
||||
// puis la case à cocher
|
||||
let idCase = lesPersonnes[j].closest("summary").querySelector("input");
|
||||
idCase.checked = idCaseGlobale.checked;
|
||||
// puis traiter toutes les cases de la personne
|
||||
cocherDecocherPersonne(idCase, idTotal);
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Fonction appelée quand on (dé)coche la case d'une personne
|
||||
* - (dé)sélectionner toutes les cases à cocher
|
||||
* - faire le total des cases cochées et l'afficher
|
||||
* @param {HTMLInputElement} idCase id de la case qui a été cochée
|
||||
* @param {HTMLSpanElement} idTotal id de l'élément où afficher le total
|
||||
*/
|
||||
function cocherDecocherPersonne(idCase, idTotal) {
|
||||
// chercher le fieldset des versements
|
||||
let fieldset = idCase.closest("details").querySelector("div.versements");
|
||||
let listeCases = fieldset.querySelectorAll("input[type=checkbox]");
|
||||
for (let i = 0; i < listeCases.length; ++i) {
|
||||
listeCases[i].checked = idCase.checked;
|
||||
cocherDecocherVersement(listeCases[i], idTotal);
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Fonction appelée quand on (dé)coche la case d'un versement
|
||||
* Faire le total des cases cochées et l'afficher
|
||||
*
|
||||
* @param {HTMLInputElement} idCase id de la case qui a été cochée
|
||||
* @param {HTMLSpanElement} idTotal id de l'élément où afficher le total
|
||||
*/
|
||||
function cocherDecocherVersement(idCase, idTotal) {
|
||||
let fieldset = idCase.closest("div.versements");
|
||||
let listeCases = fieldset.querySelectorAll("input[type=checkbox]");
|
||||
let listeMontants = fieldset.querySelectorAll("span.montant");
|
||||
calculerTotal(listeCases, listeMontants, idTotal);
|
||||
}
|
||||
|
||||
/**
|
||||
* Faire le total des cases cochées et l'afficher
|
||||
* @param {NodeListOf<Element>} listeCases liste des cases
|
||||
* @param {NodeListOf<Element>} listeMontants liste des montants associés
|
||||
* @param {HTMLSpanElement} idTotal id de l'élément où afficher le total
|
||||
*/
|
||||
function calculerTotal(listeCases, listeMontants, idTotal) {
|
||||
let total = 0;
|
||||
for (let i = 0; i < listeCases.length; ++i) {
|
||||
if (listeCases[i].checked) {
|
||||
total += parseFloat(listeMontants[i].textContent.replace(/\s/g, "").replace(",", "."));
|
||||
}
|
||||
}
|
||||
// afficher le total
|
||||
idTotal.innerHTML =
|
||||
total.toLocaleString('fr-FR', {
|
||||
style: 'currency', currency: 'EUR',
|
||||
minimumFractionDigits: 2
|
||||
});
|
||||
}
|
||||
|
||||
/**
|
||||
* changer le message en fonction de l'état coché de la case
|
||||
* @param {Element} message
|
||||
* @param {HTMLInputElement} idCase
|
||||
*/
|
||||
function changerMessage(message, idCase) {
|
||||
if (idCase.checked) {
|
||||
message.innerHTML = "Cliquer pour dé-cocher toutes les lignes";
|
||||
} else {
|
||||
message.innerHTML = "Cliquer pour cocher toutes les lignes";
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* afficher/masquer les détails
|
||||
* @param {string} idElem bouton de masquage/affichage
|
||||
* @param {string} classe des détails à afficher/masquer
|
||||
* @param {string} texte du bouton
|
||||
*/
|
||||
function montrerMasquerDetails(idElem, classe, texte) {
|
||||
let lesDetails = document.querySelectorAll(classe);
|
||||
if (lesDetails.length > 0) {
|
||||
let leBouton = document.getElementById(idElem);
|
||||
if (leBouton.textContent.includes('Replier')) {
|
||||
// masquer
|
||||
lesDetails.forEach((e) => {
|
||||
e.removeAttribute('open');
|
||||
});
|
||||
leBouton.textContent = "Déplier " + texte;
|
||||
leBouton.setAttribute('data-icon', '↓');
|
||||
}
|
||||
else {
|
||||
// montrer
|
||||
lesDetails.forEach((e) => {
|
||||
e.setAttribute('open', 'open');
|
||||
});
|
||||
leBouton.textContent = "Replier " + texte;
|
||||
leBouton.setAttribute('data-icon', '↑');
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* fonction appelée lors de la demande de génération des reçus
|
||||
* vérifier qu'au moins un versement a été sélectionné
|
||||
* @return vrai si au moins un choix a été fait
|
||||
* @param {HTMLFormElement} formulaire
|
||||
*/
|
||||
function verifierChoix(formulaire) {
|
||||
return verifierCases(formulaire, 'checkbox', "au moins un versement");
|
||||
}
|
||||
|
||||
// ------------------------------------------------------------------------
|
||||
// actions sur la page d'accueil
|
||||
// ------------------------------------------------------------------------
|
||||
|
||||
/**
|
||||
* positionner l'action déclenchée par l'envoi du formulaire
|
||||
* afficher et masquer des portions de formulaire selon l'action
|
||||
* @param {HTMLFormElement} formulaire
|
||||
* @param {string} action après envoi du formulaire
|
||||
* @param {any} idElem id de l'élément à afficher
|
||||
* @param {any} nomClasse classe des éléments à masquer (sauf idElem)
|
||||
*/
|
||||
function choixMethodeGeneration(formulaire, action, idElem, nomClasse) {
|
||||
formulaire.setAttribute('action', 'action.php?action=' + action);
|
||||
for (let elem of formulaire.querySelectorAll(nomClasse)) {
|
||||
if (elem.id == idElem) {
|
||||
elem.classList.remove('hidden');
|
||||
}
|
||||
else {
|
||||
elem.classList.add('hidden');
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* vérifier
|
||||
* - qu'au moins une activité/tarif est sélectionnée
|
||||
* - qu'un radio de chaque activité/tarif sélectionné a été sélectionné :)
|
||||
* @param conteneur des cases à vérifier
|
||||
*/
|
||||
function verifierActivitésTaux(conteneur) {
|
||||
let nbChoix = 0;
|
||||
// parcourir les cases à cocher
|
||||
for (let idCase of conteneur.querySelectorAll("input[type=checkbox]")) {
|
||||
if (idCase.checked) {
|
||||
++nbChoix;
|
||||
// vérifier qu'un radio de la même ligne est sélectionné
|
||||
let ligneCorrecte = false;
|
||||
// trouver la ligne englobante
|
||||
let ligne = idCase.closest("li");
|
||||
for (let idRadio of ligne.querySelectorAll('input[type=radio]')) {
|
||||
if (idRadio.checked) { ligneCorrecte = true; break; }
|
||||
}
|
||||
if (!ligneCorrecte) {
|
||||
alert("Erreur : il faut sélectionner un taux de réduction dans chaque ligne cochée");
|
||||
return false;
|
||||
}
|
||||
}
|
||||
}
|
||||
if (nbChoix == 0) {
|
||||
alert("Erreur : il faut sélectionner au moins une ligne");
|
||||
}
|
||||
return nbChoix != 0;
|
||||
}
|
||||
|
||||
/**
|
||||
* vérifier qu'un taux a été sélectionné dans le conteneur paramètre
|
||||
*/
|
||||
function verifierTaux(conteneur) {
|
||||
return verifierCases(conteneur, 'radio', "un taux de réduction");
|
||||
}
|
||||
|
||||
// ------------------------------------------------------------------------
|
||||
// actions sur la config
|
||||
// ------------------------------------------------------------------------
|
||||
|
||||
/**
|
||||
* vérifier les données saisies dans le formulaire de configuration
|
||||
*/
|
||||
function verifierConfig(divArticles, divTauxReduc) {
|
||||
// articles
|
||||
if (!verifierCases(divArticles, "checkbox", "au moins un article")) { return false; }
|
||||
|
||||
// taux de réduction
|
||||
if (!verifierCases(divTauxReduc, "checkbox", "au moins un taux de réduction")) { return false; }
|
||||
|
||||
// Nom, fonction, signature
|
||||
|
||||
|
||||
// alert("Erreur : il faut sélectionner au moins un versement");
|
||||
return true;
|
||||
}
|
||||
|
||||
/**
|
||||
* Vérifier qu'au moins une case est cochée dans le conteneur
|
||||
* @param conteneur
|
||||
* @param type de case à vérifier (radio, checkbox)
|
||||
* @param message à afficher si erreur
|
||||
*/
|
||||
function verifierCases(conteneur, type, message) {
|
||||
let selecteur = "input[type=" + type + "]";
|
||||
let listeCheck = conteneur.querySelectorAll(selecteur);
|
||||
for (let elem of listeCheck) {
|
||||
if (elem.checked) { return true; }
|
||||
}
|
||||
alert("Erreur : il faut sélectionner " + message);
|
||||
return false;
|
||||
}
|
||||
|
||||
/**
|
||||
* petite bidouille pour utiliser ma feuille de style pour imprimer les reçus
|
||||
* à la place de la feuille de style de paheko
|
||||
* @param {*} document
|
||||
*/
|
||||
function changerStyle(document) {
|
||||
let styles = document.querySelectorAll('link[rel="stylesheet"]');
|
||||
// console.log(styles);
|
||||
for (let sheet of styles) {
|
||||
if (sheet.href.includes('print.css')) { sheet.media = "tv"; sheet.remove; }
|
||||
if (sheet.href.includes('imprimer_recu.css')) { sheet.media = 'print'; }
|
||||
}
|
||||
// console.log(styles);
|
||||
}
|
174
admin/style.css
174
admin/style.css
|
@ -1,174 +0,0 @@
|
|||
/*
|
||||
* liste des versements
|
||||
*/
|
||||
|
||||
div.pair {
|
||||
background-color: rgba(var(--gSecondColor), 0.15);
|
||||
}
|
||||
|
||||
fieldset.versements
|
||||
{
|
||||
margin-bottom : 0;
|
||||
margin-right : 0.5em;
|
||||
-webkit-border-radius:8px;
|
||||
border-radius:8px;
|
||||
}
|
||||
|
||||
div span {
|
||||
padding-left : 0.5em;
|
||||
padding-right : 0.5em;
|
||||
}
|
||||
|
||||
td.montant {
|
||||
text-align : right;
|
||||
}
|
||||
|
||||
span.montant {
|
||||
width : 5em;
|
||||
text-align : right;
|
||||
}
|
||||
|
||||
span.total
|
||||
{
|
||||
font-weight : bold;
|
||||
}
|
||||
|
||||
summary.activite
|
||||
{
|
||||
margin-bottom : 0.5em;
|
||||
}
|
||||
|
||||
summary.personne
|
||||
{
|
||||
margin-bottom : 0.5em;
|
||||
padding-top : 0;
|
||||
padding-bottom : 0;
|
||||
}
|
||||
|
||||
div.activite
|
||||
{
|
||||
background-color: rgba(var(--gSecondColor), 0.3);
|
||||
}
|
||||
|
||||
div.personne
|
||||
{
|
||||
font-weight : normal;
|
||||
background-color: rgba(var(--gSecondColor), 0.25);
|
||||
}
|
||||
|
||||
h3.activite
|
||||
{
|
||||
display : inline;
|
||||
}
|
||||
|
||||
p.activite
|
||||
{
|
||||
margin-left : 2.5em;
|
||||
}
|
||||
|
||||
input.check_global
|
||||
{
|
||||
margin : 0.2em 0.5em;
|
||||
}
|
||||
|
||||
div.versements
|
||||
{
|
||||
margin-left : 4em;
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
}
|
||||
|
||||
/*
|
||||
* page d'accueil
|
||||
*/
|
||||
|
||||
div.explications ul
|
||||
{
|
||||
list-style : initial;
|
||||
}
|
||||
|
||||
dl#menu
|
||||
{
|
||||
min-width : 40em;
|
||||
width : 50%;
|
||||
}
|
||||
|
||||
/*
|
||||
* configuration
|
||||
*/
|
||||
|
||||
#signature
|
||||
{
|
||||
padding : 1em 0.5em 0 0.5em;
|
||||
max-width: 300px;
|
||||
max-height: 120px;
|
||||
}
|
||||
|
||||
div.actions
|
||||
{
|
||||
display : inline;
|
||||
}
|
||||
|
||||
a.icn-btn {
|
||||
font-family: "paheko", sans-serif;
|
||||
font-size : 1.2em;
|
||||
}
|
||||
|
||||
dl.config
|
||||
{
|
||||
padding-bottom : 1ex;
|
||||
padding-right : 1em;
|
||||
}
|
||||
|
||||
div#articles_cgi, div#config_nom_fonction, div#numero_recus
|
||||
{
|
||||
display: flex;
|
||||
}
|
||||
|
||||
div.article
|
||||
{
|
||||
margin-right : 3em;
|
||||
}
|
||||
/*
|
||||
div#config_nom_fonction
|
||||
{
|
||||
display: flex;
|
||||
}
|
||||
|
||||
div#numero_recus
|
||||
{
|
||||
display:flex;
|
||||
}
|
||||
*/
|
||||
div.champnom
|
||||
{
|
||||
display : flex;
|
||||
margin-top : 0.25rem;
|
||||
}
|
||||
div.infos
|
||||
{
|
||||
border : 1px solid rgba(var(--gMainColor));
|
||||
border-radius : 0.25rem;
|
||||
padding : 0.4rem;
|
||||
margin-left : 1em;
|
||||
width : 20em;
|
||||
}
|
||||
ul#liste_activites dd
|
||||
{
|
||||
display: inline-block;
|
||||
}
|
||||
|
||||
ul.reduction span.radio-btn
|
||||
{
|
||||
margin-left : 2em;
|
||||
border-spacing : 0.1em;
|
||||
}
|
||||
input#f_prefixe
|
||||
{
|
||||
width : 8em;
|
||||
min-width : 8em;
|
||||
}
|
||||
input#f_valeur_init
|
||||
{
|
||||
max-width: 4em;
|
||||
}
|
|
@ -1,98 +0,0 @@
|
|||
<?php
|
||||
|
||||
namespace Paheko;
|
||||
|
||||
use Paheko\Plugin\RecusFiscaux\Personne;
|
||||
use Paheko\Plugin\RecusFiscaux\Utils;
|
||||
|
||||
// ------------------------------------------------------------
|
||||
// récupérer les infos du formulaire
|
||||
// ------------------------------------------------------------
|
||||
|
||||
// vérifier qu'on a bien sélectionné une activité ou un compte
|
||||
if (! isset($_SESSION['tauxSelectionnes'])
|
||||
&&
|
||||
null === f('tarifs')
|
||||
&&
|
||||
null === f('comptes'))
|
||||
{
|
||||
\Paheko\Utils::redirect(\Paheko\Utils::plugin_url() . 'index.php');
|
||||
}
|
||||
|
||||
// tarifs sélectionnés
|
||||
if (null !== f('tarifs')) {
|
||||
$tarifsSelectionnes = f('tarifs');
|
||||
} else if (! isset($_SESSION['tauxSelectionnes'])) {
|
||||
$tarifsSelectionnes = [];
|
||||
}
|
||||
// error_log("\ntarifsSelectionnes=" . print_r($tarifsSelectionnes, true));
|
||||
// comptes sélectionnés
|
||||
if (null !== f('comptes')) {
|
||||
$_SESSION['comptesSelectionnes'] = f('comptes');
|
||||
// error_log("\ncomptesSelectionnes=" . print_r($_SESSION['comptesSelectionnes'], true));
|
||||
} /*
|
||||
else if (! isset($_SESSION['tauxSelectionnes'])) {
|
||||
$_SESSION['comptesSelectionnes'] = [];
|
||||
}
|
||||
*/
|
||||
|
||||
// taux de réduction associés
|
||||
$tauxSelectionnes = array();
|
||||
if (isset($tarifsSelectionnes))
|
||||
{
|
||||
foreach ($tarifsSelectionnes as $idTarif)
|
||||
{
|
||||
$nomRadio = "taux_reduction_" . $idTarif;
|
||||
$tauxSelectionnes[$idTarif] = f("$nomRadio");
|
||||
}
|
||||
}
|
||||
if (isset($_SESSION['comptesSelectionnes']))
|
||||
{
|
||||
foreach ($_SESSION['comptesSelectionnes'] as $idCompte)
|
||||
{
|
||||
$nomRadio = "taux_reduction_" . $idCompte;
|
||||
$tauxSelectionnes[$idCompte] = f("$nomRadio");
|
||||
}
|
||||
}
|
||||
$_SESSION['tauxSelectionnes'] = $tauxSelectionnes;
|
||||
|
||||
$lesTarifs = array_map(fn($elem) : string =>
|
||||
strpos($elem, '_') !== false ? substr($elem, 0, strpos($elem, '_')) : "",
|
||||
$tarifsSelectionnes);
|
||||
$lesComptes = array_map(fn($elem) : string =>
|
||||
strpos($elem, '_') !== false ? substr($elem, 1 + strpos($elem, '_')) : "",
|
||||
$tarifsSelectionnes);
|
||||
|
||||
# versements des tarifs sélectionnées et de leur compte associé
|
||||
if (count($lesTarifs) != 0)
|
||||
{
|
||||
$_SESSION['lesVersements'] =
|
||||
Utils::getVersementsTarifsComptes(
|
||||
$_SESSION['annee_recu'],
|
||||
$lesTarifs,
|
||||
$lesComptes,
|
||||
$champsNom);
|
||||
// error_log("lesVersements=" . print_r($_SESSION['lesVersements'], true));
|
||||
}
|
||||
|
||||
// ajouter les versements sans tarif (tri par nom, compte, date)
|
||||
if (isset($_SESSION['comptesSelectionnes']))
|
||||
{
|
||||
$versementsSansTarif = Utils::getVersementsComptes($_SESSION['annee_recu'],
|
||||
$_SESSION['comptesSelectionnes'],
|
||||
$champsNom);
|
||||
foreach ($versementsSansTarif as $versement)
|
||||
{
|
||||
$_SESSION['lesVersements'][] = $versement;
|
||||
}
|
||||
}
|
||||
//error_log("lesVersements=" . print_r($_SESSION['lesVersements'], true));
|
||||
|
||||
// préparation de l'affichage
|
||||
$tpl->assign('lesVersements', $_SESSION['lesVersements']);
|
||||
$tpl->assign('annee_recu', $_SESSION['annee_recu']);
|
||||
$tpl->assign('plugin_css', ['style.css']);
|
||||
|
||||
// envoyer au template
|
||||
$tpl->display(PLUGIN_ROOT . '/templates/versements_activites.tpl');
|
||||
|
|
@ -1,34 +0,0 @@
|
|||
<?php
|
||||
|
||||
namespace Paheko;
|
||||
|
||||
use Paheko\Plugin\RecusFiscaux\Personne;
|
||||
use Paheko\Plugin\RecusFiscaux\Utils;
|
||||
|
||||
// vérifier si le taux de réduction a été sélectionné au préalable
|
||||
$taux = f('taux_reduction');
|
||||
if (! isset($_SESSION['taux_reduction'])
|
||||
&&
|
||||
null === $taux)
|
||||
{
|
||||
\Paheko\Utils::redirect(\Paheko\Utils::plugin_url() . 'index.php');
|
||||
}
|
||||
if (null !== $taux) {
|
||||
$_SESSION['taux_reduction'] = $taux;
|
||||
}
|
||||
|
||||
// versements par personne
|
||||
$_SESSION['lesVersements'] = Utils::getVersementsPersonnes(
|
||||
$_SESSION['annee_recu'],
|
||||
'like',
|
||||
'7%',
|
||||
$champsNom);
|
||||
|
||||
// préparation de l'affichage
|
||||
$tpl->assign('lesVersements', $_SESSION['lesVersements']);
|
||||
$tpl->assign('annee_recu', $_SESSION['annee_recu']);
|
||||
$tpl->assign('plugin_css', ['style.css']);
|
||||
|
||||
// envoyer au template
|
||||
$tpl->assign('plugin_config', $plugin->getConfig());
|
||||
$tpl->display(PLUGIN_ROOT . '/templates/versements_personnes.tpl');
|
20
config.json
20
config.json
|
@ -2,15 +2,15 @@
|
|||
"articlesCGI" : [
|
||||
{
|
||||
"titre" : "200",
|
||||
"valeur" : false
|
||||
"valeur" : 0
|
||||
},
|
||||
{
|
||||
"titre" : "238 bis",
|
||||
"valeur" : false
|
||||
"valeur" : 0
|
||||
},
|
||||
{
|
||||
"titre" : "978",
|
||||
"valeur" : false
|
||||
"valeur" : 0
|
||||
}
|
||||
],
|
||||
"reduction" : [
|
||||
|
@ -18,21 +18,13 @@
|
|||
"taux" : "normal",
|
||||
"ligne" : "UF",
|
||||
"remarque" : "",
|
||||
"valeur" : false
|
||||
"valeur" : 0
|
||||
},
|
||||
{
|
||||
"taux" : "majoré",
|
||||
"ligne" : "UD",
|
||||
"remarque" : "aide aux personnes en difficulté",
|
||||
"valeur" : false
|
||||
"valeur" : 0
|
||||
}
|
||||
],
|
||||
"numerotation" : {
|
||||
"prefixe" : "",
|
||||
"annee" : false,
|
||||
"membre" : false,
|
||||
"sequentiel" : false,
|
||||
"valeur_init": 1
|
||||
},
|
||||
"imprimerCourriel" : false
|
||||
]
|
||||
}
|
||||
|
|
|
@ -0,0 +1,8 @@
|
|||
nom="Reçus fiscaux"
|
||||
description="Génération de reçus fiscaux pour les dons des membres"
|
||||
auteur="jce"
|
||||
url="https://git.roflcopter.fr/lesanges/recus-fiscaux-garradin"
|
||||
version="0.6.4"
|
||||
menu=1
|
||||
config=1
|
||||
min_version="1.1"
|
27
install.php
27
install.php
|
@ -1,23 +1,10 @@
|
|||
<?php
|
||||
namespace Paheko;
|
||||
|
||||
use Paheko\Files\Files;
|
||||
|
||||
$nom_plugin = $plugin->get('name');
|
||||
const SIGNATURE_DEFAUT = 'default_signature.png';
|
||||
const CONFIG_INIT = 'config.json';
|
||||
|
||||
// configuration initiale
|
||||
$config_init = json_decode(file_get_contents(Plugins::getPath($nom_plugin) . '/' . CONFIG_INIT),
|
||||
true);
|
||||
|
||||
// enregistrer dans la config du plugin
|
||||
foreach ($config_init as $cle => $valeur) {
|
||||
$plugin->setConfigProperty($cle, $valeur);
|
||||
}
|
||||
$plugin->save();
|
||||
namespace Garradin;
|
||||
use Garradin\Entities\Files\File;
|
||||
|
||||
// « signature » par défaut à remplacer (voir l'onglet de configuration)
|
||||
$path = __DIR__ . '/data/' . SIGNATURE_DEFAUT;
|
||||
$default_signature_file = Files::createFromPath('ext/' . $nom_plugin . '/' . SIGNATURE_DEFAUT,
|
||||
$path);
|
||||
$path = __DIR__ . '/data/default_signature.png';
|
||||
$default_signature_file = (new File)->createAndStore('skel/plugin/recusfiscaux',
|
||||
'default_signature.png',
|
||||
$path,
|
||||
null);
|
||||
|
|
|
@ -0,0 +1,33 @@
|
|||
<?php
|
||||
|
||||
namespace Garradin\Plugin\RecusFiscaux;
|
||||
/*
|
||||
* information d'une activité
|
||||
*/
|
||||
class Activite
|
||||
{
|
||||
public $id;
|
||||
public $label;
|
||||
public $description;
|
||||
|
||||
public function __construct(
|
||||
$id,
|
||||
$label,
|
||||
$description)
|
||||
{
|
||||
$this->id = $id;
|
||||
$this->label = $label;
|
||||
$this->description = $description;
|
||||
}
|
||||
|
||||
/*
|
||||
* @return instance de Activite initialisée avec l'objet o
|
||||
*/
|
||||
public static function copier($o)
|
||||
{
|
||||
return new Activite(
|
||||
$o->id,
|
||||
$o->label,
|
||||
$o->description);
|
||||
}
|
||||
}
|
|
@ -1,6 +1,6 @@
|
|||
<?php
|
||||
|
||||
namespace Paheko\Plugin\RecusFiscaux;
|
||||
namespace Garradin\Plugin\RecusFiscaux;
|
||||
|
||||
/**
|
||||
* rassembler les infos d'une personne
|
||||
|
@ -8,35 +8,29 @@ namespace Paheko\Plugin\RecusFiscaux;
|
|||
class Personne
|
||||
{
|
||||
public $id;
|
||||
public $numero;
|
||||
public $courriel;
|
||||
public $rang; // par ordre alpha de nomPrenom ; sert aux tris
|
||||
public $nomPrenom;
|
||||
public $adresse;
|
||||
public $codePostal;
|
||||
public $ville;
|
||||
public $courriel;
|
||||
public $versements; // versements par taux de réduction
|
||||
|
||||
public function __construct(
|
||||
$id,
|
||||
$numero,
|
||||
$courriel,
|
||||
$rang,
|
||||
$nomPrenom,
|
||||
$adresse,
|
||||
$codePostal,
|
||||
$ville
|
||||
$ville,
|
||||
$courriel = ""
|
||||
)
|
||||
{
|
||||
$this->id = $id;
|
||||
$this->numero = $numero;
|
||||
$this->courriel = $courriel;
|
||||
$this->rang = $rang;
|
||||
$this->nomPrenom = $nomPrenom;
|
||||
$this->adresse = $adresse;
|
||||
$this->codePostal = $codePostal;
|
||||
$this->ville = $ville;
|
||||
$this->versements = array(); // clé = tarif, valeur = Versement
|
||||
$this->courriel = $courriel;
|
||||
$this->versements = array(); // clé = tarif, valeur = montant
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -46,37 +40,30 @@ class Personne
|
|||
{
|
||||
return new Personne(
|
||||
$this->id,
|
||||
$this->numero,
|
||||
$this->courriel,
|
||||
$this->rang,
|
||||
$this->nomPrenom,
|
||||
$this->adresse,
|
||||
$this->codePostal,
|
||||
$this->ville);
|
||||
$this->ville,
|
||||
$this->courriel);
|
||||
}
|
||||
|
||||
/**
|
||||
* ajouter un versement
|
||||
* @param $tauxReduction
|
||||
* @param $montant
|
||||
* @param $dateMin
|
||||
* @param $dateMax
|
||||
*/
|
||||
public function ajouterVersement(
|
||||
$tauxReduction,
|
||||
$montant,
|
||||
$dateMin,
|
||||
$dateMax
|
||||
$montant
|
||||
)
|
||||
{
|
||||
if (array_key_exists($tauxReduction, $this->versements))
|
||||
{
|
||||
$this->versements[$tauxReduction]->ajouter($montant, $dateMin, $dateMax);
|
||||
$this->versements[$tauxReduction] += $montant;
|
||||
}
|
||||
else
|
||||
{
|
||||
$this->versements[$tauxReduction] = new Versement($montant, $dateMin, $dateMax);
|
||||
$this->versements[$tauxReduction] = $montant;
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
@ -0,0 +1,41 @@
|
|||
<?php
|
||||
|
||||
namespace Garradin\Plugin\RecusFiscaux;
|
||||
/*
|
||||
* information d'un tarif
|
||||
*/
|
||||
class Tarif
|
||||
{
|
||||
public $id;
|
||||
public $idActivite; // activité associée
|
||||
public $label;
|
||||
public $description;
|
||||
public $montant;
|
||||
|
||||
public function __construct(
|
||||
$id,
|
||||
$idActivite,
|
||||
$label,
|
||||
$description,
|
||||
$montant)
|
||||
{
|
||||
$this->id = $id;
|
||||
$this->idActivite = $idActivite;
|
||||
$this->label = $label;
|
||||
$this->description = $description;
|
||||
$this->montant = $montant;
|
||||
}
|
||||
|
||||
/*
|
||||
* @return instance de Tarif initialisée avec l'objet o
|
||||
*/
|
||||
public static function copier($o)
|
||||
{
|
||||
return new Tarif(
|
||||
$o->id,
|
||||
$o->idActivite,
|
||||
$o->label,
|
||||
$o->description,
|
||||
$o->montant);
|
||||
}
|
||||
}
|
481
lib/Utils.php
481
lib/Utils.php
|
@ -1,358 +1,202 @@
|
|||
<?php
|
||||
|
||||
namespace Paheko\Plugin\RecusFiscaux;
|
||||
namespace Garradin\Plugin\RecusFiscaux;
|
||||
|
||||
use Paheko\DB;
|
||||
use Paheko\Users\DynamicFields;
|
||||
use Garradin\DB;
|
||||
use KD2\ZipWriter;
|
||||
|
||||
class Utils
|
||||
{
|
||||
/**
|
||||
* @return informations sur les tarifs
|
||||
* @return tarifs demandés
|
||||
* @param $tarifs
|
||||
*/
|
||||
public static function getTarifs()
|
||||
public static function getTarifs(array $tarifs) : array
|
||||
{
|
||||
$db = DB::getInstance();
|
||||
$sql = sprintf(
|
||||
'SELECT
|
||||
id,
|
||||
id_service as idActivite,
|
||||
label,
|
||||
description,
|
||||
amount as montant
|
||||
FROM services_fees');
|
||||
return Utils::toAssoc($db->get($sql), 'id');
|
||||
}
|
||||
|
||||
/**
|
||||
* @return informations sur les activités
|
||||
*/
|
||||
public static function getActivites()
|
||||
{
|
||||
$db = DB::getInstance();
|
||||
$sql = sprintf(
|
||||
'SELECT
|
||||
services.id,
|
||||
services.label,
|
||||
services.description
|
||||
FROM services');
|
||||
return Utils::toAssoc($db->get($sql), 'id');
|
||||
}
|
||||
|
||||
/**
|
||||
* @return comptes sur lesquels des versements de membres ont été faits
|
||||
* @param string $annee
|
||||
* @param $op : opérateur de combinaison des comptes
|
||||
* @param array $comptes
|
||||
*/
|
||||
public static function getComptes($annee, $op, $comptes)
|
||||
{
|
||||
$db = DB::getInstance();
|
||||
$sql = sprintf(
|
||||
'SELECT
|
||||
acc_accounts.id,
|
||||
acc_years.label,
|
||||
acc_accounts.code as codeCompte,
|
||||
acc_accounts.label as nomCompte
|
||||
FROM acc_transactions_users
|
||||
INNER JOIN users
|
||||
ON acc_transactions_users.id_user = users.id
|
||||
INNER JOIN acc_transactions
|
||||
ON acc_transactions_users.id_transaction = acc_transactions.id
|
||||
INNER JOIN acc_transactions_lines
|
||||
ON acc_transactions_lines.id_transaction = acc_transactions.id
|
||||
INNER JOIN acc_accounts
|
||||
ON acc_transactions_lines.id_account = acc_accounts.id
|
||||
INNER JOIN acc_years
|
||||
ON acc_transactions.id_year = acc_years.id
|
||||
WHERE
|
||||
(strftime("%%Y", acc_transactions.date) = "%d"
|
||||
AND
|
||||
acc_accounts.%s
|
||||
)
|
||||
GROUP by acc_accounts.id
|
||||
ORDER by acc_accounts.code',
|
||||
$annee,
|
||||
$db->where('code', $op, $comptes)
|
||||
);
|
||||
return Utils::toAssoc($db->get($sql), 'id');
|
||||
}
|
||||
|
||||
/**
|
||||
* @return tarifs des activités et comptes ayant des versements de
|
||||
* membres dans l'année
|
||||
* @param string $annee
|
||||
* @param $op : opérateur de combinaison des comptes
|
||||
* @param array $comptes
|
||||
*/
|
||||
public static function getTarifsComptes($annee, $op, $comptes)
|
||||
{
|
||||
$db = DB::getInstance();
|
||||
$sql = sprintf(
|
||||
'
|
||||
SELECT
|
||||
services_users.id_fee as idTarif,
|
||||
acc_accounts.id as idCompte,
|
||||
acc_accounts.code as codeCompte
|
||||
FROM acc_transactions_users
|
||||
INNER JOIN acc_transactions
|
||||
ON acc_transactions_users.id_transaction = acc_transactions.id
|
||||
INNER JOIN services_users
|
||||
ON acc_transactions_users.id_service_user = services_users.id
|
||||
INNER JOIN services_fees
|
||||
ON services_users.id_fee = services_fees.id
|
||||
INNER JOIN acc_transactions_lines
|
||||
ON acc_transactions_lines.id_transaction = acc_transactions.id
|
||||
INNER JOIN acc_accounts
|
||||
ON acc_transactions_lines.id_account = acc_accounts.id
|
||||
WHERE
|
||||
(strftime("%%Y", acc_transactions.date) = "%d"
|
||||
AND
|
||||
acc_accounts.%s
|
||||
)
|
||||
GROUP BY services_fees.id, acc_accounts.code
|
||||
ORDER BY acc_accounts.code
|
||||
',
|
||||
$annee,
|
||||
$db->where('code', $op, $comptes)
|
||||
);
|
||||
'SELECT id, id_service as idActivite, label, description, amount as montant
|
||||
FROM services_fees
|
||||
WHERE services_fees.%s',
|
||||
$db->where('id', $tarifs));
|
||||
return $db->get($sql);
|
||||
}
|
||||
|
||||
/**
|
||||
* faire un tableau associatif avec le résultat d'une requête
|
||||
* @return activités correspondant aux tarifs demandés
|
||||
* @param $tarifs
|
||||
*/
|
||||
static function toAssoc($array, $nomCle)
|
||||
public static function getActivites(array $tarifs) : array
|
||||
{
|
||||
$assoc = array();
|
||||
foreach ($array as $elem)
|
||||
{
|
||||
$ro = new \ReflectionObject($elem);
|
||||
$proprietes = $ro->getProperties();
|
||||
$obj = new \stdClass();
|
||||
foreach ($proprietes as $p)
|
||||
{
|
||||
$pname = $p->getName();
|
||||
if ($pname == $nomCle) {
|
||||
$key = $p->getValue($elem);
|
||||
}
|
||||
else {
|
||||
$obj->$pname = $p->getValue($elem);
|
||||
}
|
||||
}
|
||||
$assoc[$key] = $obj;
|
||||
}
|
||||
return $assoc;
|
||||
$db = DB::getInstance();
|
||||
$sql = sprintf(
|
||||
'SELECT services.id, services.label, services.description
|
||||
FROM services
|
||||
LEFT JOIN services_fees ON services_fees.id_service = services.id
|
||||
WHERE services_fees.%s
|
||||
GROUP BY services.id',
|
||||
$db->where('id', $tarifs));
|
||||
return $db->get($sql);
|
||||
}
|
||||
|
||||
/**
|
||||
* @return versements correspondants à l'année donnée
|
||||
* @param $annee
|
||||
* @param array $champsNom : liste non vide des champs de nom/prénom
|
||||
* @param $champsNom : liste non vide des champs de nom/prénom
|
||||
*/
|
||||
public static function getVersementsPersonnes($annee, $op, $comptes, $champsNom)
|
||||
public static function getVersementsPersonnes($annee, array $champsNom) : array
|
||||
{
|
||||
$db = DB::getInstance();
|
||||
$tri = Utils::combinerTri($champsNom);
|
||||
$sql = sprintf(
|
||||
'SELECT
|
||||
users.id as idUser,
|
||||
acc_accounts.id as idCompte,
|
||||
acc_accounts.code as codeCompte,
|
||||
membres.id as idUser,
|
||||
acc_transactions_lines.credit as versement,
|
||||
acc_transactions.date
|
||||
FROM acc_transactions_users
|
||||
INNER JOIN users
|
||||
ON acc_transactions_users.id_user = users.id
|
||||
INNER JOIN acc_transactions
|
||||
ON acc_transactions_users.id_transaction = acc_transactions.id
|
||||
INNER JOIN acc_transactions_lines
|
||||
ON acc_transactions_lines.id_transaction = acc_transactions.id
|
||||
INNER JOIN acc_accounts
|
||||
ON acc_transactions_lines.id_account = acc_accounts.id
|
||||
INNER JOIN membres on acc_transactions_users.id_user = membres.id
|
||||
INNER JOIN acc_transactions on acc_transactions_users.id_transaction = acc_transactions.id
|
||||
INNER JOIN services_users on acc_transactions_users.id_service_user = services_users.id
|
||||
INNER JOIN acc_transactions_lines on acc_transactions_lines.id_transaction = acc_transactions.id
|
||||
WHERE
|
||||
(strftime("%%Y", acc_transactions.date) = "%d"
|
||||
(strftime(%s, acc_transactions.date) = "%d"
|
||||
AND
|
||||
acc_accounts.%s
|
||||
)
|
||||
GROUP BY acc_transactions.id, acc_accounts.id
|
||||
ORDER by %s, acc_accounts.code, acc_transactions.date',
|
||||
acc_transactions_lines.credit > 0)
|
||||
ORDER by %s, acc_transactions.date',
|
||||
'"%Y"',
|
||||
$annee,
|
||||
$db->where('code', $op, $comptes),
|
||||
$tri
|
||||
);
|
||||
return $db->get($sql);
|
||||
}
|
||||
|
||||
/**
|
||||
* @return versements correspondants à :
|
||||
* @param $annee : année fiscale
|
||||
* @param array $tarifs : tarifs sélectionnés
|
||||
* @param array $comptes : comptes associés aux tarifs
|
||||
* @param array $champsNom : liste non vide des champs de nom/prénom
|
||||
* @remarks tri par tarif, nom, compte, date
|
||||
* @return versements correspondants à l'année et aux tarifs donnés
|
||||
* triés par tarif, nom, date
|
||||
* @param $annee
|
||||
* @param $tarifs
|
||||
* @param $champsNom : liste non vide des champs de nom/prénom
|
||||
*/
|
||||
public static function getVersementsTarifsComptes($annee,
|
||||
$tarifs,
|
||||
$comptes,
|
||||
$champsNom)
|
||||
public static function getVersementsTarifs($annee,
|
||||
array $tarifs,
|
||||
array $champsNom) : array
|
||||
{
|
||||
$db = DB::getInstance();
|
||||
$tri = Utils::combinerTri($champsNom);
|
||||
$condition = Utils::combinerTarifsComptes($tarifs, $comptes);
|
||||
$sql = sprintf(
|
||||
'SELECT
|
||||
services_fees.id as idTarif,
|
||||
acc_accounts.id as idCompte,
|
||||
acc_accounts.code as codeCompte,
|
||||
users.id as idUser,
|
||||
membres.id as idUser,
|
||||
acc_transactions_lines.credit as versement,
|
||||
acc_transactions.date
|
||||
FROM acc_transactions_users
|
||||
INNER JOIN users
|
||||
ON acc_transactions_users.id_user = users.id
|
||||
INNER JOIN acc_transactions
|
||||
ON acc_transactions_users.id_transaction = acc_transactions.id
|
||||
INNER JOIN services_users
|
||||
ON acc_transactions_users.id_service_user = services_users.id
|
||||
INNER JOIN services_fees
|
||||
ON services_users.id_fee = services_fees.id
|
||||
INNER JOIN acc_transactions_lines
|
||||
ON acc_transactions_lines.id_transaction = acc_transactions.id
|
||||
INNER JOIN acc_accounts
|
||||
ON acc_transactions_lines.id_account = acc_accounts.id
|
||||
INNER JOIN membres on acc_transactions_users.id_user = membres.id
|
||||
INNER JOIN acc_transactions on acc_transactions_users.id_transaction = acc_transactions.id
|
||||
INNER JOIN services_users on acc_transactions_users.id_service_user = services_users.id
|
||||
INNER JOIN services_fees on services_users.id_fee = services_fees.id
|
||||
INNER JOIN acc_transactions_lines on acc_transactions_lines.id_transaction = acc_transactions.id
|
||||
WHERE
|
||||
(strftime("%%Y", acc_transactions.date) = "%d"
|
||||
(strftime(%s, acc_transactions.date) = "%d"
|
||||
AND
|
||||
%s
|
||||
)
|
||||
GROUP BY acc_transactions.id, acc_accounts.id
|
||||
ORDER by %s, acc_accounts.code, acc_transactions.date',
|
||||
services_fees.%s
|
||||
AND
|
||||
acc_transactions_lines.credit > 0)
|
||||
ORDER by services_fees.id, %s, acc_transactions.date',
|
||||
'"%Y"',
|
||||
$annee,
|
||||
$condition,
|
||||
$db->where('id', $tarifs),
|
||||
$tri
|
||||
);
|
||||
// error_log("\ngetVersementsTarifsComptes : sql=" . $sql);
|
||||
return $db->get($sql);
|
||||
}
|
||||
|
||||
/**
|
||||
* @return versements correspondants à :
|
||||
* @param $annee année fiscale
|
||||
* @param $comptesIsoles comptes NON associés à un tarif
|
||||
* @param array $champsNom : liste non vide des champs de nom/prénom
|
||||
* @remarks tri par nom, compte, date
|
||||
* @return versements correspondants à l'année et aux comptes donnés
|
||||
* @param $annee
|
||||
* @param $comptes
|
||||
* @param $champsNom : liste non vide des champs de nom/prénom
|
||||
*/
|
||||
public static function getVersementsComptes($annee,
|
||||
$comptesIsoles,
|
||||
$champsNom)
|
||||
array $comptes,
|
||||
array $champsNom) : array
|
||||
{
|
||||
$db = DB::getInstance();
|
||||
$tri = Utils::combinerTri($champsNom);
|
||||
$sql = sprintf(
|
||||
'
|
||||
SELECT
|
||||
0 as idTarif,
|
||||
acc_accounts.id as idCompte,
|
||||
acc_accounts.code as codeCompte,
|
||||
users.id as idUser,
|
||||
'SELECT
|
||||
acc_accounts.code as compte,
|
||||
membres.id as idUser,
|
||||
acc_transactions_lines.credit as versement,
|
||||
acc_transactions.date
|
||||
FROM acc_transactions_users
|
||||
INNER JOIN users
|
||||
ON acc_transactions_users.id_user = users.id
|
||||
INNER JOIN acc_transactions
|
||||
ON acc_transactions_users.id_transaction = acc_transactions.id
|
||||
INNER JOIN acc_transactions_lines
|
||||
ON acc_transactions_lines.id_transaction = acc_transactions.id
|
||||
INNER JOIN acc_accounts
|
||||
ON acc_transactions_lines.id_account = acc_accounts.id
|
||||
INNER JOIN membres on acc_transactions_users.id_user = membres.id
|
||||
INNER JOIN acc_transactions on acc_transactions_users.id_transaction = acc_transactions.id
|
||||
INNER JOIN services_users on acc_transactions_users.id_service_user = services_users.id
|
||||
INNER JOIN acc_transactions_lines on acc_transactions_lines.id_transaction = acc_transactions.id
|
||||
WHERE
|
||||
(strftime("%%Y", acc_transactions.date) = "%d"
|
||||
(strftime(%s, acc_transactions.date) = "%d"
|
||||
AND
|
||||
acc_accounts.%s
|
||||
)
|
||||
GROUP BY acc_transactions.id, acc_accounts.id
|
||||
ORDER by %s, acc_accounts.code, acc_transactions.date
|
||||
',
|
||||
AND
|
||||
acc_transactions_lines.credit > 0)
|
||||
ORDER by acc_accounts.code, %s, acc_transactions.date',
|
||||
'"%Y"',
|
||||
$annee,
|
||||
$db->where('id', 'in', $comptesIsoles),
|
||||
$db->where('code', $comptes),
|
||||
$tri
|
||||
);
|
||||
return $db->get($sql);
|
||||
}
|
||||
|
||||
/**
|
||||
* @return personnes ayant versé des dons pour une année donnée
|
||||
* @param $annee
|
||||
* @param array $champsNom : champs qui définissent le nom et le prénom d'une personne
|
||||
* Versements totaux par personne pour une année donnée
|
||||
* @param année
|
||||
* @param $champsNom : liste non vide des champs de nom/prénom
|
||||
*/
|
||||
public static function getDonateurs($annee, $champsNom) : array
|
||||
public static function getVersementsTotaux($annee, array $champsNom) : array
|
||||
{
|
||||
// concaténer les champs nom/prénoms pour la sélection
|
||||
$nom = Utils::combinerChamps($champsNom);
|
||||
// et pour le tri
|
||||
$tri = Utils::combinerTri($champsNom);
|
||||
$sql = sprintf(
|
||||
'SELECT
|
||||
users.id as idUser,
|
||||
users.numero,
|
||||
users.email,
|
||||
row_number() over(order by %s) as rang,
|
||||
%s as nom,
|
||||
users.adresse as adresse,
|
||||
users.code_postal as codePostal,
|
||||
users.ville as ville
|
||||
membres.id as idUser,
|
||||
sum(acc_transactions_lines.credit) AS versement
|
||||
FROM
|
||||
acc_transactions_users,
|
||||
users,
|
||||
membres,
|
||||
acc_transactions
|
||||
INNER JOIN acc_transactions_lines
|
||||
ON acc_transactions_lines.id_transaction = acc_transactions.id
|
||||
WHERE (
|
||||
strftime("%%Y", acc_transactions.date) = "%d"
|
||||
strftime(%s, acc_transactions.date) = "%d"
|
||||
AND
|
||||
acc_transactions_lines.credit > 0
|
||||
AND
|
||||
acc_transactions_users.id_transaction = acc_transactions.id
|
||||
AND
|
||||
acc_transactions_users.id_user = users.id
|
||||
acc_transactions_users.id_user = membres.id
|
||||
)
|
||||
GROUP by users.id
|
||||
ORDER by %1$s COLLATE U_NOCASE
|
||||
',
|
||||
$tri,
|
||||
$nom,
|
||||
$annee
|
||||
);
|
||||
$donateurs = array();
|
||||
foreach (DB::getInstance()->iterate($sql) as $personne)
|
||||
{
|
||||
$donateurs[$personne->idUser] = new Personne($personne->idUser,
|
||||
$personne->numero,
|
||||
$personne->email,
|
||||
$personne->rang,
|
||||
$personne->nom,
|
||||
$personne->adresse,
|
||||
$personne->codePostal,
|
||||
$personne->ville);
|
||||
}
|
||||
return $donateurs;
|
||||
GROUP by acc_transactions_users.id_user
|
||||
ORDER by %s COLLATE U_NOCASE',
|
||||
'"%Y"',
|
||||
$annee,
|
||||
$tri);
|
||||
return DB::getInstance()->get($sql);
|
||||
}
|
||||
|
||||
/**
|
||||
* combiner les champs avec un opérateur
|
||||
* @param array $champs : liste (non vide) de champs
|
||||
* @param $champs : liste (non vide) de champs
|
||||
* @return chaîne combinée
|
||||
*/
|
||||
private static function combinerChamps($champs)
|
||||
private static function combinerChamps(array $champs) : string
|
||||
{
|
||||
$op = ' || " " || ';
|
||||
$result = 'ifnull(users.' . $champs[0] . ', "")';
|
||||
$result = 'ifnull(membres.' . $champs[0] . ', "")';
|
||||
for ($i = 1; $i < count($champs); ++$i)
|
||||
{
|
||||
$result .= $op . 'ifnull(users.' . $champs[$i] . ', "")';
|
||||
$result .= $op . 'ifnull(membres.' . $champs[$i] . ', "")';
|
||||
}
|
||||
return 'trim(' . $result . ')';
|
||||
return $result;
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -362,46 +206,118 @@ class Utils
|
|||
*/
|
||||
private static function combinerTri(array $champs) : string
|
||||
{
|
||||
$tri = 'users.' . $champs[0];
|
||||
$tri = 'membres.' . $champs[0];
|
||||
for ($i = 1; $i < count($champs); ++$i)
|
||||
{
|
||||
$tri .= ', users.' . $champs[$i];
|
||||
$tri .= ', membres.' . $champs[$i];
|
||||
}
|
||||
return $tri;
|
||||
}
|
||||
|
||||
/**
|
||||
* combiner chaque tarif avec le numéro de compte associé
|
||||
* @return personnes ayant versé des dons pour une année donnée
|
||||
* @param $annee
|
||||
* @param $champsNom : champs qui définissent le nom et le prénom d'une personne
|
||||
*/
|
||||
private static function combinerTarifsComptes($tarifs, $comptes)
|
||||
public static function getDonateurs($annee, array $champsNom) : array
|
||||
{
|
||||
$condition = '(';
|
||||
$lesCond = array_map(fn($e1, $e2) : string =>
|
||||
"(services_fees.id = '$e1' AND acc_accounts.id = '$e2')",
|
||||
$tarifs, $comptes);
|
||||
$nb = 0;
|
||||
foreach ($lesCond as $cond)
|
||||
// concaténer les champs nom/prénoms pour la sélection
|
||||
$nom = 'trim(' . Utils::combinerChamps($champsNom) . ') as nom,';
|
||||
// et pour le tri
|
||||
$tri = Utils::combinerTri($champsNom);
|
||||
$sql =
|
||||
"SELECT
|
||||
membres.id as idUser,
|
||||
" .
|
||||
$nom . "
|
||||
membres.adresse as adresse,
|
||||
membres.code_postal as codePostal,
|
||||
membres.ville as ville
|
||||
FROM
|
||||
acc_transactions_users,
|
||||
membres,
|
||||
acc_transactions
|
||||
INNER JOIN acc_transactions_lines
|
||||
ON acc_transactions_lines.id_transaction = acc_transactions.id
|
||||
WHERE (
|
||||
strftime('%Y', acc_transactions.date) = ?
|
||||
AND
|
||||
acc_transactions_lines.credit > 0
|
||||
AND
|
||||
acc_transactions_users.id_transaction = acc_transactions.id
|
||||
AND
|
||||
acc_transactions_users.id_user = membres.id
|
||||
)
|
||||
GROUP by membres.id
|
||||
ORDER by " . $tri . " COLLATE U_NOCASE
|
||||
";
|
||||
$donateurs = array();
|
||||
foreach (DB::getInstance()->iterate($sql, $annee) as $personne)
|
||||
{
|
||||
if ($nb > 0) { $condition .= ' OR '; }
|
||||
$condition .= $cond;
|
||||
++$nb;
|
||||
$donateurs[$personne->idUser] = new Personne($personne->idUser,
|
||||
$personne->nom,
|
||||
$personne->adresse,
|
||||
$personne->codePostal,
|
||||
$personne->ville);
|
||||
}
|
||||
$condition .= ')';
|
||||
return $condition;
|
||||
return $donateurs;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return liste des années fiscales
|
||||
* renvoie un tableau avec les remarques de chaque taux de réduction
|
||||
*/
|
||||
public static function getLignesReduction(array $lesTaux) : array
|
||||
{
|
||||
foreach ($lesTaux as $elem)
|
||||
{
|
||||
/*
|
||||
$ligne = "taux " . $elem->taux . ", ligne " . $elem->ligne;
|
||||
if ($elem->remarque != "") {
|
||||
$ligne .= ", " . $elem->remarque;
|
||||
}
|
||||
$lignes[$elem->taux] = $ligne;
|
||||
*/
|
||||
$lignes[$elem->taux] = $elem->remarque;
|
||||
}
|
||||
return $lignes;
|
||||
}
|
||||
|
||||
public static function getLigneReduction($taux)
|
||||
{
|
||||
return $_SESSION['ligneReduction'][$taux];
|
||||
}
|
||||
|
||||
/**
|
||||
* @return array liste de toutes les activités, tarifs et comptes associés
|
||||
*/
|
||||
public static function getActivitesTarifsEtComptes()
|
||||
{
|
||||
return DB::getInstance()->get(
|
||||
"SELECT
|
||||
services.id as idActivite,
|
||||
services.label as titreActivite,
|
||||
services.description as descActivite,
|
||||
services_fees.id as idTarif,
|
||||
services_fees.label as titreTarif,
|
||||
services_fees.description as descTarif,
|
||||
acc_accounts.code as numeroCpt,
|
||||
acc_accounts.label as nomCpt
|
||||
FROM services
|
||||
LEFT JOIN services_fees ON services_fees.id_service = services.id
|
||||
LEFT JOIN acc_accounts ON services_fees.id_account = acc_accounts.id
|
||||
ORDER BY services.label"
|
||||
);
|
||||
}
|
||||
|
||||
/**
|
||||
* @return array liste des années fiscales
|
||||
*/
|
||||
public static function getAnneesFiscales() : array
|
||||
{
|
||||
$rows = DB::getInstance()->get(
|
||||
"SELECT strftime('%Y', start_date) as annee
|
||||
FROM acc_years
|
||||
UNION
|
||||
SELECT strftime('%Y', end_date) as annee
|
||||
FROM acc_years
|
||||
ORDER by annee DESC"
|
||||
ORDER by start_date DESC"
|
||||
);
|
||||
$anneesFiscales = array();
|
||||
foreach ($rows as $row) {
|
||||
|
@ -410,19 +326,10 @@ class Utils
|
|||
return $anneesFiscales;
|
||||
}
|
||||
|
||||
public static function getLignesReduction($lesTaux)
|
||||
{
|
||||
foreach ($lesTaux as $elem)
|
||||
{
|
||||
$lignes[$elem->taux] = $elem->remarque;
|
||||
}
|
||||
return $lignes;
|
||||
}
|
||||
|
||||
/**
|
||||
* récupérer dans la config du plugin les champs des membres
|
||||
* utilisés pour le nom et le prénom ; ajouter/supprimer les
|
||||
* modifications par rapport à la config paheko
|
||||
* modifications par rapport à la config garradin
|
||||
* @return array tableau des champs : clé = nom, valeur = { titre, position }
|
||||
*/
|
||||
public static function getChampsNom($config, $plugin) : array
|
||||
|
@ -431,11 +338,11 @@ class Utils
|
|||
// pour le nom et le prénom (le tableau est vide si pas mémorisé)
|
||||
$champsNom = (array) $plugin->getConfig('champsNom');
|
||||
|
||||
// récupérer dans la config Paheko les champs des membres
|
||||
// utilisés pour le nom et le prénom
|
||||
$champsPaheko = DynamicFields::getInstance()->listAssocNames();
|
||||
// récupérer dans la config Garradin les champs des membres
|
||||
// utilisés pour le nom et le préno
|
||||
$champsGarradin = $config->get('champs_membres')->listAssocNames();
|
||||
|
||||
foreach ($champsPaheko as $name => $title)
|
||||
foreach ($champsGarradin as $name => $title)
|
||||
{
|
||||
if (stristr($title, 'nom'))
|
||||
{
|
||||
|
@ -452,17 +359,17 @@ class Utils
|
|||
}
|
||||
}
|
||||
// opération symétrique : un champ mémorisé dans la config du
|
||||
// plugin a-t-il disparu de la config paheko ?
|
||||
// plugin a-t-il disparu de la config garradin ?
|
||||
foreach ($champsNom as $nom => $champ)
|
||||
{
|
||||
if (! array_key_exists($nom, $champsPaheko))
|
||||
if (! array_key_exists($nom, $champsGarradin))
|
||||
{
|
||||
// absent => le supprimer
|
||||
unset($champsNom[$nom]);
|
||||
}
|
||||
}
|
||||
// mettre à jour la config du plugin
|
||||
$plugin->setConfigProperty('champsNom', $champsNom);
|
||||
$plugin->setConfig('champsNom', $champsNom);
|
||||
return $champsNom;
|
||||
}
|
||||
|
||||
|
|
|
@ -1,40 +1,24 @@
|
|||
<?php
|
||||
|
||||
namespace Paheko\Plugin\RecusFiscaux;
|
||||
namespace Garradin\Plugin\RecusFiscaux;
|
||||
|
||||
class Versement
|
||||
{
|
||||
public $idActivite;
|
||||
public $idTarif;
|
||||
public $montant;
|
||||
public $dateMin; // estampille
|
||||
public $dateMax; // estampille
|
||||
public $tauxReduction;
|
||||
|
||||
public function __construct(
|
||||
$idActivite,
|
||||
$idTarif,
|
||||
$montant,
|
||||
$dateMin,
|
||||
$dateMax
|
||||
$tauxReduction
|
||||
)
|
||||
{
|
||||
$this->idActivite = $idActivite;
|
||||
$this->idTarif = $idTarif;
|
||||
$this->montant = $montant;
|
||||
$this->dateMin = $dateMin;
|
||||
$this->dateMax = $dateMax;
|
||||
}
|
||||
|
||||
/**
|
||||
* ajouter un versement en fixant les dates min et max
|
||||
* @param $montant
|
||||
* @param $dateMin
|
||||
* @param $dateMax
|
||||
*/
|
||||
public function ajouter($montant, $dateMin, $dateMax)
|
||||
{
|
||||
$this->montant += $montant;
|
||||
if ($dateMin < $this->dateMin)
|
||||
{
|
||||
$this->dateMin = $dateMin;
|
||||
}
|
||||
if ($dateMax > $this->dateMax)
|
||||
{
|
||||
$this->dateMax = $dateMax;
|
||||
}
|
||||
$this->tauxReduction = $tauxReduction;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,8 +0,0 @@
|
|||
name="Reçus fiscaux"
|
||||
description="Génération de reçus fiscaux pour les dons des membres"
|
||||
author="Jean-Christophe Engel"
|
||||
url="https://acloud8.zaclys.com/index.php/s/n9daWAND24T2W3e"
|
||||
version="0.10"
|
||||
menu=1
|
||||
config=1
|
||||
min_version="1.3"
|
|
@ -1,12 +1,12 @@
|
|||
<!-- title -->
|
||||
{include file="_head.tpl" title="%s"|args:$plugin.label current="plugin_%s"|args:$plugin.id}
|
||||
{include file="admin/_head.tpl" title="%s"|args:$plugin.nom current="plugin_%s"|args:$plugin.id}
|
||||
|
||||
<!-- nav bar -->
|
||||
<nav class="tabs">
|
||||
<ul>
|
||||
<li{if $current_nav == 'index'} class="current"{/if}><a href="{plugin_url}">Accueil</a></li>
|
||||
<li{if $current_nav == 'personne'} class="current"{/if}><a href="{plugin_url file="action.php?action=personne"}">Versements par personne</a></li>
|
||||
<li{if $current_nav == 'activite'} class="current"{/if}><a href="{plugin_url file="action.php?action=activite"}">Versements par activité et tarif</a></li>
|
||||
<li{if $current_nav == 'versements'} class="current"{/if}><a href="{plugin_url file="action.php?action=activite"}">Versements par activité et tarif</a></li>
|
||||
{if $session->canAccess($session::SECTION_ACCOUNTING, $session::ACCESS_WRITE)}
|
||||
<li{if $current_nav == 'config'} class="current"{/if}><a href="{plugin_url file="config.php"}">Configuration</a></li>
|
||||
{/if}
|
||||
|
|
|
@ -1,19 +0,0 @@
|
|||
{include file="_head.tpl" title="Changer d'année fiscale"}
|
||||
|
||||
<form method="post" action="{$self_url}" data-focus="1">
|
||||
<fieldset>
|
||||
<legend>Changer l'année fiscale des reçus</legend>
|
||||
<select id="annee_recu" name="annee_recu">
|
||||
{foreach from=$anneesFiscales item="annee"}
|
||||
<option value="{$annee}" {if $annee == $annee_recu} selected{/if}>{$annee}
|
||||
</option>
|
||||
{/foreach}
|
||||
</select>
|
||||
</fieldset>
|
||||
<p class="submit">
|
||||
{csrf_field key=$csrf_key}
|
||||
{button type="submit" name="change" label="Changer" shape="right" class="main"}
|
||||
</p>
|
||||
</form>
|
||||
|
||||
{include file="_foot.tpl"}
|
|
@ -1,21 +1,21 @@
|
|||
<!-- nav bar -->
|
||||
{include file="%s/templates/_nav.tpl"|args:$plugin_root current_nav="config"}
|
||||
|
||||
{form_errors}
|
||||
|
||||
<h2>Configuration</h2>
|
||||
|
||||
{if isset($_GET['ok'])}
|
||||
{if $ok && !$form->hasErrors()}
|
||||
<p class="block confirm">
|
||||
La configuration a bien été enregistrée.
|
||||
</p>
|
||||
{/if}
|
||||
|
||||
{form_errors}
|
||||
|
||||
<form method="post" action="{$self_url}" enctype="multipart/form-data">
|
||||
<fieldset>
|
||||
<dl class="config">
|
||||
<dt><label>Objet (but) de l'association</label> <b title="Champ obligatoire">(obligatoire)</b></dt>
|
||||
{input type="textarea" name="objet_asso" source=$plugin.config label="" required="required" cols="100" rows="3" maxlength=300}
|
||||
{input type="textarea" name="objet_asso" source=$plugin.config label="" required="required" cols="50" rows="4" maxlength=300}
|
||||
</dl>
|
||||
|
||||
<dl class="config">
|
||||
|
@ -23,64 +23,47 @@
|
|||
<b title="Champ obligatoire">(obligatoire ; sélectionnez tous les articles qui s'appliquent à
|
||||
l'association)</b>
|
||||
</dt>
|
||||
<div id="articles_cgi">
|
||||
|
||||
{foreach from=$plugin_config->articlesCGI key="key" item="article"}
|
||||
{*
|
||||
À VÉRIFIER : {input : checked ne fonctionne pas si l'attribut name est un tableau...
|
||||
{input type="checkbox" name="articlesCGI[]" value=$key label=$article.titre}
|
||||
*}
|
||||
|
||||
<div class="article">
|
||||
<input type="checkbox" name="articlesCGI[]" id="article_{$key}" value="{$key}" class="choix"
|
||||
{if $article.valeur == 1}checked{/if} />
|
||||
<label for="article_{$key}">Article {$article.titre}</label>
|
||||
<div>
|
||||
<input type="checkbox" name="articlesCGI[]" value="{$key}" class="choix"
|
||||
{if $article.valeur == 1}checked{/if}>
|
||||
<label>Article {$article.titre}</label>
|
||||
</div>
|
||||
{/foreach}
|
||||
|
||||
</div>
|
||||
</dl>
|
||||
|
||||
|
||||
<dl class="config">
|
||||
<dt><label>Taux de réduction applicables : </label>
|
||||
<b title="Champ obligatoire">(obligatoire ; sélectionnez tous les taux qui s'appliquent à
|
||||
l'association)</b>
|
||||
</dt>
|
||||
<div id="taux_reduction">
|
||||
|
||||
{foreach from=$plugin_config->reduction key="key" item="taux"}
|
||||
<input type="checkbox" name="tauxReduction[]" id="taux_{$key}" value="{$key}" class="choix"
|
||||
{if $taux.valeur == 1}checked{/if} />
|
||||
<label for="taux_{$key}">Taux {$taux.taux}, ligne {$taux.ligne} de la déclaration
|
||||
<div>
|
||||
<input type="checkbox" name="tauxReduction[]" value="{$key}" class="choix"
|
||||
{if $taux.valeur == 1}checked{/if}>
|
||||
<label>Taux {$taux.taux}, ligne {$taux.ligne} de la déclaration
|
||||
{if $taux.remarque !== ""}({$taux.remarque})</label>{/if}
|
||||
{/foreach}
|
||||
|
||||
</div>
|
||||
{/foreach}
|
||||
</dl>
|
||||
</fieldset>
|
||||
|
||||
<fieldset>
|
||||
<legend>Nom, fonction et signature du responsable</legend>
|
||||
<div id="config_nom_fonction">
|
||||
|
||||
{* Nom du responsable *}
|
||||
<dl class="config">
|
||||
{input type="text" name="nom_responsable" source=$plugin.config label="Nom" help="du responsable" required=true maxlength=50}
|
||||
<dt><label>Nom</label></dt>
|
||||
{input type="text" name="nom_responsable" source=$plugin.config label="" maxlength=50}
|
||||
</dl>
|
||||
|
||||
{* Fonction du responsable *}
|
||||
<dl class="config">
|
||||
{input type="text" name="fonction_responsable" source=$plugin.config label="Fonction" help="du responsable" maxlength=50}
|
||||
<dt><label>Fonction</label></dt>
|
||||
{input type="text" name="fonction_responsable" source=$plugin.config label="" maxlength=50}
|
||||
</dl>
|
||||
|
||||
{* Ville avant signature *}
|
||||
<dl class="config">
|
||||
{input type="text" name="ville_asso" source=$plugin.config label="Ville" help="précède la date sur le formulaire" maxlength=50}
|
||||
</dl>
|
||||
</div>
|
||||
|
||||
{* Signature *}
|
||||
<dl class="config">
|
||||
<dt><label>Signature</label></dt>
|
||||
<p>L'image de la signature doit être d'une taille « raisonnable » et avoir un fond transparent</p>
|
||||
|
@ -93,68 +76,13 @@
|
|||
</dl>
|
||||
</fieldset>
|
||||
|
||||
{* Numérotation des reçus *}
|
||||
<fieldset>
|
||||
<legend>Numérotation des reçus</legend>
|
||||
<details>
|
||||
<summary class="help block">
|
||||
Sélectionner les éléments qui doivent faire partie du numéro de reçu
|
||||
</summary>
|
||||
<div class="help block">
|
||||
<ul>
|
||||
<li>Préfixe : texte qui sera imprimé tel quel au début du numéro (ex : sigle de l'association) ;
|
||||
facultatif</li>
|
||||
<li>Année fiscale : numéro de l'année fiscale (ex : 2022) ; facultatif</li>
|
||||
<ul>
|
||||
Sélectionner au moins un des deux numéros suivants
|
||||
<li>Numéro de membre</li>
|
||||
<li>Numéro séquentiel (1, 2, ...) : numéro d'ordre du reçu</li>
|
||||
</ul>
|
||||
<li>Valeur initiale : si vous avez choisi un numéro séquentiel, indiquez le numéro du premier reçu
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</details>
|
||||
<div id="numero_recus">
|
||||
|
||||
{* Préfixe *}
|
||||
<dl class="config">
|
||||
{input type="text" name="prefixe" source=$numerotation label="Préfixe" maxlength=20}
|
||||
</dl>
|
||||
|
||||
{* Autres éléments de la numérotation *}
|
||||
<dl class="config">
|
||||
{input type="checkbox" name="annee" source=$numerotation label="Année fiscale" value=1}
|
||||
</dl>
|
||||
|
||||
<dl class="config">
|
||||
{input type="checkbox" name="membre" source=$numerotation label="N° de membre" value=1}
|
||||
</dl>
|
||||
|
||||
<dl class="config">
|
||||
{input type="checkbox" name="sequentiel" source=$numerotation label="N° séquentiel" value=1}
|
||||
</dl>
|
||||
|
||||
<dl class="config">
|
||||
{input type="number" name="valeur_init" source=$numerotation label="Valeur initiale"}
|
||||
</dl>
|
||||
</div>
|
||||
</fieldset>
|
||||
|
||||
<fieldset>
|
||||
<legend>Autres informations</legend>
|
||||
|
||||
{* Adresse de courriel *}
|
||||
<div id="courriel">
|
||||
<dl class="config">
|
||||
<dt><label>Adresse de courriel</label></dt>
|
||||
{if $plugin.config.imprimerCourriel}
|
||||
{input type="checkbox" name="imprimerCourriel" value="1" checked="checked" label="Imprimer" help="Cocher pour imprimer l'adresse de courriel des membres sur les reçus"}
|
||||
{else}
|
||||
{input type="checkbox" name="imprimerCourriel" value="1" label="Imprimer" help="Cocher pour imprimer l'adresse de courriel des membres sur les reçus"}
|
||||
{/if}
|
||||
<dt><label>Ville</label></dt>
|
||||
<p>Précède la date sur le formulaire</p>
|
||||
{input type="text" name="ville_asso" source=$plugin.config label="" maxlength=50}
|
||||
</dl>
|
||||
</div>
|
||||
|
||||
{* les champs de nom *}
|
||||
<?php $nbChamps = count($champsNom); ?>
|
||||
|
@ -164,12 +92,10 @@
|
|||
|
||||
<div>
|
||||
{foreach from=$champsNom key="nom" item="champ"}
|
||||
<div class="champnom">
|
||||
<div class="actions"></div>
|
||||
<div class="infos">
|
||||
<input type="checkbox" name="champsNom[]" id="champ_{$nom}" value={$nom} class="choix"
|
||||
{if $nbChamps == 1 || $champ.position != 0}checked{/if} />
|
||||
<label for="champ_{$nom}">{$champ.titre}</label>
|
||||
<div>
|
||||
<input type="checkbox" name="champsNom[]" value={$nom} class="choix" {if $nbChamps == 1 || $champ.position != 0}checked{/if} >
|
||||
<label>{$champ.titre}</label>
|
||||
<div class="actions">
|
||||
</div>
|
||||
</div>
|
||||
{/foreach}
|
||||
|
@ -180,8 +106,8 @@
|
|||
<h3 class="warning">N'oubliez pas d'enregistrer, sinon les modifications ne seront pas prises en compte !</h3>
|
||||
|
||||
<p class="submit">
|
||||
{csrf_field key=$csrf_key}
|
||||
{button type="submit" name="save" label="Enregistrer" shape="right" class="main" onclick="return verifierConfig(articles_cgi, taux_reduction)"}
|
||||
{csrf_field key="recusfiscaux_config"}
|
||||
{button type="submit" name="save" label="Enregistrer" shape="right" class="main"}
|
||||
</p>
|
||||
</form>
|
||||
|
||||
|
@ -191,7 +117,7 @@
|
|||
var lesDivs = document.querySelectorAll('.actions');
|
||||
for (i = 0; i < lesDivs.length; ++i) {
|
||||
var up = document.createElement('a');
|
||||
up.className = 'up icn-btn';
|
||||
up.className = 'icn up';
|
||||
up.innerHTML = '↑';
|
||||
up.title = 'Déplacer vers le haut';
|
||||
up.onclick = function(e) {
|
||||
|
@ -206,5 +132,3 @@
|
|||
}());
|
||||
</script>
|
||||
{/literal}
|
||||
{* scripts divers *}
|
||||
<script src="script.js"></script>
|
|
@ -1,42 +1,53 @@
|
|||
<!-- nav bar -->
|
||||
{include file="%s/templates/_nav.tpl"|args:$plugin_root current_nav="index"}
|
||||
|
||||
<nav class="acc-year">
|
||||
<h4>Année fiscale sélectionnée :</h4>
|
||||
<h3>{$annee_recu}</h3>
|
||||
<footer>{linkbutton label="Changer d'année fiscale" target="_dialog" href="%s/choix_annee.php"|args:$plugin_url shape="settings"}</footer>
|
||||
</nav>
|
||||
|
||||
<h2>Choisir l'année fiscale</h2>
|
||||
<form id="formulaire_saisie" method="post" action="action.php">
|
||||
<fieldset>
|
||||
{* <legend>Choisir l'année fiscale</legend> *}
|
||||
<select id="annee_recu" name="annee_recu">
|
||||
{foreach from=$anneesFiscales item="annee"}
|
||||
<option value="{$annee}" {if $annee == $anneeCourante - 1} selected{/if}>{$annee}
|
||||
</option>
|
||||
{/foreach}
|
||||
</select>
|
||||
</fieldset>
|
||||
|
||||
<div id="choix_methode">
|
||||
<h3>Sélectionner les versements pour les reçus</h3>
|
||||
<h2>Choisir une méthode de génération des reçus</h2>
|
||||
|
||||
<fieldset>
|
||||
{* <legend>Choisir une des méthodes</legend> *}
|
||||
<dl id="menu">
|
||||
<dl>
|
||||
<dd class="radio-btn">
|
||||
<input type="radio" id="radio_versements_personne" name="choix_versements" value="personne"
|
||||
onclick="choixMethodeGeneration(this.form, 'personne', 'menu_versements', '.menu');" />
|
||||
onclick="choixMethodeGeneration(this.form, 'personne', '.tous', '.activites');" />
|
||||
<label for="radio_versements_personne">
|
||||
<div class="explications">
|
||||
<h5>
|
||||
Seuls les versements des personnes importent.
|
||||
Tous les versements des membres font l'objet d'un reçu, sans
|
||||
tenir compte des activités et tarifs
|
||||
</h5>
|
||||
<p class="help">Choisissez cette option si vous n'avez pas besoin des activités ni des tarifs</p>
|
||||
<p>Choisissez cette option si vous voulez sélectionner les versements d'une, plusieurs
|
||||
ou toutes les personnes</p>
|
||||
</div>
|
||||
</label>
|
||||
</dd>
|
||||
|
||||
<dd class="radio-btn">
|
||||
<input type="radio" id="radio_versements_activites" name="choix_versements" value="activite"
|
||||
onclick="choixMethodeGeneration(this.form, 'activite', 'menu_activites_tarifs', '.menu');" />
|
||||
<input type="radio" id="radio_versements_activites" name="choix_versements"
|
||||
value="activite" onclick="choixMethodeGeneration(this.form, 'activite', '.activites', '.tous');" />
|
||||
<label for="radio_versements_activites">
|
||||
<div class="explications">
|
||||
<h5>
|
||||
Certaines activités, certains tarifs ou certains comptes importent.
|
||||
Seuls les versements de certaines activités et tarifs font
|
||||
l'objet d'un reçu
|
||||
</h5>
|
||||
<p class="help">Choisissez cette option pour classer les versements par activités, tarifs et comptes</p>
|
||||
<p>Choisissez cette option si vous voulez sélectionner :</p>
|
||||
<ul>
|
||||
<li>certaines activités ou certains tarifs</li>
|
||||
<li>certains versements de certaines personnes</li>
|
||||
</ul>
|
||||
</div>
|
||||
</label>
|
||||
</dd>
|
||||
|
@ -44,148 +55,109 @@
|
|||
</fieldset>
|
||||
</div>
|
||||
|
||||
{* Tous les versements *}
|
||||
<div id="menu_versements" class="menu hidden">
|
||||
<h3>Choisir le taux de réduction</h3>
|
||||
{* Toutes les personnes *}
|
||||
<div id="div_taux_reduc" class="tous hidden">
|
||||
<h2>Choisir le taux de réduction</h2>
|
||||
<fieldset>
|
||||
{if $nbTaux == 0}
|
||||
<h3 class="warning">Vous devez d'abord sélectionner au moins un taux de réduction dans l'onglet de configuration</h3>
|
||||
<h3 class="warning">Vous devez d'abord sélectionner au moins un taux de réduction dans l'onglet de
|
||||
configuration</h3>
|
||||
{/if}
|
||||
{if $nbChamps == 0}
|
||||
<h3 class="warning">Vous devez d'abord sélectionner au moins un champ pour le nom et le prénom dans l'onglet de configuration</h3>
|
||||
<h3 class="warning">Vous devez d'abord sélectionner au moins un champ pour le nom et le prénom dans l'onglet
|
||||
de configuration</h3>
|
||||
{/if}
|
||||
{if $nbTaux > 0 && $nbChamps > 0}
|
||||
<ul class="reduction">
|
||||
{foreach from=$plugin_config->reduction item="reduc"}
|
||||
{if $reduc->valeur == 1}
|
||||
<li>
|
||||
<span class="radio-btn">
|
||||
<input
|
||||
type="radio"
|
||||
id="{$reduc->taux}"
|
||||
name="taux_reduction"
|
||||
value="{$reduc->taux}"
|
||||
{if $nbTaux == 1}checked{/if}
|
||||
/>
|
||||
<input type="radio" id="{$reduc->taux}" name="taux_reduction" value="{$reduc->taux}"
|
||||
{if $nbTaux == 1}checked{/if} />
|
||||
<label for="{$reduc->taux}">{$reduc->taux}{if $reduc->remarque != ""} - {$reduc->remarque}{/if}</label>
|
||||
</span>
|
||||
</li>
|
||||
{/if}
|
||||
{/foreach}
|
||||
</ul>
|
||||
{/if}
|
||||
</fieldset>
|
||||
</div>
|
||||
|
||||
<div id="generer_tous" class="tous hidden">
|
||||
<p class=" submit">
|
||||
{csrf_field key="generer_tous_recus"}
|
||||
{button type="submit" name="generer_tous" label="Poursuivre" shape="right" class="main" onclick="return verifierTaux(menu_versements);" }
|
||||
{button type="submit" name="generer_tous" label="Poursuivre" shape="right" class="main" onclick="return verifierRadio('div_taux_reduc');" }
|
||||
</p>
|
||||
</div>
|
||||
|
||||
{* Activités, tarifs et comptes *}
|
||||
<div id="menu_activites_tarifs" class="menu hidden">
|
||||
<h3>Choisir les activités, tarifs et comptes concernés ainsi que le taux de réduction</h3>
|
||||
{* Activités et tarifs *}
|
||||
<div id="liste_activites_tarifs" class="activites hidden">
|
||||
<h2>Choisir les activités et tarifs concernés par les reçus ainsi que le taux de réduction</h2>
|
||||
<fieldset>
|
||||
{if $nbTaux == 0}
|
||||
<h3 class="warning">Vous devez d'abord sélectionner au moins un taux de réduction dans l'onglet de configuration</h3>
|
||||
<h3 class="warning">Vous devez d'abord sélectionner au moins un taux de réduction dans l'onglet de
|
||||
configuration</h3>
|
||||
{/if}
|
||||
{if $nbChamps == 0}
|
||||
<h3 class="warning">Vous devez d'abord sélectionner au moins un champ pour le nom et le prénom dans l'onglet de configuration</h3>
|
||||
{/if}
|
||||
{if $nbTaux > 0 && $nbChamps > 0}
|
||||
<ul id="liste_activites">
|
||||
{foreach from=$activitesTarifsComptes item="elem"}
|
||||
<li>
|
||||
<?php
|
||||
$tarif = $lesTarifs[$elem->idTarif];
|
||||
$compte = $lesComptes[$elem->idCompte];
|
||||
$activite = $lesActivites[$tarif->idActivite];
|
||||
?>
|
||||
<div class="activite">
|
||||
{if $nbTarifs == 1 && $nbComptesSansActivite == 0}
|
||||
<h3 class="warning">Vous devez d'abord sélectionner au moins un champ pour le nom et le prénom dans l'onglet
|
||||
de configuration</h3 {/if} {if $nbTaux > 0 && $nbChamps > 0} <table class="list">
|
||||
<thead>
|
||||
<tr>
|
||||
<th>Cocher</th>
|
||||
<th>Activité et Tarif</th>
|
||||
<th>Taux de réduction</th>
|
||||
<th>Caractéristiques activité</th>
|
||||
<th>N° et Compte</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
{foreach from=$activitesTarifsComptes item="activite"}
|
||||
<tr>
|
||||
<td>
|
||||
{if $nbTarifs == 1}
|
||||
{input
|
||||
type="checkbox"
|
||||
name="tarifs[]"
|
||||
value="%s_%s"|args:$elem.idTarif,$elem.idCompte
|
||||
label="Activité « %s » - tarif « %s » ;"|args:$activite.label,$tarif.label
|
||||
value=$activite.idTarif
|
||||
checked="checked"
|
||||
}
|
||||
{else}
|
||||
{input
|
||||
type="checkbox"
|
||||
name="tarifs[]"
|
||||
value="%s_%s"|args:$elem.idTarif,$elem.idCompte
|
||||
label="Activité « %s » - tarif « %s » ;"|args:$activite.label,$tarif.label
|
||||
value=$activite.idTarif
|
||||
}
|
||||
{/if}
|
||||
<span>compte : {$elem.codeCompte} - {$compte->nomCompte}</span>
|
||||
<span> ({$compte.label})</span>
|
||||
</div>
|
||||
<ul class="reduction">
|
||||
</td>
|
||||
<td>
|
||||
<span>{$activite.titreActivite} - {$activite.titreTarif}</span>
|
||||
</td>
|
||||
<td>
|
||||
{foreach from=$plugin_config->reduction item="reduc"}
|
||||
{if $reduc->valeur == 1}
|
||||
<li>
|
||||
<span class="radio-btn">
|
||||
<input
|
||||
type="radio"
|
||||
id="taux_{$reduc->taux}_{$elem.idTarif}_{$elem.idCompte}"
|
||||
name="taux_reduction_{$elem.idTarif}_{$elem.idCompte}"
|
||||
value="{$reduc->taux}"
|
||||
{if $nbTarifs > 1}disabled{/if}
|
||||
{if $nbTaux == 1}checked{/if}
|
||||
/>
|
||||
<label for="taux_{$reduc->taux}_{$elem.idTarif}_{$elem.idCompte}">
|
||||
{$reduc->taux}{if $reduc->remarque != ""} - {$reduc->remarque}{/if}</label>
|
||||
<input type="radio" id="taux_{$reduc->taux}_{$activite.idTarif}"
|
||||
name="taux_reduction_{$activite.idTarif}" value="{$reduc->taux}"
|
||||
{if $nbTarifs > 1}disabled{/if} {if $nbTaux == 1}checked{/if} />
|
||||
<label
|
||||
for="taux_{$reduc->taux}_{$activite.idTarif}">{$reduc->taux}{if $reduc->remarque != ""}
|
||||
- {$reduc->remarque}{/if}</label>
|
||||
</span>
|
||||
</li>
|
||||
{/if}
|
||||
{/foreach}
|
||||
</ul>
|
||||
</li>
|
||||
</td>
|
||||
<td>{if $activite.descActivite != ""}{$activite.descActivite} ; {/if}{$activite.descTarif}</td>
|
||||
<td>{$activite.numeroCpt} : {$activite.nomCpt}</td>
|
||||
</tr>
|
||||
{/foreach}
|
||||
{* comptes non rattachés à une activité *}
|
||||
{foreach from=$comptesSansActivite item="idCompte"}
|
||||
<li>
|
||||
<div class="activite">
|
||||
{input
|
||||
type="checkbox"
|
||||
name="comptes[]"
|
||||
value="%s"|args:$idCompte
|
||||
label="Versements non rattachés à une activité ;"
|
||||
}
|
||||
<?php $compte = $lesComptes[$idCompte]; ?>
|
||||
<span>compte : {$compte.codeCompte} - {$compte.nomCompte}</span>
|
||||
<span> ({$compte.label})</span>
|
||||
</div>
|
||||
<ul class="reduction">
|
||||
{foreach from=$plugin_config->reduction item="reduc"}
|
||||
{if $reduc->valeur == 1}
|
||||
<li>
|
||||
<span class="radio-btn">
|
||||
<input
|
||||
type="radio"
|
||||
id="taux_{$reduc->taux}_{$idCompte}"
|
||||
name="taux_reduction_{$idCompte}"
|
||||
value="{$reduc->taux}"
|
||||
disabled
|
||||
{if $nbTaux == 1}checked{/if}
|
||||
/>
|
||||
<label for="taux_{$reduc->taux}_{$idCompte}">
|
||||
{$reduc->taux}{if $reduc->remarque != ""} - {$reduc->remarque}{/if}</label>
|
||||
</span>
|
||||
</li>
|
||||
{/if}
|
||||
{/foreach}
|
||||
</ul>
|
||||
</li>
|
||||
{/foreach}
|
||||
</ul>
|
||||
</tbody>
|
||||
</table>
|
||||
{/if}
|
||||
</fieldset>
|
||||
</div>
|
||||
|
||||
<div id="generer_activites" class="activites hidden">
|
||||
<p class=" submit">
|
||||
{csrf_field key="generer_recus_activites"}
|
||||
{button type="submit" name="generer_activites" label="Poursuivre" shape="right" class="main" onclick="return verifierActivitésTaux(menu_activites_tarifs);" }
|
||||
{button type="submit" name="generer_activites" label="Poursuivre" shape="right" class="main" onclick="return verifierCases('liste_activites_tarifs');" }
|
||||
</p>
|
||||
</div>
|
||||
</form>
|
||||
|
@ -197,8 +169,8 @@
|
|||
for (var laCase of document.querySelectorAll("input[type=checkbox]")) {
|
||||
laCase.addEventListener('change', (evt) => {
|
||||
var idCase = evt.target;
|
||||
// chercher la ligne englobante (<li>)
|
||||
var ligne = idCase.closest("li");
|
||||
// chercher la ligne englobante (<tr>)
|
||||
var ligne = idCase.closest("tr");
|
||||
// itérer sur les radio de cette ligne
|
||||
var lesRadios = ligne.querySelectorAll('input[type=radio]');
|
||||
for (var idRadio of lesRadios) {
|
||||
|
@ -214,4 +186,4 @@
|
|||
{/literal}
|
||||
|
||||
<!-- footer -->
|
||||
{include file="_foot.tpl"}
|
||||
{include file="admin/_foot.tpl"}
|
|
@ -2,7 +2,7 @@
|
|||
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr">
|
||||
<head>
|
||||
<meta charset="utf-8" />
|
||||
<style type="text/css">
|
||||
<style>
|
||||
@page
|
||||
{
|
||||
size: A4 portrait;
|
||||
|
@ -12,37 +12,58 @@
|
|||
{
|
||||
font-family: Serif;
|
||||
font-size: 11pt;
|
||||
background-color: white;
|
||||
width : 19cm;
|
||||
}
|
||||
#entete
|
||||
{
|
||||
position : relative;
|
||||
}
|
||||
#logo
|
||||
{
|
||||
position : fixed;
|
||||
max-width : 4cm;
|
||||
max-height : 4cm;
|
||||
}
|
||||
#titre
|
||||
{
|
||||
margin : 0 2cm 0 2cm;
|
||||
position : fixed;
|
||||
margin : 0 4.5cm 0 4.5cm;
|
||||
top : 1cm;
|
||||
text-align : center;
|
||||
font-size : 14pt;
|
||||
font-weight: bold;
|
||||
}
|
||||
#articles
|
||||
{
|
||||
position : fixed;
|
||||
margin : 0 4.5cm 0 4.5cm; /* idem titre */
|
||||
top : 6em;
|
||||
text-align : center;
|
||||
}
|
||||
#numRecu
|
||||
{
|
||||
position : relative;
|
||||
text-align : right;
|
||||
margin-right: 1em;
|
||||
top : 8em;
|
||||
right: 1em;
|
||||
}
|
||||
#beneficiaire, #donateur, #versements, #final
|
||||
{
|
||||
position : relative;
|
||||
top : 9em;
|
||||
}
|
||||
|
||||
#versements
|
||||
{
|
||||
position : relative;
|
||||
top : 9em;
|
||||
border-top: 1px solid rgb(0, 0, 128);
|
||||
border-bottom: 1px solid rgb(0, 0, 128);
|
||||
}
|
||||
.rubrique
|
||||
{
|
||||
background-color : rgb(200, 200, 250);
|
||||
padding : 0 0 0 1mm;
|
||||
padding : 2mm;
|
||||
}
|
||||
.titre, .important
|
||||
{
|
||||
|
@ -52,10 +73,6 @@
|
|||
{
|
||||
font-weight: normal;
|
||||
}
|
||||
#ville
|
||||
{
|
||||
margin-bottom: 0;
|
||||
}
|
||||
#signature
|
||||
{
|
||||
display: block;
|
||||
|
@ -67,34 +84,28 @@
|
|||
</style>
|
||||
</head>
|
||||
|
||||
<body class="print">
|
||||
<body>
|
||||
<div class="cartouche" id="entete">
|
||||
<img id="logo" src="{{$logo_asso}}" />
|
||||
<p id="titre">Reçu au titre des dons à certains organismes d'intérêt général</p>
|
||||
<p id="articles">Articles 200, 238 bis et 978 du code général des impôts</p>
|
||||
<div id="numRecu">
|
||||
<p class="important">Reçu {{$numero}}</p>
|
||||
<p class="important">Reçu numéro {{$annee_recu}}/{{$numero}}</p>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="cartouche" id="beneficiaire">
|
||||
<h3 class="rubrique">Bénéficiaire des versements</h3>
|
||||
<p class="important">Association « {{$config.org_name}} »<br />
|
||||
{{$config.org_address}}<br />
|
||||
<span class="titre">Objet : </span><span class="libelle">{{$objet_asso}}</span>
|
||||
</p>
|
||||
<p class="important">Association « {{$config.nom_asso}} »<br />
|
||||
{{$config.adresse_asso}}<br />
|
||||
<span class="titre">Objet : </span><span class="libelle">{{$objet_asso}}</span></p>
|
||||
</div>
|
||||
|
||||
<div class="cartouche" id="donateur">
|
||||
<h3 class="rubrique">Donateur</h3>
|
||||
<p>
|
||||
{{$nom}}<br />
|
||||
<p>{{$nom}}<br />
|
||||
{{$adresse}}<br />
|
||||
{{$code_postal}} {{$ville}}
|
||||
{{if $courriel != ""}}
|
||||
<br />courriel : <a href="mailto:{{$courriel}}">{{$courriel}}</a>
|
||||
{{/if}}
|
||||
</p>
|
||||
{{$code_postal}} {{$ville}}</p>
|
||||
</div>
|
||||
|
||||
<div class="cartouche" id="versements">
|
||||
|
@ -103,20 +114,9 @@
|
|||
{{#versements}}
|
||||
<li>
|
||||
la somme de <b>***{{$montant|raw|money}}*** euros</b>
|
||||
{{if $cents != ""}}
|
||||
(<b>{{$euros}} euros et {{$cents}} cents</b>)
|
||||
{{else}}
|
||||
(<b>{{$euros}} euros</b>)
|
||||
{{/if}}
|
||||
{{if $libelle != ""}}
|
||||
({{$libelle}})
|
||||
{{/if}}
|
||||
<br />date des versements :
|
||||
{{if $dateMin == $dateMax}}
|
||||
le {{$dateMin}}
|
||||
{{else}}
|
||||
du {{$dateMin}} au {{$dateMax}}
|
||||
{{/if}}
|
||||
</li>
|
||||
{{/versements}}
|
||||
</ul>
|
||||
|
@ -129,7 +129,7 @@
|
|||
</div>
|
||||
|
||||
<div class="cartouche" id="final">
|
||||
<p id="ville">{{$ville_asso}} le {{$date}}
|
||||
<p>{{$ville_asso}} le {{$date}}<br />
|
||||
<img id="signature" src="{{$signature}}" />
|
||||
</p>
|
||||
<div>
|
||||
|
|
|
@ -1,136 +0,0 @@
|
|||
{include file="_head.tpl" title="%s"|args:$plugin.name current="plugin_%s"|args:$plugin.id}
|
||||
|
||||
<?php
|
||||
$fmt = new \NumberFormatter('fr_FR', \NumberFormatter::SPELLOUT);
|
||||
if ($numero_sequentiel) { $numero_courant = $numero_sequentiel; }
|
||||
?>
|
||||
|
||||
{* Itération sur les personnes *}
|
||||
{foreach from=$totalPersonnes key="idPersonne" item="personne"}
|
||||
<div class="previs_recu">
|
||||
|
||||
<div class="cartouche" id="entete">
|
||||
<img id="logo" src="{$logo_asso}" />
|
||||
<p id="titre">Reçu au titre des dons à certains organismes d'intérêt général</p>
|
||||
<p id="articles">Articles 200, 238 bis et 978 du code général des impôts</p>
|
||||
<div id="numRecu">
|
||||
{if $numero_sequentiel}
|
||||
{afficher_numero_recu prefixe=$prefixeNum membre=$membre numero_personne=$personne->numero numero_sequentiel=$numero_courant}
|
||||
<?php
|
||||
++$numero_courant;
|
||||
?>
|
||||
{else}
|
||||
{afficher_numero_recu prefixe=$prefixeNum membre=$membre numero_personne=$personne->numero numero_sequentiel=$numero_sequentiel}
|
||||
{/if}
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="cartouche" id="beneficiaire">
|
||||
<h3 class="rubrique">Bénéficiaire des versements</h3>
|
||||
<p class="important">Association « {$org_name} »<br />
|
||||
{$org_address}<br />
|
||||
<span class="titre">Objet : </span><span class="libelle">{$objet_asso}</span>
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<div class="cartouche" id="donateur">
|
||||
<h3 class="rubrique">Donateur</h3>
|
||||
<p>
|
||||
{$personne.nomPrenom}<br />
|
||||
{$personne.adresse}<br />
|
||||
{$personne.codePostal} {$personne.ville}
|
||||
{if $courriel && $personne.courriel != ""}
|
||||
<br />courriel : <a href="mailto:{$personne.courriel}">{$personne.courriel}</a>
|
||||
{/if}
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<div class="cartouche" id="versements">
|
||||
<p>Le bénéficiaire reconnaît avoir reçu au titre des dons et versements ouvrant droit à réduction d'impôt :</p>
|
||||
<ul>
|
||||
{foreach from=$personne.versements key="taux" item="versement"}
|
||||
<li>
|
||||
la somme de <b>***{$versement.montant|raw|money}*** euros</b>
|
||||
<?php
|
||||
$euros = $fmt->format((int)($versement->montant / 100));
|
||||
if ($versement->montant % 100 != 0) {
|
||||
$cents = $fmt->format($versement->montant % 100);
|
||||
} else {
|
||||
$cents = "";
|
||||
}
|
||||
?>
|
||||
{if $cents != ""}
|
||||
(<b>{$euros} euros et {$cents} cents</b>)
|
||||
{else}
|
||||
(<b>{$euros} euros</b>)
|
||||
{/if}
|
||||
<?php
|
||||
$libelle = $libelles_taux[$taux];
|
||||
?>
|
||||
{if $libelle != ""}
|
||||
({$libelle})
|
||||
{/if}
|
||||
<br /><span id="date_versements">date des versements :
|
||||
<?php
|
||||
$dmin = date("d/m/Y", $versement->dateMin);
|
||||
$dmax = date("d/m/Y", $versement->dateMax);
|
||||
?>
|
||||
{if $versement.dateMin == $versement.dateMax}
|
||||
le {$dmin}
|
||||
{else}
|
||||
du {$dmin} au {$dmax}
|
||||
{/if}
|
||||
{*
|
||||
Erreur : dates décalées d'un jour (en arrière)
|
||||
{if $versement.dateMin == $versement.dateMax}
|
||||
le {$versement.dateMin|date_format:"%d/%m/%Y"}
|
||||
{else}
|
||||
du {$versement.dateMin|date_format:"%d/%m/%Y"} au {$versement.dateMax|date_format:"%d/%m/%Y"}
|
||||
{/if}
|
||||
*}
|
||||
</span>
|
||||
</li>
|
||||
{/foreach}
|
||||
</ul>
|
||||
|
||||
{foreach from=$complements item="elem"}
|
||||
<p class="complements"><span class="titre">{$elem.titre}</span> <span class="libelle">{$elem.libelle}</span></p>
|
||||
{/foreach}
|
||||
|
||||
<p class="complements">Le bénéficiaire certifie sur l’honneur que les dons et versements qu’il reçoit ouvrent droit à la réduction d'impôt prévue {$texteArticles} du code général des impôts.</p>
|
||||
</div>
|
||||
|
||||
<div class="cartouche" id="final">
|
||||
<p id="ville">{$ville_asso} le {$date}
|
||||
<img id="signature" src="{$signature}" />
|
||||
</p>
|
||||
<div>
|
||||
<span id="nom">{$nom_responsable}</span><br />
|
||||
<span id="fonction">{$fonction_responsable}</span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
{/foreach} {* Itération sur les personnes *}
|
||||
|
||||
{* scripts divers *}
|
||||
<script src="script.js"></script>
|
||||
|
||||
{*
|
||||
* remplacer la feuille de style d'impression de paheko par la mienne
|
||||
* puis déclencher l'impression
|
||||
*}
|
||||
{literal}
|
||||
<script type="text/javascript">
|
||||
document.addEventListener('DOMContentLoaded',
|
||||
function() {
|
||||
changerStyle(document);
|
||||
setTimeout(function() {
|
||||
window.print()
|
||||
}, 750);
|
||||
});
|
||||
</script>
|
||||
{/literal}
|
||||
|
||||
<!-- footer -->
|
||||
{include file="_foot.tpl"}
|
|
@ -1,4 +1,4 @@
|
|||
{include file="_head.tpl" title="Envoi de fichier"}
|
||||
{include file="admin/_head.tpl" title="Envoi de fichier"}
|
||||
|
||||
{form_errors}
|
||||
|
||||
|
@ -15,4 +15,4 @@
|
|||
</fieldset>
|
||||
</form>
|
||||
|
||||
{include file="_foot.tpl"}
|
||||
{include file="admin/_foot.tpl"}
|
||||
|
|
|
@ -1,93 +1,71 @@
|
|||
<!-- nav bar -->
|
||||
{include file="%s/templates/_nav.tpl"|args:$plugin_root current_nav="activite"}
|
||||
{include file="%s/templates/_nav.tpl"|args:$plugin_root current_nav="versements"}
|
||||
|
||||
<h2>Année {$annee_recu} : versements par activité et tarif</h2>
|
||||
<h2>Versements par activité et tarif</h2>
|
||||
|
||||
<fieldset class="noprint">
|
||||
<input type="checkbox" class="check_global" id="check_global" onclick="cocherDecocherTout(check_global)" />
|
||||
<label for="check_global">Cliquer pour cocher toutes les lignes</label>
|
||||
<button type="button" data-icon="↑" class="icn-btn" id="close_details_activite"
|
||||
onclick="montrerMasquerDetails(this.id, 'details.activite', 'toutes les activités')">
|
||||
Replier toutes les activités</button>
|
||||
<button type="button" data-icon="↑" class="icn-btn" id="close_details_personne"
|
||||
onclick="montrerMasquerDetails(this.id, 'details.personne', 'toutes les personnes')">
|
||||
Replier toutes les personnes</button>
|
||||
<br />
|
||||
{button type="submit" label="Télécharger les reçus au format PDF" shape="download"
|
||||
form="versements_activites"
|
||||
formaction="generer_recus.php?type=activite&format=pdf"
|
||||
onclick="return verifierChoix(this.form)"}
|
||||
{button type="submit" target="_dialog" label="Imprimer les reçus" shape="print"
|
||||
form="versements_activites"
|
||||
formaction="generer_recus.php?type=activite&format=print"
|
||||
onclick="return verifierChoix(this.form)"}
|
||||
<button type="button" data-icon="↑" class="icn-btn" id="close_details_activite" onclick="montrerMasquerDetails(this.id, 'details.activite', 'toutes les activités')">Replier toutes les activités</button>
|
||||
<button type="button" data-icon="↑" class="icn-btn" id="close_details_personne" onclick="montrerMasquerDetails(this.id, 'details.personne', 'toutes les personnes')">Replier toutes les personnes</button>
|
||||
<input type="submit" value="Générer les reçus" form="versements_activites" onclick="return verifierChoix(this.form)">
|
||||
</fieldset>
|
||||
|
||||
<form method="post" target="_blank" id="versements_activites">
|
||||
<form method="post" id="versements_activites" action="generer_recus.php?type=activite">
|
||||
|
||||
{* Itération sur les versements *}
|
||||
{foreach from=$lesVersements key="rang" item="versement"}
|
||||
<?php $rang = 0; ?>
|
||||
{foreach from=$lesVersements key="num" item="versement"}
|
||||
{if $rang == 0}
|
||||
{* premier versement *}
|
||||
<?php
|
||||
$pair = true;
|
||||
$tarifCourant = $versement->idTarif;
|
||||
$personneCourante = $versement->idUser;
|
||||
$compteCourant = $versement->idCompte;
|
||||
$codeCompte = $versement->codeCompte;
|
||||
?>
|
||||
{afficher_debut_tarif versement=$versement}
|
||||
{afficher_debut_personne user=$personneCourante idVersement="%s_%s"|args:$tarifCourant,$personneCourante}
|
||||
{afficher_debut_compte idCompte=$compteCourant}
|
||||
{elseif $versement.idTarif != $tarifCourant}
|
||||
{afficher_versement versement=$versement idVersement="%s_%s"|args:$tarifCourant,$personneCourante num=$num rang=$rang}
|
||||
{else}
|
||||
{* autre versement *}
|
||||
{if $versement.idTarif != $tarifCourant}
|
||||
{* changement de tarif *}
|
||||
{fin_compte}
|
||||
{fin_personne}
|
||||
{fin_tarif}
|
||||
</fieldset> {* fin versements d'une personne *}
|
||||
</details> {* fin versements d'une personne *}
|
||||
</details> {* fin tarif *}
|
||||
<?php
|
||||
$pair = true;
|
||||
$rang=0;
|
||||
$tarifCourant = $versement->idTarif;
|
||||
$personneCourante = $versement->idUser;
|
||||
$compteCourant = $versement->idCompte;
|
||||
$codeCompte = $versement->codeCompte;
|
||||
?>
|
||||
{afficher_debut_tarif versement=$versement}
|
||||
{afficher_debut_personne user=$personneCourante idVersement="%s_%s"|args:$tarifCourant,$personneCourante}
|
||||
{afficher_debut_compte idCompte=$compteCourant}
|
||||
{afficher_versement versement=$versement idVersement="%s_%s"|args:$tarifCourant,$personneCourante num=$num rang=$rang}
|
||||
{elseif $versement.idUser != $personneCourante}
|
||||
{* changement de personne *}
|
||||
{fin_compte}
|
||||
{fin_personne}
|
||||
<?php $rang = 0; ?>
|
||||
</fieldset>
|
||||
</details>
|
||||
<?php
|
||||
$pair = true;
|
||||
$personneCourante = $versement->idUser;
|
||||
$compteCourant = $versement->idCompte;
|
||||
$codeCompte = $versement->codeCompte;
|
||||
?>
|
||||
{afficher_debut_personne user=$personneCourante idVersement="%s_%s"|args:$tarifCourant,$personneCourante}
|
||||
{afficher_debut_compte idCompte=$compteCourant}
|
||||
{elseif $versement.codeCompte != $codeCompte}
|
||||
{fin_compte}
|
||||
{* changement de compte *}
|
||||
<?php
|
||||
$pair = true;
|
||||
$compteCourant = $versement->idCompte;
|
||||
$codeCompte = $versement->codeCompte;
|
||||
?>
|
||||
{afficher_debut_compte idCompte=$compteCourant}
|
||||
{afficher_versement versement=$versement idVersement="%s_%s"|args:$tarifCourant,$personneCourante num=$num rang=$rang}
|
||||
{else}
|
||||
{* même personne, même compte *}
|
||||
{* même personne *}
|
||||
{afficher_versement versement=$versement idVersement="%s_%s"|args:$tarifCourant,$personneCourante num=$num rang=$rang}
|
||||
{/if}
|
||||
{afficher_versement versement=$versement idVersement="%s_%s"|args:$tarifCourant,$personneCourante rang=$rang pair=$pair}
|
||||
<?php $pair = ! $pair; ?>
|
||||
{/if}
|
||||
<?php ++$rang; ?>
|
||||
{/foreach} {* Itération sur les versements *}
|
||||
{fin_compte}
|
||||
{fin_personne}
|
||||
{fin_tarif}
|
||||
</fieldset> {* fin versements d'une personne *}
|
||||
</details> {* fin versements d'une personne *}
|
||||
</details> {* fin tarif *}
|
||||
|
||||
<input type="submit" value="Générer les reçus" onclick="return verifierChoix(this.form)">
|
||||
</form>
|
||||
|
||||
{* scripts divers *}
|
||||
<script src="script.js"></script>
|
||||
|
||||
<!-- footer -->
|
||||
{include file="_foot.tpl"}
|
||||
{include file="admin/_foot.tpl"}
|
|
@ -1,74 +1,55 @@
|
|||
<!-- nav bar -->
|
||||
{include file="%s/templates/_nav.tpl"|args:$plugin_root current_nav="personne"}
|
||||
|
||||
<h2>Année {$annee_recu} : versements par personne</h2>
|
||||
<h2>Versements par personne</h2>
|
||||
|
||||
<fieldset class="noprint">
|
||||
<input type="checkbox" class="check_global" id="check_global"
|
||||
onclick="cocherDecocherToutesLesPersonnes(check_global)" />
|
||||
<label for="check_global">Cliquer pour cocher toutes les lignes</label>
|
||||
<button type="button" data-icon="↑" class="icn-btn" id="close_details_personne"
|
||||
onclick="montrerMasquerDetails(this.id, 'details.personne', 'toutes les personnes')">
|
||||
Replier toutes les personnes</button>
|
||||
<br />
|
||||
{button type="submit" label="Télécharger les reçus au format PDF" shape="download"
|
||||
form="versements_personnes"
|
||||
formaction="generer_recus.php?type=personne&format=pdf"
|
||||
onclick="return verifierChoix(this.form)"}
|
||||
{button type="submit" label="Imprimer les reçus" shape="print"
|
||||
form="versements_personnes"
|
||||
formaction="generer_recus.php?type=personne&format=print"
|
||||
onclick="return verifierChoix(this.form)"}
|
||||
onclick="montrerMasquerDetails(this.id, 'details.personne', 'toutes les personnes')">Replier toutes les
|
||||
personnes</button>
|
||||
<input type="submit" value="Générer les reçus" form="versements_personnes"
|
||||
onclick="return verifierChoix(this.form)">
|
||||
</fieldset>
|
||||
|
||||
<form method="post" target="_dialog" id="versements_personnes">
|
||||
<form method="post" id="versements_personnes" action="generer_recus.php?type=personne">
|
||||
|
||||
{* Itération sur les personnes *}
|
||||
{foreach from=$lesVersements key="rang" item="versement"}
|
||||
|
||||
<?php $rang = 0; ?>
|
||||
{foreach from=$lesVersements key="num" item="versement"}
|
||||
{if $rang == 0}
|
||||
{* 1ère personne *}
|
||||
<?php
|
||||
$pair = true;
|
||||
$personneCourante = $versement->idUser;
|
||||
$compteCourant = $versement->idCompte;
|
||||
$codeCompte = $versement->codeCompte;
|
||||
?>
|
||||
{afficher_debut_personne user=$personneCourante idVersement=$personneCourante}
|
||||
{afficher_debut_compte idCompte=$compteCourant}
|
||||
{afficher_versement versement=$versement idVersement=$personneCourante num=$num rang=$rang}
|
||||
{elseif $versement.idUser != $personneCourante}
|
||||
{* changement de personne *}
|
||||
{fin_compte}
|
||||
{fin_personne}
|
||||
<?php $rang = 0; ?>
|
||||
</fieldset>
|
||||
</details>
|
||||
<?php
|
||||
$pair = true;
|
||||
$personneCourante = $versement->idUser;
|
||||
$compteCourant = $versement->idCompte;
|
||||
$codeCompte = $versement->codeCompte;
|
||||
?>
|
||||
{afficher_debut_personne user=$personneCourante idVersement=$personneCourante}
|
||||
{afficher_debut_compte idCompte=$compteCourant}
|
||||
{elseif $versement.codeCompte != $codeCompte}
|
||||
{fin_compte}
|
||||
{* changement de compte *}
|
||||
<?php
|
||||
$pair = true;
|
||||
$compteCourant = $versement->idCompte;
|
||||
$codeCompte = $versement->codeCompte;
|
||||
?>
|
||||
{afficher_debut_compte idCompte=$compteCourant}
|
||||
{afficher_versement versement=$versement idVersement=$personneCourante num=$num rang=$rang}
|
||||
{else}
|
||||
{* même personne, même compte *}
|
||||
{* même personne *}
|
||||
{afficher_versement versement=$versement idVersement=$personneCourante num=$num rang=$rang}
|
||||
{/if}
|
||||
{afficher_versement versement=$versement idVersement=$personneCourante rang=$rang pair=$pair}
|
||||
<?php $pair = ! $pair; ?>
|
||||
<?php ++$rang; ?>
|
||||
{/foreach} {* Itération sur les personnes *}
|
||||
{fin_compte}
|
||||
{fin_personne}
|
||||
</fieldset>
|
||||
</details>
|
||||
|
||||
<input type="submit" value="Générer les reçus" onclick="return verifierChoix(this.form)">
|
||||
</form>
|
||||
|
||||
{* scripts divers *}
|
||||
<script src="script.js"></script>
|
||||
|
||||
<!-- footer -->
|
||||
{include file="_foot.tpl"}
|
||||
{include file="admin/_foot.tpl"}
|
|
@ -1,10 +1,11 @@
|
|||
<?php
|
||||
namespace Paheko;
|
||||
namespace Garradin;
|
||||
use Garradin\Entities\Files\File;
|
||||
|
||||
// supprimer les fichiers créés
|
||||
|
||||
// signature par défaut
|
||||
$default_signature_file = \Paheko\Files\Files::get('ext/recusfiscaux/default_signature.png');
|
||||
$default_signature_file = \Garradin\Files\Files::get('skel/plugin/recusfiscaux/default_signature.png');
|
||||
if (null !== $default_signature_file) {
|
||||
$default_signature_file->delete();
|
||||
}
|
||||
|
@ -12,7 +13,7 @@ if (null !== $default_signature_file) {
|
|||
// signature réelle
|
||||
$signature = $plugin->getConfig('signature');
|
||||
if (null !== $signature) {
|
||||
$sig_file = \Paheko\Files\Files::get($signature);
|
||||
$sig_file = \Garradin\Files\Files::get($signature);
|
||||
if (null !== $sig_file) {
|
||||
$sig_file->delete();
|
||||
}
|
||||
|
|
19
upgrade.php
19
upgrade.php
|
@ -1,19 +0,0 @@
|
|||
<?php
|
||||
|
||||
namespace Paheko;
|
||||
|
||||
use Paheko\Entities\Files\File;
|
||||
|
||||
$old_version = $plugin->getInfos('version');
|
||||
|
||||
if (version_compare($old_version, '0.9', '<'))
|
||||
{
|
||||
$configNum = new \stdClass();
|
||||
$configNum->prefixe = "";
|
||||
$configNum->annee = false;
|
||||
$configNum->membre = false;
|
||||
$configNum->sequentiel = false;
|
||||
$configNum->valeur_init = 1;
|
||||
$plugin->setConfigProperty('numerotation', $configNum);
|
||||
$plugin->setConfigProperty('imprimerCourriel', false);
|
||||
}
|
|
@ -0,0 +1,140 @@
|
|||
<?php
|
||||
|
||||
namespace Garradin;
|
||||
|
||||
use Garradin\Plugin\RecusFiscaux\Utils;
|
||||
|
||||
// ------------------------------------------------------------------------
|
||||
// opérations communes
|
||||
// ------------------------------------------------------------------------
|
||||
|
||||
// vérifier si l'année a bien été sélectionnée au préalable
|
||||
$_SESSION['annee_recu'] = f('annee_recu');
|
||||
if (! isset($_SESSION['annee_recu']) || $_SESSION['annee_recu'] == "") {
|
||||
\Garradin\Utils::redirect(PLUGIN_URL . 'index.php');
|
||||
}
|
||||
|
||||
// champs pour le nom et prénom
|
||||
$confNoms = Utils::getChampsNom($config, $plugin);
|
||||
uasort($confNoms, function ($a, $b)
|
||||
{
|
||||
return $a->position - $b->position;
|
||||
});
|
||||
$champsNom = array();
|
||||
foreach ($confNoms as $nom => $champ)
|
||||
{
|
||||
if ($champ->position != 0) { $champsNom[] = $nom; }
|
||||
}
|
||||
|
||||
// membres donateurs
|
||||
$_SESSION['membresDonateurs'] = Utils::getDonateurs($_SESSION['annee_recu'],
|
||||
$champsNom);
|
||||
|
||||
// ------------------------------------------------------------------------
|
||||
// fonctions pour l'affichage
|
||||
// ------------------------------------------------------------------------
|
||||
|
||||
// afficher les informations d'une activité et d'un tarif
|
||||
$tpl->register_function('afficher_debut_tarif', function ($params)
|
||||
{
|
||||
$versement = $params['versement'];
|
||||
$idTarif = $versement->idTarif;
|
||||
$tarif = $_SESSION['lesTarifs'][$idTarif];
|
||||
$idActivite = $tarif->idActivite;
|
||||
$activite = $_SESSION['lesActivites'][$idActivite];
|
||||
|
||||
$out = '<details class="activite" open="open">
|
||||
<summary class="activite">';
|
||||
$out .= sprintf('
|
||||
<h3>Activité « %s »</h3>', $activite->label);
|
||||
if (!empty($activite->description)) {
|
||||
$out .= sprintf('
|
||||
<h4>%s</h4>', $activite->description);
|
||||
}
|
||||
$out .= sprintf('
|
||||
<h4>tarif « %s »', $tarif->label);
|
||||
if ($tarif->montant > 0) {
|
||||
$out .= sprintf(' montant : %.2f €', $tarif->montant/100);
|
||||
} else {
|
||||
$out .= ' montant : libre';
|
||||
}
|
||||
$out .= '</h4>
|
||||
</summary>';
|
||||
return $out;
|
||||
});
|
||||
|
||||
// Afficher les informations d'une personne
|
||||
$tpl->register_function('afficher_debut_personne', function ($params)
|
||||
{
|
||||
$idUser = $params['user'];
|
||||
$idVersement = $params['idVersement'];
|
||||
|
||||
$personne = $_SESSION['membresDonateurs'][$idUser];
|
||||
$out = '<details class="personne" open="open">
|
||||
<summary class="personne">
|
||||
<h4 class="personne">';
|
||||
$out .= sprintf('
|
||||
<input type="checkbox" id="check_%s"',
|
||||
$idVersement);
|
||||
$out .= sprintf(' onclick="cocherDecocherPersonne(check_%s, total_%s)" />',
|
||||
$idVersement,
|
||||
$idVersement);
|
||||
$out .= sprintf('
|
||||
<label for="check_%s"></label>',
|
||||
$idVersement);
|
||||
$out .= sprintf('%s : <span class="total" id="total_%s">0,00 €</span>',
|
||||
$personne->nomPrenom,
|
||||
$idVersement);
|
||||
$out .= '</h4></summary>';
|
||||
$out .= sprintf('
|
||||
<fieldset class="versements" id="versements_%s">',
|
||||
$idVersement);
|
||||
return $out;
|
||||
});
|
||||
|
||||
// afficher un versement
|
||||
$tpl->register_function('afficher_versement', function ($params)
|
||||
{
|
||||
$versement = $params['versement'];
|
||||
$idVersement = $params['idVersement'];
|
||||
$num = $params['num'];
|
||||
$rang = $params['rang'];
|
||||
|
||||
$out = '<div class="';
|
||||
$out .= ($rang%2==0) ? 'pair">' : 'impair">';
|
||||
$out .= sprintf('
|
||||
<input type="checkbox"
|
||||
class="check_%s"
|
||||
id="check_%s_%s"
|
||||
name="selected[]"
|
||||
value="%s"
|
||||
onclick="cocherDecocherVersement(check_%s_%s, total_%s)" />',
|
||||
$idVersement,
|
||||
$idVersement, $rang,
|
||||
$num,
|
||||
$idVersement, $rang, $idVersement
|
||||
);
|
||||
$out .= sprintf('
|
||||
<label for="check_%s_%s"></label>',
|
||||
$idVersement, $rang
|
||||
);
|
||||
$out .= sprintf('
|
||||
<span class="montant">%.2f</span>',
|
||||
$versement->versement/100
|
||||
);
|
||||
$out .= sprintf('
|
||||
<span>%s</span>
|
||||
</div>',
|
||||
date_format(date_create($versement->date),"d/m/Y"));
|
||||
return $out;
|
||||
});
|
||||
|
||||
// ------------------------------------------------------------------------
|
||||
// aiguillage
|
||||
// ------------------------------------------------------------------------
|
||||
|
||||
if ($_GET['action'] == 'personne') {
|
||||
require('versements_personnes.php');
|
||||
} else {
|
||||
require('versements_activites.php');
|
||||
}
|
|
@ -0,0 +1,101 @@
|
|||
<?php
|
||||
|
||||
namespace Garradin;
|
||||
|
||||
use Garradin\Files\Files;
|
||||
use Garradin\Entities\Files\File;
|
||||
use Garradin\Plugin\RecusFiscaux\Utils;
|
||||
|
||||
$session->requireAccess($session::SECTION_CONFIG, $session::ACCESS_ADMIN);
|
||||
$art_sel = f('articlesCGI') ? : [];
|
||||
$taux_sel = f('tauxReduction') ? : [];
|
||||
$noms_sel = f('champsNom') ? : [];
|
||||
|
||||
// récupérer les champs des noms
|
||||
$champsNom = Utils::getChampsNom($config, $plugin);
|
||||
|
||||
if (f('save') && $form->check('recusfiscaux_config'))
|
||||
{
|
||||
try {
|
||||
// objet de l'association
|
||||
$plugin->setConfig('objet_asso', trim(f('objet_asso')));
|
||||
|
||||
// articles du CGI
|
||||
$confArticles = $plugin->getConfig('articlesCGI');
|
||||
// effacer l'ancienne configuration
|
||||
for ($i = 0; $i < count($confArticles); ++$i) {
|
||||
$confArticles[$i]->valeur = 0;
|
||||
}
|
||||
// et copier la nouvelle
|
||||
foreach ($art_sel as $article) {
|
||||
$confArticles[$article]->valeur = 1;
|
||||
}
|
||||
$plugin->setConfig("articlesCGI", $confArticles);
|
||||
|
||||
// taux de réduction
|
||||
$confTaux = $plugin->getConfig('reduction');
|
||||
// effacer l'ancienne configuration
|
||||
for ($i = 0; $i < count($confTaux); ++$i) {
|
||||
$confTaux[$i]->valeur = 0;
|
||||
}
|
||||
// et copier la nouvelle
|
||||
foreach ($taux_sel as $taux) {
|
||||
$confTaux[$taux]->valeur = 1;
|
||||
}
|
||||
$plugin->setConfig("reduction", $confTaux);
|
||||
|
||||
// nom, fonction et signature du responsable
|
||||
$plugin->setConfig('nom_responsable', trim(f('nom_responsable')));
|
||||
$plugin->setConfig('fonction_responsable', trim(f('fonction_responsable')));
|
||||
if (isset($_SESSION['sig_file']) && count($_SESSION['sig_file']) > 0)
|
||||
{
|
||||
// supprimer la signature précédente, si besoin
|
||||
if (null !== $plugin->getConfig('signature'))
|
||||
{
|
||||
$sig_file = \Garradin\Files\Files::get($plugin->getConfig('signature'));
|
||||
if (null !== $sig_file) {
|
||||
$sig_file->delete();
|
||||
}
|
||||
}
|
||||
// puis installer la nouvelle
|
||||
$plugin->setConfig('signature', $_SESSION['sig_file'][0]->path);
|
||||
}
|
||||
|
||||
// autres informations
|
||||
// ville
|
||||
$plugin->setConfig('ville_asso', trim(f('ville_asso')));
|
||||
|
||||
// champs pour le nom et prénom
|
||||
foreach ($champsNom as $nom => $champ)
|
||||
{
|
||||
$champ->position = 0;
|
||||
}
|
||||
$i = -count($noms_sel);
|
||||
foreach ($noms_sel as $nom)
|
||||
{
|
||||
$champsNom[$nom]->position = $i++;
|
||||
}
|
||||
$plugin->setConfig('champsNom', $champsNom);
|
||||
|
||||
\Garradin\Utils::redirect(PLUGIN_URL . 'config.php?ok');
|
||||
}
|
||||
catch (UserException $e)
|
||||
{
|
||||
$form->addError($e->getMessage());
|
||||
}
|
||||
}
|
||||
|
||||
// trier les champs de nom pour l'affichage
|
||||
uasort($champsNom, function ($a, $b)
|
||||
{
|
||||
return $a->position - $b->position;
|
||||
});
|
||||
|
||||
$tpl->assign('ok', qg('ok') !== null);
|
||||
$path = qg('path') ?: File::CONTEXT_CONFIG;
|
||||
$tpl->assign('path', $path);
|
||||
$tpl->assign('default_signature', \Garradin\WWW_URL . "plugin/recusfiscaux/default_signature.png");
|
||||
$tpl->assign('plugin_config', $plugin->getConfig());
|
||||
$tpl->assign('champsNom', $champsNom);
|
||||
$tpl->assign('plugin_css', ['style.css']);
|
||||
$tpl->display(PLUGIN_ROOT . '/templates/config.tpl');
|
|
@ -0,0 +1,232 @@
|
|||
<?php
|
||||
|
||||
namespace Garradin;
|
||||
|
||||
use Garradin\Files\Files;
|
||||
use Garradin\Entities\Files\File;
|
||||
use Garradin\UserTemplate\UserTemplate;
|
||||
|
||||
//use Garradin\Plugin\RecusFiscaux\RecusHTML;
|
||||
use Garradin\Plugin\RecusFiscaux\Utils;
|
||||
use Garradin\Plugin\RecusFiscaux\Personne;
|
||||
|
||||
// signature
|
||||
$signature =
|
||||
(null !== $plugin->getConfig('signature')) ?
|
||||
Files::get($plugin->getConfig('signature'))->fullpath() :
|
||||
"";
|
||||
|
||||
// logo
|
||||
$logo_file = Files::get(File::CONTEXT_CONFIG . '/logo.png');
|
||||
$logo_asso =
|
||||
(null !== $logo_file) ?
|
||||
Files::get($logo_file->path)->fullpath() :
|
||||
"";
|
||||
|
||||
// articles du CGI
|
||||
$articlesCGI = array();
|
||||
foreach ($plugin->getConfig('articlesCGI') as $article)
|
||||
{
|
||||
if ($article->valeur == 1) {
|
||||
$articlesCGI[] = $article->titre;
|
||||
}
|
||||
}
|
||||
$nbArticles = count($articlesCGI);
|
||||
if ($nbArticles == 1)
|
||||
{
|
||||
$texteArticles = 'à l’article ' . $articlesCGI[0];
|
||||
}
|
||||
elseif ($nbArticles > 1)
|
||||
{
|
||||
$texteArticles = 'aux articles ';
|
||||
for ($i = 0; $i < $nbArticles; ++$i) {
|
||||
$texteArticles .= $articlesCGI[$i];
|
||||
if ($i < $nbArticles - 2) {
|
||||
$texteArticles .= ", ";
|
||||
}
|
||||
else if ($i == $nbArticles - 2) {
|
||||
$texteArticles .= " et ";
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// filtrer les versements sélectionnés
|
||||
$lesLignes = f('selected');
|
||||
$versementsSelectionnes = array();
|
||||
foreach ($lesLignes as $ligne) {
|
||||
$versementsSelectionnes[] = $_SESSION['lesVersements'][$ligne];
|
||||
}
|
||||
|
||||
// cumuler les versements
|
||||
if ($_GET['type'] == 'personne')
|
||||
{
|
||||
$totalPersonnes = cumulerVersementsPersonne($versementsSelectionnes);
|
||||
}
|
||||
elseif ($_GET['type'] == 'activite')
|
||||
{
|
||||
$totalPersonnes = cumulerVersementsTarif($versementsSelectionnes);
|
||||
}
|
||||
|
||||
// générer les reçus
|
||||
$listeFichiersPDF = array();
|
||||
foreach ($totalPersonnes as $idPersonne => $personne)
|
||||
{
|
||||
$tpl = new UserTemplate();
|
||||
$tpl->setSource(PLUGIN_ROOT . '/templates/recu.skel');
|
||||
|
||||
$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('annee_recu', $_SESSION['annee_recu']);
|
||||
$tpl->assign('numero', $personne->id);
|
||||
$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"));
|
||||
|
||||
// les versements
|
||||
$tpl->registerSection('versements',
|
||||
function () use($personne)
|
||||
{
|
||||
foreach ($personne->versements as $taux => $montant)
|
||||
{
|
||||
$ligne['montant'] = $montant;
|
||||
$ligne['libelle'] = Utils::getLigneReduction($taux);
|
||||
yield $ligne;
|
||||
}
|
||||
});
|
||||
|
||||
// mentions complémentaires
|
||||
$donnees = array(
|
||||
'Date des versements : ' => "année " . $_SESSION['annee_recu'],
|
||||
'Nature du don : ' => "Numéraire",
|
||||
'Mode de versement : ' => "chèque et/ou virement"
|
||||
);
|
||||
$infos = array();
|
||||
foreach ($donnees as $titre => $libelle)
|
||||
{
|
||||
$elem = new \stdClass();
|
||||
$elem->titre = $titre;
|
||||
$elem->libelle = $libelle;
|
||||
$infos[] = $elem;
|
||||
}
|
||||
|
||||
$tpl->registerSection('informations',
|
||||
function () use ($infos)
|
||||
{
|
||||
foreach ($infos as $elem)
|
||||
{
|
||||
yield (array) $elem;
|
||||
}
|
||||
});
|
||||
|
||||
// fabriquer le fichier PDF
|
||||
$result = $tpl->fetch();
|
||||
$nomPDF = \Garradin\Utils::filePDF($result);
|
||||
// changer le nom du fichier
|
||||
$nom = str_replace(' ', '_', $personne->nomPrenom);
|
||||
$nom = str_replace("'", "", $nom);
|
||||
$nomFichier = "recu_" . $_SESSION['annee_recu'] . "_" . $nom . ".pdf";
|
||||
rename($nomPDF, $nomFichier);
|
||||
// ajouter le nom du fichier à la liste pour mettre dans une archive
|
||||
$listeFichiersPDF[] = $nomFichier;
|
||||
}
|
||||
|
||||
// faire une archive zip
|
||||
$fichierZip = Utils::makeArchive(
|
||||
$listeFichiersPDF,
|
||||
$_SESSION['annee_recu'],
|
||||
PLUGIN_ROOT . "/zip"
|
||||
);
|
||||
|
||||
/**
|
||||
* 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;
|
||||
$totalVersements = 0;
|
||||
foreach ($versements as $ligne)
|
||||
{
|
||||
if ($ligne->idUser != $idPersonneCourant)
|
||||
{
|
||||
// changement de personne
|
||||
if ($idPersonneCourant != -1)
|
||||
{
|
||||
$totalPersonnes[$idPersonneCourant]->ajouterVersement(
|
||||
$_SESSION['taux_reduction'],
|
||||
$totalVersements
|
||||
);
|
||||
}
|
||||
$idPersonneCourant = $ligne->idUser;
|
||||
$totalVersements = $ligne->versement;
|
||||
// créer les infos de la personne, sauf si elle est déjà présente
|
||||
if (!array_key_exists($idPersonneCourant, $totalPersonnes))
|
||||
{
|
||||
$totalPersonnes["$idPersonneCourant"] = $_SESSION['membresDonateurs'][$ligne->idUser]->clone();
|
||||
}
|
||||
} else {
|
||||
// cumuler versements
|
||||
$totalVersements += $ligne->versement;
|
||||
}
|
||||
}
|
||||
// et le dernier
|
||||
$totalPersonnes[$idPersonneCourant]->ajouterVersement(
|
||||
$_SESSION['taux_reduction'],
|
||||
$totalVersements
|
||||
);
|
||||
return $totalPersonnes;
|
||||
}
|
||||
|
||||
/**
|
||||
* Cumuler les versements de chaque personne par tarif
|
||||
* @param tableau des versements triés par idTarif, idUser, date
|
||||
* @return tableau des versements cumulés : id => Personne
|
||||
*/
|
||||
function cumulerVersementsTarif($versements)
|
||||
{
|
||||
$totalPersonnes = array();
|
||||
$idTarifCourant = -1;
|
||||
$idPersonneCourant = -1;
|
||||
$totalVersements = 0;
|
||||
foreach ($versements as $ligne)
|
||||
{
|
||||
if (
|
||||
$ligne->idTarif != $idTarifCourant ||
|
||||
$ligne->idUser != $idPersonneCourant
|
||||
)
|
||||
{
|
||||
if ($idTarifCourant != -1)
|
||||
{
|
||||
// changement de tarif ou de personne
|
||||
$totalPersonnes[$idPersonneCourant]->ajouterVersement(
|
||||
$_SESSION['tauxSelectionnes'][$idTarifCourant],
|
||||
$totalVersements
|
||||
);
|
||||
}
|
||||
$idTarifCourant = $ligne->idTarif;
|
||||
$idPersonneCourant = $ligne->idUser;
|
||||
$totalVersements = $ligne->versement;
|
||||
// créer les infos de la personne, sauf si elle est déjà présente
|
||||
if (!array_key_exists($idPersonneCourant, $totalPersonnes))
|
||||
{
|
||||
$totalPersonnes["$idPersonneCourant"] = $_SESSION['membresDonateurs'][$ligne->idUser]->clone();
|
||||
}
|
||||
} else {
|
||||
// cumuler versements
|
||||
$totalVersements += $ligne->versement;
|
||||
}
|
||||
}
|
||||
// et le dernier
|
||||
$totalPersonnes[$idPersonneCourant]->ajouterVersement(
|
||||
$_SESSION['tauxSelectionnes'][$idTarifCourant],
|
||||
$totalVersements
|
||||
);
|
||||
return $totalPersonnes;
|
||||
}
|
|
@ -0,0 +1,50 @@
|
|||
<?php
|
||||
|
||||
namespace Garradin;
|
||||
|
||||
use Garradin\Plugin\RecusFiscaux\Utils;
|
||||
|
||||
// première année d'exercice
|
||||
$anneeCourante = date("Y");
|
||||
$anneesFiscales = Utils::getAnneesFiscales();
|
||||
if ($anneesFiscales[0] < $anneeCourante) {
|
||||
array_unshift($anneesFiscales, $anneeCourante);
|
||||
}
|
||||
|
||||
// libellés pour les taux de réduction
|
||||
$_SESSION['ligneReduction'] = Utils::getLignesReduction($plugin->getConfig('reduction'));
|
||||
|
||||
// compter le nombre de taux de réduction activés
|
||||
$nbTaux = 0;
|
||||
foreach ($plugin->getConfig('reduction') as $taux)
|
||||
{
|
||||
if ($taux->valeur == 1) { ++$nbTaux; }
|
||||
}
|
||||
|
||||
// idem avec les champs nom/prénom
|
||||
$nbChamps = 0;
|
||||
$champsNom = Utils::getChampsNom($config, $plugin);
|
||||
|
||||
if (null !== $champsNom)
|
||||
{
|
||||
foreach ($champsNom as $nom => $champ)
|
||||
{
|
||||
if ($champ->position != 0) { ++$nbChamps; }
|
||||
}
|
||||
}
|
||||
|
||||
// liste des activités, cotisations et comptes associés
|
||||
$activitesTarifsComptes = Utils::getActivitesTarifsEtComptes();
|
||||
|
||||
// préparation de l'affichage
|
||||
$tpl->assign('anneesFiscales', $anneesFiscales);
|
||||
$tpl->assign('anneeCourante', $anneeCourante);
|
||||
$tpl->assign('activitesTarifsComptes', $activitesTarifsComptes);
|
||||
$tpl->assign('nbTarifs', count($activitesTarifsComptes));
|
||||
$tpl->assign('plugin_config', $plugin->getConfig());
|
||||
$tpl->assign('nbTaux', $nbTaux);
|
||||
$tpl->assign('nbChamps', $nbChamps);
|
||||
$tpl->assign('plugin_css', ['style.css']);
|
||||
|
||||
// envoyer au template
|
||||
$tpl->display(PLUGIN_ROOT . '/templates/index.tpl');
|
|
@ -0,0 +1,256 @@
|
|||
"use strict";
|
||||
|
||||
/**
|
||||
* Fonction appelée quand on (dé)coche la case de sélection globale
|
||||
* (dé)sélectionner toutes les cases à cocher de toutes les activités
|
||||
* @param {HTMLInputElement} idCaseGlobale id de la case globale
|
||||
*/
|
||||
function cocherDecocherTout(idCaseGlobale)
|
||||
{
|
||||
// itérer sur la liste des éléments détails : 1 par couple <activité, tarif>
|
||||
let lesDetails = document.querySelectorAll("details.activite");
|
||||
for (let i = 0; i < lesDetails.length; ++i)
|
||||
{
|
||||
// itérer sur les personnes
|
||||
let lesPersonnes = lesDetails[i].querySelectorAll("h4.personne");
|
||||
cocherDecocherLesPersonnes(idCaseGlobale, lesPersonnes);
|
||||
}
|
||||
// changer le message
|
||||
changerMessage(idCaseGlobale.nextElementSibling, idCaseGlobale);
|
||||
}
|
||||
|
||||
/**
|
||||
* idem dans le cas des versements des personnes
|
||||
* @param {HTMLInputElement} idCaseGlobale id de la case globale
|
||||
*/
|
||||
function cocherDecocherToutesLesPersonnes(idCaseGlobale)
|
||||
{
|
||||
let lesPersonnes = document.querySelectorAll("h4.personne");
|
||||
cocherDecocherLesPersonnes(idCaseGlobale, lesPersonnes);
|
||||
changerMessage(idCaseGlobale.nextElementSibling, idCaseGlobale);
|
||||
}
|
||||
|
||||
/**
|
||||
* @param {HTMLInputElement} idCaseGlobale
|
||||
* @param {NodeListOf<Element>} lesPersonnes
|
||||
*/
|
||||
function cocherDecocherLesPersonnes(idCaseGlobale, lesPersonnes)
|
||||
{
|
||||
for (let j = 0; j < lesPersonnes.length; ++j)
|
||||
{
|
||||
// trouver l'élément total de la personne
|
||||
let idTotal = lesPersonnes[j].querySelector("span");
|
||||
// puis la case à cocher
|
||||
let idCase = lesPersonnes[j].closest("summary").querySelector("input");
|
||||
idCase.checked = idCaseGlobale.checked;
|
||||
// puis traiter toutes les cases de la personne
|
||||
cocherDecocherPersonne(idCase, idTotal);
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Fonction appelée quand on (dé)coche la case globale d'une personne
|
||||
* - (dé)sélectionner toutes les cases à cocher
|
||||
* - faire le total des cases cochées et l'afficher
|
||||
* @param {HTMLInputElement} idCase id de la case qui a été cochée
|
||||
* @param {HTMLSpanElement} idTotal id de l'élément où afficher le total
|
||||
*/
|
||||
function cocherDecocherPersonne(idCase, idTotal)
|
||||
{
|
||||
// chercher le fieldset des versements
|
||||
let fieldset = idCase.closest("details").querySelector("fieldset");
|
||||
let listeCases = fieldset.querySelectorAll("input[type=checkbox]");
|
||||
for (let i = 0; i < listeCases.length; ++i)
|
||||
{
|
||||
listeCases[i].checked = idCase.checked;
|
||||
}
|
||||
// calculer et afficher le total
|
||||
let listeMontants = fieldset.querySelectorAll("span.montant");
|
||||
calculerTotal(listeCases, listeMontants, idTotal);
|
||||
}
|
||||
|
||||
/**
|
||||
* Fonction appelée quand on (dé)coche la case d'un versement
|
||||
* Faire le total des cases cochées et l'afficher
|
||||
*
|
||||
* @param {HTMLInputElement} idCase id de la case qui a été cochée
|
||||
* @param {HTMLSpanElement} idTotal id de l'élément où afficher le total
|
||||
*/
|
||||
function cocherDecocherVersement(idCase, idTotal)
|
||||
{
|
||||
let fieldset = idCase.closest("fieldset");
|
||||
let listeCases = fieldset.querySelectorAll("input[type=checkbox]");
|
||||
let listeMontants = fieldset.querySelectorAll("span.montant");
|
||||
calculerTotal(listeCases, listeMontants, idTotal);
|
||||
}
|
||||
|
||||
/**
|
||||
* Faire le total des cases cochées et l'afficher
|
||||
* @param {NodeListOf<Element>} listeCases liste des cases
|
||||
* @param {NodeListOf<Element>} listeMontants liste des montants associés
|
||||
* @param {HTMLSpanElement} idTotal id de l'élément où afficher le total
|
||||
*/
|
||||
function calculerTotal(listeCases, listeMontants, idTotal)
|
||||
{
|
||||
let total = 0;
|
||||
for (let i = 0; i < listeCases.length; ++i)
|
||||
{
|
||||
if (listeCases[i].checked) {
|
||||
total += parseFloat(listeMontants[i].textContent.replace(/\s/g, ""));
|
||||
}
|
||||
}
|
||||
// afficher le total
|
||||
idTotal.innerHTML =
|
||||
total.toLocaleString('fr-FR', {style: 'currency', currency: 'EUR',
|
||||
minimumFractionDigits: 2});
|
||||
}
|
||||
|
||||
/**
|
||||
* changer le message en fonction de l'état coché de la case
|
||||
* @param {Element} message
|
||||
* @param {HTMLInputElement} idCase
|
||||
*/
|
||||
function changerMessage(message, idCase)
|
||||
{
|
||||
if (idCase.checked) {
|
||||
message.innerHTML = "Cliquer pour dé-cocher toutes les lignes";
|
||||
} else {
|
||||
message.innerHTML = "Cliquer pour cocher toutes les lignes";
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* fonction appelée lors de la validation du formulaire
|
||||
* @return vrai si au moins un choix a été fait
|
||||
* @param {HTMLFormElement} formulaire
|
||||
*/
|
||||
function verifierChoix(formulaire)
|
||||
{
|
||||
let listeCheck = formulaire.getElementsByTagName("input");
|
||||
let ok = false;
|
||||
for (let i = 1; i < listeCheck.length; ++i)
|
||||
{
|
||||
if (listeCheck[i].checked)
|
||||
{
|
||||
ok = true;
|
||||
break;
|
||||
}
|
||||
}
|
||||
if (! ok)
|
||||
{
|
||||
alert("Erreur : il faut sélectionner au moins un versement");
|
||||
}
|
||||
return ok;
|
||||
}
|
||||
|
||||
/**
|
||||
* afficher et masquer des portions de formulaire selon l'action
|
||||
* @param {HTMLFormElement} formulaire
|
||||
* @param {string} action après envoi du formulaire
|
||||
* @param {any} nomClasse1 classe des éléments à afficher
|
||||
* @param {any} nomClasse2 classe des éléments à masquer
|
||||
*/
|
||||
function choixMethodeGeneration(formulaire, action, nomClasse1, nomClasse2)
|
||||
{
|
||||
formulaire.setAttribute('action', 'action.php?action=' + action);
|
||||
afficherMasquer(formulaire, nomClasse1, nomClasse2);
|
||||
}
|
||||
|
||||
/**
|
||||
* afficher et masquer des portions de formulaire
|
||||
* @param {HTMLFormElement} formulaire
|
||||
* @param {any} nomClasse1 classe des éléments à afficher
|
||||
* @param {any} nomClasse2 classe des éléments à masquer
|
||||
*/
|
||||
function afficherMasquer(formulaire, nomClasse1, nomClasse2)
|
||||
{
|
||||
for (let elem of formulaire.querySelectorAll(nomClasse1)) {
|
||||
elem.classList.remove('hidden');
|
||||
}
|
||||
for (let elem of formulaire.querySelectorAll(nomClasse2)) {
|
||||
elem.classList.add('hidden');
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* vérifier
|
||||
* - qu'au moins une activité/tarif est sélectionnée
|
||||
* - qu'un radio de chaque activité/tarif sélectionné a été sélectionné :)
|
||||
* @param {string} idElem id du conteneur des cases à vérifier
|
||||
*/
|
||||
function verifierCases(idElem)
|
||||
{
|
||||
let div = document.getElementById(idElem);
|
||||
let nbChoix = 0;
|
||||
// parcourir les cases à cocher
|
||||
for (let idCase of div.querySelectorAll("input[type=checkbox]"))
|
||||
{
|
||||
if (idCase.checked) {
|
||||
++nbChoix;
|
||||
// vérifier qu'un radio de la même ligne est sélectionné
|
||||
let ligneCorrecte = false;
|
||||
// trouver la ligne englobante
|
||||
let ligne = idCase.closest("tr");
|
||||
for (let idRadio of ligne.querySelectorAll('input[type=radio]'))
|
||||
{
|
||||
if (idRadio.checked) { ligneCorrecte = true; break; }
|
||||
}
|
||||
if (! ligneCorrecte) {
|
||||
alert("Erreur : il faut sélectionner un taux de réduction dans chaque ligne cochée");
|
||||
return false;
|
||||
}
|
||||
}
|
||||
}
|
||||
if (nbChoix == 0) {
|
||||
alert("Erreur : il faut sélectionner au moins une activité/tarif");
|
||||
}
|
||||
return nbChoix != 0;
|
||||
}
|
||||
|
||||
/**
|
||||
* vérifier qu'un radio a été sélectionné dans la div paramètre
|
||||
* @param {string} idElem id du conteneur des radios à vérifier
|
||||
*/
|
||||
function verifierRadio(idElem)
|
||||
{
|
||||
let div = document.getElementById(idElem);
|
||||
for (let idRadio of div.querySelectorAll('input[type=radio]'))
|
||||
{
|
||||
if (idRadio.checked) { return true; }
|
||||
}
|
||||
alert("Erreur : il faut sélectionner un taux de réduction");
|
||||
return false;
|
||||
}
|
||||
|
||||
/**
|
||||
* afficher/masquer les détails
|
||||
* @param {string} idElem bouton de masquage/affichage
|
||||
* @param {string} classe des détails à afficher/masquer
|
||||
* @param {string} texte du bouton
|
||||
*/
|
||||
function montrerMasquerDetails(idElem, classe, texte)
|
||||
{
|
||||
let lesDetails = document.querySelectorAll(classe);
|
||||
if (lesDetails.length > 0)
|
||||
{
|
||||
let leBouton = document.getElementById(idElem);
|
||||
if (leBouton.textContent.startsWith('Replier'))
|
||||
{
|
||||
// masquer
|
||||
lesDetails.forEach((e) => {
|
||||
e.removeAttribute('open');
|
||||
});
|
||||
leBouton.textContent = "Déplier " + texte;
|
||||
leBouton.setAttribute('data-icon', '↓');
|
||||
}
|
||||
else
|
||||
{
|
||||
// montrer
|
||||
lesDetails.forEach((e) => {
|
||||
e.setAttribute('open', 'open');
|
||||
});
|
||||
leBouton.textContent = "Replier " + texte;
|
||||
leBouton.setAttribute('data-icon', '↑');
|
||||
}
|
||||
}
|
||||
}
|
|
@ -0,0 +1,63 @@
|
|||
/* liste des versements */
|
||||
div.impair {
|
||||
background: rgba(var(--gSecondColor), 0.15);
|
||||
}
|
||||
fieldset {
|
||||
-webkit-border-radius:8px;
|
||||
border-radius:8px;
|
||||
}
|
||||
div span {
|
||||
padding-left : 0.5em;
|
||||
padding-right : 0.5em;
|
||||
}
|
||||
td.montant {
|
||||
text-align : right;
|
||||
}
|
||||
span.montant {
|
||||
width : 5em;
|
||||
text-align : right;
|
||||
}
|
||||
span.total
|
||||
{
|
||||
font-weight : bold;
|
||||
}
|
||||
summary.activite
|
||||
{
|
||||
background: rgba(var(--gSecondColor), 0.5);
|
||||
margin-bottom : 0.5em;
|
||||
}
|
||||
summary.personne
|
||||
{
|
||||
margin-bottom : 0.5em;
|
||||
padding-top : 0;
|
||||
padding-bottom : 0;
|
||||
}
|
||||
h3.personne, h4.personne
|
||||
{
|
||||
font-weight : normal;
|
||||
background: rgba(var(--gSecondColor), 0.25);
|
||||
}
|
||||
#signature
|
||||
{
|
||||
padding : 1em 0.5em 0 0.5em;
|
||||
max-width: 300px;
|
||||
max-height: 150px;
|
||||
}
|
||||
dl.config
|
||||
{
|
||||
padding : 1ex 0;
|
||||
}
|
||||
|
||||
div.explications ul
|
||||
{
|
||||
list-style : initial;
|
||||
}
|
||||
|
||||
div.actions
|
||||
{
|
||||
display : inline;
|
||||
}
|
||||
input.check_global
|
||||
{
|
||||
margin : 0.2em 0.5em;
|
||||
}
|
|
@ -1,23 +1,20 @@
|
|||
<?php
|
||||
namespace Paheko;
|
||||
session_start();
|
||||
namespace Garradin;
|
||||
|
||||
use Paheko\Entities\Files\File;
|
||||
use Paheko\Files\Files;
|
||||
use Garradin\Entities\Files\File;
|
||||
use Garradin\Files\Files;
|
||||
|
||||
$parent = qg('p');
|
||||
/*
|
||||
|
||||
if (!File::checkCreateAccess($parent, $session)) {
|
||||
throw new UserException('Vous n\'avez pas le droit d\'ajouter de fichier.');
|
||||
}
|
||||
// checkCreateAccess n'existe plus...
|
||||
*/
|
||||
|
||||
$csrf_key = 'upload_file_' . md5($parent);
|
||||
|
||||
$form->runIf('upload', function () use ($parent) {
|
||||
$_SESSION['sig_file'] = \Paheko\Files\Files::uploadMultiple($parent, 'file');
|
||||
}, $csrf_key, PLUGIN_ROOT . '/admin/config.php');
|
||||
$_SESSION['sig_file'] = File::uploadMultiple($parent, 'file');
|
||||
}, $csrf_key, PLUGIN_ROOT . '/www/admin/config.php');
|
||||
|
||||
$tpl->assign(compact('parent', 'csrf_key'));
|
||||
|
|
@ -0,0 +1,48 @@
|
|||
<?php
|
||||
|
||||
namespace Garradin;
|
||||
|
||||
use Garradin\Plugin\RecusFiscaux\Activite;
|
||||
use Garradin\Plugin\RecusFiscaux\Personne;
|
||||
use Garradin\Plugin\RecusFiscaux\Tarif;
|
||||
use Garradin\Plugin\RecusFiscaux\Utils;
|
||||
|
||||
// récupérer les infos du formulaire
|
||||
$tarifsSelectionnes = f('tarifs') ?: [];
|
||||
|
||||
// taux de réduction associés
|
||||
$tauxSelectionnes = array();
|
||||
foreach ($tarifsSelectionnes as $idTarif) {
|
||||
$nomRadio = "taux_reduction_" . $idTarif;
|
||||
$valRadio = f("$nomRadio");
|
||||
$tauxSelectionnes[$idTarif] = $valRadio;
|
||||
}
|
||||
$_SESSION['tauxSelectionnes'] = $tauxSelectionnes;
|
||||
|
||||
// obtenir les instances de tarifs correspondant à la sélection
|
||||
$lesTarifs = array();
|
||||
foreach (Utils::getTarifs($tarifsSelectionnes) as $ot) {
|
||||
$lesTarifs[$ot->id] = $ot;
|
||||
}
|
||||
$_SESSION['lesTarifs'] = $lesTarifs;
|
||||
|
||||
// activités correspondants aux tarifs sélectionnés
|
||||
$lesActivites = array();
|
||||
foreach (Utils::getActivites($tarifsSelectionnes) as $activite) {
|
||||
$lesActivites[$activite->id] = $activite;
|
||||
}
|
||||
$_SESSION['lesActivites'] = $lesActivites;
|
||||
|
||||
// versements correspondants aux tarifs sélectionnés
|
||||
$_SESSION['lesVersements'] = Utils::getVersementsTarifs($_SESSION['annee_recu'],
|
||||
$tarifsSelectionnes,
|
||||
$champsNom);
|
||||
|
||||
// préparation de l'affichage
|
||||
$tpl->assign('lesActivites', $lesActivites);
|
||||
$tpl->assign('lesTarifs', $lesTarifs);
|
||||
$tpl->assign('lesVersements', $_SESSION['lesVersements']);
|
||||
$tpl->assign('plugin_css', ['style.css']);
|
||||
|
||||
// envoyer au template
|
||||
$tpl->display(PLUGIN_ROOT . '/templates/versements_activites.tpl');
|
|
@ -0,0 +1,19 @@
|
|||
<?php
|
||||
|
||||
namespace Garradin;
|
||||
|
||||
use Garradin\Plugin\RecusFiscaux\Personne;
|
||||
use Garradin\Plugin\RecusFiscaux\Utils;
|
||||
|
||||
$_SESSION['taux_reduction'] = $_POST['taux_reduction'];
|
||||
|
||||
// versements par personne
|
||||
$_SESSION['lesVersements'] = Utils::getVersementsPersonnes($_SESSION['annee_recu'],
|
||||
$champsNom);
|
||||
|
||||
// préparation de l'affichage
|
||||
$tpl->assign('lesVersements', $_SESSION['lesVersements']);
|
||||
$tpl->assign('plugin_css', ['style.css']);
|
||||
|
||||
// envoyer au template
|
||||
$tpl->display(PLUGIN_ROOT . '/templates/versements_personnes.tpl');
|
Loading…
Reference in New Issue