Compare commits
No commits in common. "master" and "test_signature" have entirely different histories.
master
...
test_signa
|
@ -0,0 +1,14 @@
|
||||||
|
Plugin Facturation pour Garradin
|
||||||
|
Copyright (C) 2019 zou
|
||||||
|
|
||||||
|
This program is free software: you can redistribute it and/or modify
|
||||||
|
it under the terms of the GNU General Public License as published by
|
||||||
|
the Free Software Foundation version 3 of the License
|
||||||
|
|
||||||
|
This program is distributed in the hope that it will be useful,
|
||||||
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
GNU General Public License for more details.
|
||||||
|
|
||||||
|
You should have received a copy of the GNU General Public License
|
||||||
|
along with this program. If not, see <https://www.gnu.org/licenses/>
|
33
README.md
33
README.md
|
@ -1,30 +1,19 @@
|
||||||
# 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
|
## Installation
|
||||||
|
Vous pouvez télécharger l'archive .tar.gz depuis la page des [releases](https://), et la placer directement dans le dossier plugins de Garradin.
|
||||||
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
|
|
||||||
|
|
||||||
## Fonctionnalités
|
## Fonctionnalités
|
||||||
- Créer des reçus fiscaux pour les dons des membres
|
- Créer des reçus fiscaux pour des dons et génération du cerfa correspondant
|
||||||
- reçu par activité et tarif : un, plusieurs ou tous
|
- reçu par activité et tarif : 1, n ou tous
|
||||||
- reçu par personne : une, plusieurs ou tous
|
- reçu par personne : 1, n ou tous
|
||||||
|
- reçu par versement : 1, n ou tous
|
||||||
- distinguer les différents taux de réduction
|
- 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
|
## Configuration
|
||||||
- association
|
- Objet (but) de l'association
|
||||||
- Objet (but) de l'association
|
- Sélection des articles du CGI concernés par la réduction fiscale
|
||||||
- articles du CGI concernés par la réduction fiscale
|
- Enregistrement de la signature du responsable (image)
|
||||||
- taux de réduction applicables
|
|
||||||
- responsable
|
|
||||||
- nom
|
|
||||||
- fonction
|
|
||||||
- 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)
|
|
||||||
|
|
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,24 +0,0 @@
|
||||||
<?php
|
|
||||||
namespace Paheko;
|
|
||||||
session_start();
|
|
||||||
|
|
||||||
use Paheko\Entities\Files\File;
|
|
||||||
use Paheko\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');
|
|
||||||
|
|
||||||
$tpl->assign(compact('parent', 'csrf_key'));
|
|
||||||
|
|
||||||
$tpl->display(PLUGIN_ROOT . '/templates/upload.tpl');
|
|
|
@ -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');
|
|
24
config.json
24
config.json
|
@ -2,37 +2,27 @@
|
||||||
"articlesCGI" : [
|
"articlesCGI" : [
|
||||||
{
|
{
|
||||||
"titre" : "200",
|
"titre" : "200",
|
||||||
"valeur" : false
|
"valeur" : 0
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"titre" : "238 bis",
|
"titre" : "228 bis",
|
||||||
"valeur" : false
|
"valeur" : 0
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"titre" : "978",
|
"titre" : "978",
|
||||||
"valeur" : false
|
"valeur" : 0
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"reduction" : [
|
"reduction" : [
|
||||||
{
|
{
|
||||||
"taux" : "normal",
|
"taux" : "normal",
|
||||||
"ligne" : "UF",
|
"ligne" : "UF",
|
||||||
"remarque" : "",
|
"remarque" : ""
|
||||||
"valeur" : false
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"taux" : "majoré",
|
"taux" : "majoré",
|
||||||
"ligne" : "UD",
|
"ligne" : "UD",
|
||||||
"remarque" : "aide aux personnes en difficulté",
|
"remarque" : "aide aux personnes en difficulté"
|
||||||
"valeur" : false
|
|
||||||
}
|
}
|
||||||
],
|
]
|
||||||
"numerotation" : {
|
|
||||||
"prefixe" : "",
|
|
||||||
"annee" : false,
|
|
||||||
"membre" : false,
|
|
||||||
"sequentiel" : false,
|
|
||||||
"valeur_init": 1
|
|
||||||
},
|
|
||||||
"imprimerCourriel" : false
|
|
||||||
}
|
}
|
||||||
|
|
Binary file not shown.
Before Width: | Height: | Size: 16 KiB After Width: | Height: | Size: 5.6 KiB |
|
@ -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.4"
|
||||||
|
menu=1
|
||||||
|
config=1
|
||||||
|
min_version="1.1"
|
25
install.php
25
install.php
|
@ -1,23 +1,8 @@
|
||||||
<?php
|
<?php
|
||||||
namespace Paheko;
|
namespace Garradin;
|
||||||
|
use Garradin\Entities\Files\File;
|
||||||
|
|
||||||
use Paheko\Files\Files;
|
// « signature » par défaut à remplacer (voir configuration)
|
||||||
|
$path = __DIR__ . '/data/default_signature.png';
|
||||||
|
$default_signature_file = (new File)->createAndStore('skel/plugin/recusFiscaux','default_signature.png', $path, null);
|
||||||
|
|
||||||
$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();
|
|
||||||
|
|
||||||
// « 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);
|
|
||||||
|
|
|
@ -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
|
<?php
|
||||||
|
|
||||||
namespace Paheko\Plugin\RecusFiscaux;
|
namespace Garradin\Plugin\RecusFiscaux;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* rassembler les infos d'une personne
|
* rassembler les infos d'une personne
|
||||||
|
@ -8,35 +8,29 @@ namespace Paheko\Plugin\RecusFiscaux;
|
||||||
class Personne
|
class Personne
|
||||||
{
|
{
|
||||||
public $id;
|
public $id;
|
||||||
public $numero;
|
|
||||||
public $courriel;
|
|
||||||
public $rang; // par ordre alpha de nomPrenom ; sert aux tris
|
|
||||||
public $nomPrenom;
|
public $nomPrenom;
|
||||||
public $adresse;
|
public $adresse;
|
||||||
public $codePostal;
|
public $codePostal;
|
||||||
public $ville;
|
public $ville;
|
||||||
public $versements; // versements par taux de réduction
|
public $courriel;
|
||||||
|
public $versements; // tableau des versements totaux par activité/tarif
|
||||||
|
|
||||||
public function __construct(
|
public function __construct(
|
||||||
$id,
|
$id,
|
||||||
$numero,
|
|
||||||
$courriel,
|
|
||||||
$rang,
|
|
||||||
$nomPrenom,
|
$nomPrenom,
|
||||||
$adresse,
|
$adresse,
|
||||||
$codePostal,
|
$codePostal,
|
||||||
$ville
|
$ville,
|
||||||
|
$courriel = ""
|
||||||
)
|
)
|
||||||
{
|
{
|
||||||
$this->id = $id;
|
$this->id = $id;
|
||||||
$this->numero = $numero;
|
|
||||||
$this->courriel = $courriel;
|
|
||||||
$this->rang = $rang;
|
|
||||||
$this->nomPrenom = $nomPrenom;
|
$this->nomPrenom = $nomPrenom;
|
||||||
$this->adresse = $adresse;
|
$this->adresse = $adresse;
|
||||||
$this->codePostal = $codePostal;
|
$this->codePostal = $codePostal;
|
||||||
$this->ville = $ville;
|
$this->ville = $ville;
|
||||||
$this->versements = array(); // clé = tarif, valeur = Versement
|
$this->courriel = $courriel;
|
||||||
|
$this->versements = array();
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -46,37 +40,33 @@ class Personne
|
||||||
{
|
{
|
||||||
return new Personne(
|
return new Personne(
|
||||||
$this->id,
|
$this->id,
|
||||||
$this->numero,
|
|
||||||
$this->courriel,
|
|
||||||
$this->rang,
|
|
||||||
$this->nomPrenom,
|
$this->nomPrenom,
|
||||||
$this->adresse,
|
$this->adresse,
|
||||||
$this->codePostal,
|
$this->codePostal,
|
||||||
$this->ville);
|
$this->ville,
|
||||||
|
$this->courriel);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* ajouter un versement
|
* ajouter un versement
|
||||||
* @param $tauxReduction
|
* @param $idActivite
|
||||||
|
* @param $idTarif
|
||||||
* @param $montant
|
* @param $montant
|
||||||
* @param $dateMin
|
* @param $tauxReduction
|
||||||
* @param $dateMax
|
|
||||||
*/
|
*/
|
||||||
public function ajouterVersement(
|
public function ajouterVersement(
|
||||||
$tauxReduction,
|
$idActivite,
|
||||||
|
$idTarif,
|
||||||
$montant,
|
$montant,
|
||||||
$dateMin,
|
$tauxReduction
|
||||||
$dateMax
|
|
||||||
)
|
)
|
||||||
{
|
{
|
||||||
if (array_key_exists($tauxReduction, $this->versements))
|
$this->versements[] =
|
||||||
{
|
new Versement(
|
||||||
$this->versements[$tauxReduction]->ajouter($montant, $dateMin, $dateMax);
|
$idActivite,
|
||||||
}
|
$idTarif,
|
||||||
else
|
$montant,
|
||||||
{
|
$tauxReduction
|
||||||
$this->versements[$tauxReduction] = new Versement($montant, $dateMin, $dateMax);
|
);
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -0,0 +1,173 @@
|
||||||
|
<?php
|
||||||
|
|
||||||
|
namespace Garradin\Plugin\RecusFiscaux;
|
||||||
|
|
||||||
|
// génération du formulaire
|
||||||
|
|
||||||
|
class RecusHTML
|
||||||
|
{
|
||||||
|
private $nomAsso;
|
||||||
|
private $adresseAsso;
|
||||||
|
private $objetAsso;
|
||||||
|
private $nomResponsable;
|
||||||
|
private $fonctionResponsable;
|
||||||
|
private $articlesCGI;
|
||||||
|
private $signature;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* initialize global data
|
||||||
|
*/
|
||||||
|
function __construct($nomAsso,
|
||||||
|
$adresseAsso,
|
||||||
|
$objetAsso,
|
||||||
|
$nomResponsable,
|
||||||
|
$fonctionResponsable,
|
||||||
|
$articlesCGI,
|
||||||
|
$signature)
|
||||||
|
{
|
||||||
|
$this->nomAsso = $nomAsso;
|
||||||
|
$this->adresseAsso = $adresseAsso;
|
||||||
|
$this->objetAsso = $objetAsso;
|
||||||
|
$this->nomResponsable = $nomResponsable;
|
||||||
|
$this->fonctionResponsable = $fonctionResponsable;
|
||||||
|
$this->signature = $signature;
|
||||||
|
$this->articlesCGI = $articlesCGI;
|
||||||
|
$this->html = $this->entete();
|
||||||
|
}
|
||||||
|
|
||||||
|
function get()
|
||||||
|
{
|
||||||
|
return $this->html;
|
||||||
|
}
|
||||||
|
|
||||||
|
// imprimer le reçu
|
||||||
|
function imprimer_recu($annee_recu,
|
||||||
|
$numero,
|
||||||
|
$nom,
|
||||||
|
$lesMontants,
|
||||||
|
$adresse,
|
||||||
|
$code_postal,
|
||||||
|
$ville)
|
||||||
|
{
|
||||||
|
ob_start();
|
||||||
|
echo <<<FDD
|
||||||
|
<div id="numRecu">
|
||||||
|
<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 « {$this->nomAsso} »</p>
|
||||||
|
<p class="important" >{$this->adresseAsso}</p>
|
||||||
|
<p><span class="titre">Objet : </span><span class="libelle">{$this->objetAsso}</span></p>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="cartouche" id="donateur">
|
||||||
|
<h3 class="rubrique">Donateur</h3>
|
||||||
|
<p>{$nom}</p>
|
||||||
|
<p>{$adresse}</p>
|
||||||
|
<p>{$code_postal} {$ville}</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>
|
||||||
|
|
||||||
|
FDD;
|
||||||
|
|
||||||
|
foreach ($lesMontants as $taux => $montant)
|
||||||
|
{
|
||||||
|
$this->imprimer_montant($montant,
|
||||||
|
Utils::getLigneReduction($taux));
|
||||||
|
}
|
||||||
|
echo "</ul>\n";
|
||||||
|
$this->imprimer_description("Date des versements :",
|
||||||
|
"année {$annee_recu}");
|
||||||
|
$this->imprimer_description("Nature du don : ",
|
||||||
|
"Numéraire");
|
||||||
|
$this->imprimer_description("Mode de versement : ",
|
||||||
|
"chèque et/ou virement");
|
||||||
|
|
||||||
|
// articles du CGI
|
||||||
|
$nbArticles = count($this->articlesCGI);
|
||||||
|
if ($nbArticles == 1)
|
||||||
|
{
|
||||||
|
echo "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 à l’article $this->articlesCGI[0] du CGI</p>\n";
|
||||||
|
}
|
||||||
|
else if ($nbArticles > 1)
|
||||||
|
{
|
||||||
|
echo "<p>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 aux articles ";
|
||||||
|
for ($i = 0; $i < $nbArticles; ++$i) {
|
||||||
|
printf("%s", $this->articlesCGI[$i]);
|
||||||
|
if ($i < $nbArticles - 2) {
|
||||||
|
echo ", ";
|
||||||
|
}
|
||||||
|
else if ($i == $nbArticles - 2) {
|
||||||
|
echo " et ";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
echo " du code général des impôts</p>";
|
||||||
|
}
|
||||||
|
echo "</div>\n";
|
||||||
|
|
||||||
|
// cartouche final
|
||||||
|
$date = date("j/m/Y");
|
||||||
|
echo <<<FDD
|
||||||
|
<div class="cartouche" id="final">
|
||||||
|
<p>Rennes le {$date}</p>
|
||||||
|
<img id="signature" src="$this->signature" />
|
||||||
|
<p id="nom">$this->nomResponsable</p>
|
||||||
|
<p id="fonction">$this->fonctionResponsable</p>
|
||||||
|
</div>
|
||||||
|
</body>
|
||||||
|
</html>
|
||||||
|
FDD;
|
||||||
|
$this->html .= ob_get_clean();
|
||||||
|
}
|
||||||
|
|
||||||
|
// imprimer un libellé précédé de son titre en gras
|
||||||
|
function imprimer_description($titre, $libelle)
|
||||||
|
{
|
||||||
|
echo <<<FDD
|
||||||
|
<p><span class="titre">{$titre}</span><span class="libelle"> {$libelle}</span></p>
|
||||||
|
|
||||||
|
FDD;
|
||||||
|
}
|
||||||
|
|
||||||
|
// imprimer le montant du versement et un libellé
|
||||||
|
function imprimer_montant($montant, $libelle = "")
|
||||||
|
{
|
||||||
|
$valeur = number_format($montant, 2, ',', '');
|
||||||
|
echo "<li>la somme de <b>{$valeur} euros</b>";
|
||||||
|
if ($libelle != "") {
|
||||||
|
echo " ({$libelle})";
|
||||||
|
}
|
||||||
|
echo "</li>\n";
|
||||||
|
}
|
||||||
|
|
||||||
|
protected function entete()
|
||||||
|
{
|
||||||
|
$styleSheet = \Garradin\PLUGIN_ROOT . "/lib/pdf.css";
|
||||||
|
ob_start();
|
||||||
|
echo <<<FDD
|
||||||
|
<!DOCTYPE html>
|
||||||
|
<html>
|
||||||
|
<head>
|
||||||
|
<meta charset="utf-8" />
|
||||||
|
<link rel="stylesheet" type="text/css" href="{$styleSheet}" />
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
<div class="cartouche" id="entete">
|
||||||
|
<div id="logoCerfa">
|
||||||
|
<span class="centre">Cerfa</span>
|
||||||
|
</div>
|
||||||
|
<div id="numCerfa">
|
||||||
|
<span>N° 11580*4</span>
|
||||||
|
</div>
|
||||||
|
<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>
|
||||||
|
|
||||||
|
FDD;
|
||||||
|
return ob_get_clean();
|
||||||
|
}
|
||||||
|
}
|
|
@ -0,0 +1,196 @@
|
||||||
|
<?php
|
||||||
|
|
||||||
|
namespace Garradin\Plugin\RecusFiscaux;
|
||||||
|
|
||||||
|
// class to generate PDF documents
|
||||||
|
require('tfpdf/tfpdf.php');
|
||||||
|
|
||||||
|
class RecusPDF extends tFPDF
|
||||||
|
{
|
||||||
|
private $nomAsso;
|
||||||
|
private $adresseAsso;
|
||||||
|
private $logoCerfa;
|
||||||
|
private $signature;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* initialize header fonts
|
||||||
|
* @param : family (DejaVu, ...)
|
||||||
|
* @param : style (Sans, Serif, SansCondensed, SansMono, SerifCondensed...)
|
||||||
|
*/
|
||||||
|
function __construct($family, $style, $nomAsso, $adresseAsso, $logo, $signature)
|
||||||
|
{
|
||||||
|
parent::__construct();
|
||||||
|
// normal
|
||||||
|
$this->AddFont($family,
|
||||||
|
'',
|
||||||
|
$family.$style.".ttf",
|
||||||
|
true);
|
||||||
|
// bold
|
||||||
|
$this->AddFont($family,
|
||||||
|
'B',
|
||||||
|
$family.$style."-Bold.ttf",
|
||||||
|
true);
|
||||||
|
$this->nomAsso = $nomAsso;
|
||||||
|
$this->adresseAsso = $adresseAsso;
|
||||||
|
$this->logoCerfa = $logo;
|
||||||
|
$this->signature = $signature;
|
||||||
|
}
|
||||||
|
|
||||||
|
// Header
|
||||||
|
function Header()
|
||||||
|
{
|
||||||
|
parent::Header();
|
||||||
|
// Logo
|
||||||
|
$this->Image($this->logoCerfa, 10, 6, 30);
|
||||||
|
|
||||||
|
// document title
|
||||||
|
$this->SetTextColor(0, 0, 0);
|
||||||
|
$this->SetFont('DejaVu','B',12);
|
||||||
|
$titre = "Reçu au titre des dons à certains organismes d'intérêt général";
|
||||||
|
$this->SetXY(50, 10);
|
||||||
|
// Titre
|
||||||
|
$this->MultiCell(100,
|
||||||
|
6,
|
||||||
|
$titre,
|
||||||
|
0,
|
||||||
|
'C');
|
||||||
|
|
||||||
|
// numéro de Cerfa
|
||||||
|
$cerfa = "N° 11580*3";
|
||||||
|
$this->SetFont('DejaVu', 'B', 10);
|
||||||
|
$this->SetXY(10, 25);
|
||||||
|
$this->Cell(100, 0, $cerfa);
|
||||||
|
|
||||||
|
// Articles
|
||||||
|
$this->SetFont('DejaVu', '', 9);
|
||||||
|
$this->SetXY(50, 25);
|
||||||
|
$this->Cell(100, 0, 'Article 200, 238 bis et 885-0 V bis A du code général des impôts');
|
||||||
|
}
|
||||||
|
|
||||||
|
// imprimer les informations du bénéficiaire
|
||||||
|
function imprimer_beneficiaire($nom, $adresse)
|
||||||
|
{
|
||||||
|
$this->titre_rubrique("Bénéficiaire des versements");
|
||||||
|
$this->SetFont('DejaVu', 'B', 11);
|
||||||
|
$this->Cell(0, 6, 'Association « ' . $nom . ' »', 'LR', 1);
|
||||||
|
$this->Cell(0, 6, str_replace(array("\r\n", "\n", "\r"), " ", $adresse), 'LR', 1);
|
||||||
|
$this->imprimer_description("Objet : ",
|
||||||
|
"célébrer le culte protestant évangélique et pourvoir aux frais et besoins de ce culte.");
|
||||||
|
$this->Cell(0, 6, "", 'LRB', 1);
|
||||||
|
}
|
||||||
|
|
||||||
|
// imprimer un libellé précédé de son titre en gras
|
||||||
|
function imprimer_description($titre, $libelle)
|
||||||
|
{
|
||||||
|
$this->SetFont('DejaVu', 'B', 11);
|
||||||
|
$this->Cell($this->GetStringWidth($titre), 6, $titre, 'L', 0);
|
||||||
|
$this->SetFont('DejaVu', '', 11);
|
||||||
|
$this->Cell(0, 6, $libelle, 'R', 1);
|
||||||
|
}
|
||||||
|
|
||||||
|
// imprimer le montant de la réduction et un libellé
|
||||||
|
function imprimer_montant($texte, $montant, $libelle = "")
|
||||||
|
{
|
||||||
|
$this->SetFont('DejaVu');
|
||||||
|
$this->Cell($this->GetStringWidth($texte),
|
||||||
|
6,
|
||||||
|
$texte,
|
||||||
|
'L',
|
||||||
|
0);
|
||||||
|
$this->SetFont('DejaVu','B');
|
||||||
|
$valeur = number_format($montant, 2, "," , "") . " euros";
|
||||||
|
$this->Cell($this->GetStringWidth($valeur),
|
||||||
|
6,
|
||||||
|
$valeur,
|
||||||
|
'',
|
||||||
|
0);
|
||||||
|
$this->SetFont('DejaVu');
|
||||||
|
if ($libelle != "")
|
||||||
|
{
|
||||||
|
$this->Cell(0,
|
||||||
|
6,
|
||||||
|
" : " . $libelle,
|
||||||
|
'R',
|
||||||
|
1);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
$this->Cell(0, 6, "", 'R', 1);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
function titre_rubrique($texte)
|
||||||
|
{
|
||||||
|
$this->SetFont('DejaVu','B',12);
|
||||||
|
$largeur_texte = $this->GetStringWidth($texte);
|
||||||
|
$this->setX(10);
|
||||||
|
$this->SetFillColor(0, 255, 255);
|
||||||
|
$this->Cell(0, 6, $texte, 'LTR', 1, 'C', true);
|
||||||
|
$this->Cell(0, 6, "", 'LR', 1);
|
||||||
|
}
|
||||||
|
|
||||||
|
// imprimer le reçu
|
||||||
|
function imprimer_recu($annee_recu,
|
||||||
|
$numero,
|
||||||
|
$nom,
|
||||||
|
$lesMontants,
|
||||||
|
$adresse,
|
||||||
|
$code_postal,
|
||||||
|
$ville)
|
||||||
|
{
|
||||||
|
|
||||||
|
$this->AddPage();
|
||||||
|
// Numéro de reçu
|
||||||
|
$this->SetFont('DejaVu', 'B', 11);
|
||||||
|
$this->MultiCell(0, 20, 'Reçu numéro ' . $annee_recu . '/' . $numero);
|
||||||
|
|
||||||
|
// bénéficiaire
|
||||||
|
$this->imprimer_beneficiaire($this->nomAsso, $this->adresseAsso);
|
||||||
|
|
||||||
|
// donateur
|
||||||
|
$this->Ln(10);
|
||||||
|
$this->titre_rubrique("Donateur");
|
||||||
|
$this->SetFont('DejaVu', 'B', 11);
|
||||||
|
$this->Cell(0, 6, $nom, 'LR', 1);
|
||||||
|
$this->Cell(0, 6, $adresse, 'LR', 1);
|
||||||
|
$this->Cell(0, 6, $code_postal . " " . $ville, 'LR', 1);
|
||||||
|
$this->Cell(0, 6, "", 'LRB', 1);
|
||||||
|
|
||||||
|
// Montant et autres informations
|
||||||
|
$this->Ln(10);
|
||||||
|
$this->SetFont('DejaVu', '', 11);
|
||||||
|
$this->Cell(0,
|
||||||
|
6,
|
||||||
|
"Le bénéficiaire reconnaît avoir reçu au titre des dons et versements ouvrant droit à réduction d'impôt :",
|
||||||
|
'LTR',
|
||||||
|
1);
|
||||||
|
foreach ($lesMontants as $taux => $montant)
|
||||||
|
{
|
||||||
|
$this->imprimer_montant(" - la somme de ", $montant, Utils::getLigneReduction($taux));
|
||||||
|
}
|
||||||
|
$this->Cell(0, 3, "", 'LR', 1);
|
||||||
|
$this->imprimer_description('Date des versements : ',
|
||||||
|
'année ' . $annee_recu);
|
||||||
|
$this->Cell(0, 3, "", 'LR', 1);
|
||||||
|
$this->MultiCell(0, 6,
|
||||||
|
"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 à l’article 200 du CGI",
|
||||||
|
'LR');
|
||||||
|
$this->Cell(0, 3, "", 'LR', 1);
|
||||||
|
$this->imprimer_description("Forme du don : ", "Autre");
|
||||||
|
$this->Cell(0, 3, "", 'LR', 1);
|
||||||
|
$this->imprimer_description("Nature du don : ", "Numéraire");
|
||||||
|
$this->Cell(0, 3, "", 'LR', 1);
|
||||||
|
$this->imprimer_description("Mode de versement : ", "chèque et/ou virement");
|
||||||
|
$this->Cell(0, 0, "", 'LRB', 1);
|
||||||
|
|
||||||
|
// cartouche final
|
||||||
|
$this->Ln(10);
|
||||||
|
$this->Cell(0, 6, "", 'LRT', 1);
|
||||||
|
$this->Cell(0, 6, "Rennes le " . date("j/m/Y"), 'LR', 1, 'R');
|
||||||
|
$this->Cell(0, 36, "", 'LR', 1);
|
||||||
|
$this->Cell(0, 0, "", 'LBR', 1);
|
||||||
|
$this->SetXY(100, 220);
|
||||||
|
$this->Image($this->signature, null, null, 50);
|
||||||
|
}
|
||||||
|
} // class RecusPDF
|
|
@ -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);
|
||||||
|
}
|
||||||
|
}
|
697
lib/Utils.php
697
lib/Utils.php
|
@ -1,491 +1,242 @@
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
namespace Paheko\Plugin\RecusFiscaux;
|
namespace Garradin\Plugin\RecusFiscaux;
|
||||||
|
|
||||||
use Paheko\DB;
|
use Garradin\DB;
|
||||||
use Paheko\Users\DynamicFields;
|
|
||||||
use KD2\ZipWriter;
|
use KD2\ZipWriter;
|
||||||
|
|
||||||
class Utils
|
class Utils
|
||||||
{
|
{
|
||||||
/**
|
/**
|
||||||
* @return informations sur les tarifs
|
* @return tarifs demandés
|
||||||
*/
|
* @param array $tarifs
|
||||||
public static function getTarifs()
|
*/
|
||||||
{
|
public static function getTarifs($tarifs)
|
||||||
$db = DB::getInstance();
|
{
|
||||||
$sql = sprintf(
|
$db = DB::getInstance();
|
||||||
'SELECT
|
$sql = sprintf(
|
||||||
id,
|
'SELECT id, id_service as idActivite, label, description, amount as montant
|
||||||
id_service as idActivite,
|
FROM services_fees
|
||||||
label,
|
WHERE services_fees.%s',
|
||||||
description,
|
$db->where('id', $tarifs));
|
||||||
amount as montant
|
return $db->get($sql);
|
||||||
FROM services_fees');
|
}
|
||||||
return Utils::toAssoc($db->get($sql), 'id');
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @return informations sur les activités
|
* @return activités correspondant aux tarifs demandés
|
||||||
*/
|
* @param array $tarifs
|
||||||
public static function getActivites()
|
*/
|
||||||
{
|
public static function getActivites($tarifs)
|
||||||
$db = DB::getInstance();
|
{
|
||||||
$sql = sprintf(
|
$db = DB::getInstance();
|
||||||
'SELECT
|
$sql = sprintf(
|
||||||
services.id,
|
'SELECT services.id, services.label, services.description
|
||||||
services.label,
|
FROM services
|
||||||
services.description
|
LEFT JOIN services_fees ON services_fees.id_service = services.id
|
||||||
FROM services');
|
WHERE services_fees.%s
|
||||||
return Utils::toAssoc($db->get($sql), 'id');
|
GROUP BY services.id',
|
||||||
}
|
$db->where('id', $tarifs));
|
||||||
|
return $db->get($sql);
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @return comptes sur lesquels des versements de membres ont été faits
|
* @return versements correspondants à l'année et aux tarifs donnés
|
||||||
* @param string $annee
|
* @param $annee
|
||||||
* @param $op : opérateur de combinaison des comptes
|
* @param array $tarifs
|
||||||
* @param array $comptes
|
*/
|
||||||
*/
|
public static function getVersementsTarifs($annee, $tarifs)
|
||||||
public static function getComptes($annee, $op, $comptes)
|
{
|
||||||
{
|
$db = DB::getInstance();
|
||||||
$db = DB::getInstance();
|
$sql = sprintf(
|
||||||
$sql = sprintf(
|
'SELECT
|
||||||
'SELECT
|
services_fees.id as idTarif,
|
||||||
acc_accounts.id,
|
membres.id as idUser,
|
||||||
acc_years.label,
|
acc_transactions_lines.credit as versement,
|
||||||
acc_accounts.code as codeCompte,
|
acc_transactions.date
|
||||||
acc_accounts.label as nomCompte
|
FROM acc_transactions_users
|
||||||
FROM acc_transactions_users
|
INNER JOIN membres on acc_transactions_users.id_user = membres.id
|
||||||
INNER JOIN users
|
INNER JOIN acc_transactions on acc_transactions_users.id_transaction = acc_transactions.id
|
||||||
ON acc_transactions_users.id_user = users.id
|
INNER JOIN services_users on acc_transactions_users.id_service_user = services_users.id
|
||||||
INNER JOIN acc_transactions
|
INNER JOIN services_fees on services_users.id_fee = services_fees.id
|
||||||
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_transactions_lines
|
WHERE
|
||||||
ON acc_transactions_lines.id_transaction = acc_transactions.id
|
(strftime(%s, acc_transactions.date) = "%d"
|
||||||
INNER JOIN acc_accounts
|
AND
|
||||||
ON acc_transactions_lines.id_account = acc_accounts.id
|
services_fees.%s
|
||||||
INNER JOIN acc_years
|
AND
|
||||||
ON acc_transactions.id_year = acc_years.id
|
acc_transactions_lines.credit > 0)
|
||||||
WHERE
|
ORDER by services_fees.id, membres.nom, acc_transactions.date',
|
||||||
(strftime("%%Y", acc_transactions.date) = "%d"
|
'"%Y"',
|
||||||
AND
|
$annee,
|
||||||
acc_accounts.%s
|
$db->where('id', $tarifs));
|
||||||
)
|
return $db->get($sql);
|
||||||
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
|
* Versements totaux par personne pour une année donnée
|
||||||
* membres dans l'année
|
* @param année
|
||||||
* @param string $annee
|
*/
|
||||||
* @param $op : opérateur de combinaison des comptes
|
public static function getVersementsTotaux($annee)
|
||||||
* @param array $comptes
|
{
|
||||||
*/
|
$sql =
|
||||||
public static function getTarifsComptes($annee, $op, $comptes)
|
"SELECT
|
||||||
{
|
membres.id as idUser,
|
||||||
$db = DB::getInstance();
|
sum(acc_transactions_lines.credit) AS versement
|
||||||
$sql = sprintf(
|
FROM
|
||||||
'
|
acc_transactions_users,
|
||||||
SELECT
|
membres,
|
||||||
services_users.id_fee as idTarif,
|
acc_transactions
|
||||||
acc_accounts.id as idCompte,
|
INNER JOIN acc_transactions_lines
|
||||||
acc_accounts.code as codeCompte
|
ON acc_transactions_lines.id_transaction = acc_transactions.id
|
||||||
FROM acc_transactions_users
|
WHERE (
|
||||||
INNER JOIN acc_transactions
|
strftime('%Y', acc_transactions.date) = ?
|
||||||
ON acc_transactions_users.id_transaction = acc_transactions.id
|
AND
|
||||||
INNER JOIN services_users
|
acc_transactions_lines.credit > 0
|
||||||
ON acc_transactions_users.id_service_user = services_users.id
|
AND
|
||||||
INNER JOIN services_fees
|
acc_transactions_users.id_transaction = acc_transactions.id
|
||||||
ON services_users.id_fee = services_fees.id
|
AND
|
||||||
INNER JOIN acc_transactions_lines
|
acc_transactions_users.id_user = membres.id
|
||||||
ON acc_transactions_lines.id_transaction = acc_transactions.id
|
)
|
||||||
INNER JOIN acc_accounts
|
GROUP by acc_transactions_users.id_user
|
||||||
ON acc_transactions_lines.id_account = acc_accounts.id
|
ORDER by membres.nom COLLATE U_NOCASE;
|
||||||
WHERE
|
";
|
||||||
(strftime("%%Y", acc_transactions.date) = "%d"
|
return DB::getInstance()->get($sql, $annee);
|
||||||
AND
|
}
|
||||||
acc_accounts.%s
|
|
||||||
)
|
|
||||||
GROUP BY services_fees.id, acc_accounts.code
|
|
||||||
ORDER BY acc_accounts.code
|
|
||||||
',
|
|
||||||
$annee,
|
|
||||||
$db->where('code', $op, $comptes)
|
|
||||||
);
|
|
||||||
return $db->get($sql);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* faire un tableau associatif avec le résultat d'une requête
|
* @return personnes ayant versé des dons pour une année donnée
|
||||||
*/
|
* @param $annee
|
||||||
static function toAssoc($array, $nomCle)
|
*/
|
||||||
{
|
public static function getDonateurs($annee)
|
||||||
$assoc = array();
|
{
|
||||||
foreach ($array as $elem)
|
$sql =
|
||||||
{
|
"SELECT
|
||||||
$ro = new \ReflectionObject($elem);
|
membres.id as idUser,
|
||||||
$proprietes = $ro->getProperties();
|
membres.nom as nom,
|
||||||
$obj = new \stdClass();
|
membres.adresse as adresse,
|
||||||
foreach ($proprietes as $p)
|
membres.code_postal as codePostal,
|
||||||
{
|
membres.ville as ville
|
||||||
$pname = $p->getName();
|
FROM
|
||||||
if ($pname == $nomCle) {
|
acc_transactions_users,
|
||||||
$key = $p->getValue($elem);
|
membres,
|
||||||
}
|
acc_transactions
|
||||||
else {
|
INNER JOIN acc_transactions_lines
|
||||||
$obj->$pname = $p->getValue($elem);
|
ON acc_transactions_lines.id_transaction = acc_transactions.id
|
||||||
}
|
WHERE (
|
||||||
}
|
strftime('%Y', acc_transactions.date) = ?
|
||||||
$assoc[$key] = $obj;
|
AND
|
||||||
}
|
acc_transactions_lines.credit > 0
|
||||||
return $assoc;
|
AND
|
||||||
}
|
acc_transactions_users.id_transaction = acc_transactions.id
|
||||||
|
AND
|
||||||
|
acc_transactions_users.id_user = membres.id
|
||||||
|
)
|
||||||
|
GROUP by membres.id
|
||||||
|
ORDER by membres.nom COLLATE U_NOCASE;
|
||||||
|
";
|
||||||
|
return DB::getInstance()->get($sql, $annee);
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
public static function getLignesReduction($lesTaux)
|
||||||
* @return versements correspondants à l'année donnée
|
{
|
||||||
* @param $annee
|
foreach ($lesTaux as $elem)
|
||||||
* @param array $champsNom : liste non vide des champs de nom/prénom
|
{
|
||||||
*/
|
/*
|
||||||
public static function getVersementsPersonnes($annee, $op, $comptes, $champsNom)
|
$ligne = "taux " . $elem->taux . ", ligne " . $elem->ligne;
|
||||||
{
|
if ($elem->remarque != "") {
|
||||||
$db = DB::getInstance();
|
$ligne .= ", " . $elem->remarque;
|
||||||
$tri = Utils::combinerTri($champsNom);
|
}
|
||||||
$sql = sprintf(
|
$lignes[$elem->taux] = $ligne;
|
||||||
'SELECT
|
*/
|
||||||
users.id as idUser,
|
$lignes[$elem->taux] = $elem->remarque;
|
||||||
acc_accounts.id as idCompte,
|
}
|
||||||
acc_accounts.code as codeCompte,
|
return $lignes;
|
||||||
acc_transactions_lines.credit as versement,
|
}
|
||||||
acc_transactions.date
|
public static function getLigneReduction($taux)
|
||||||
FROM acc_transactions_users
|
{
|
||||||
INNER JOIN users
|
return $_SESSION['ligneReduction'][$taux];
|
||||||
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
|
|
||||||
WHERE
|
|
||||||
(strftime("%%Y", 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',
|
|
||||||
$annee,
|
|
||||||
$db->where('code', $op, $comptes),
|
|
||||||
$tri
|
|
||||||
);
|
|
||||||
return $db->get($sql);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @return versements correspondants à :
|
* @return liste de toutes les activités, tarifs et comptes associés
|
||||||
* @param $annee : année fiscale
|
*/
|
||||||
* @param array $tarifs : tarifs sélectionnés
|
public static function getActivitesTarifsEtComptes()
|
||||||
* @param array $comptes : comptes associés aux tarifs
|
{
|
||||||
* @param array $champsNom : liste non vide des champs de nom/prénom
|
return DB::getInstance()->get(
|
||||||
* @remarks tri par tarif, nom, compte, date
|
"SELECT
|
||||||
*/
|
services.id as idActivite,
|
||||||
public static function getVersementsTarifsComptes($annee,
|
services.label as titreActivite,
|
||||||
$tarifs,
|
services.description as descActivite,
|
||||||
$comptes,
|
services_fees.id as idTarif,
|
||||||
$champsNom)
|
services_fees.label as titreTarif,
|
||||||
{
|
services_fees.description as descTarif,
|
||||||
$db = DB::getInstance();
|
acc_accounts.code as numeroCpt,
|
||||||
$tri = Utils::combinerTri($champsNom);
|
acc_accounts.label as nomCpt
|
||||||
$condition = Utils::combinerTarifsComptes($tarifs, $comptes);
|
FROM services
|
||||||
$sql = sprintf(
|
LEFT JOIN services_fees ON services_fees.id_service = services.id
|
||||||
'SELECT
|
LEFT JOIN acc_accounts ON services_fees.id_account = acc_accounts.id
|
||||||
services_fees.id as idTarif,
|
ORDER BY services.label"
|
||||||
acc_accounts.id as idCompte,
|
);
|
||||||
acc_accounts.code as codeCompte,
|
}
|
||||||
users.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
|
|
||||||
WHERE
|
|
||||||
(strftime("%%Y", acc_transactions.date) = "%d"
|
|
||||||
AND
|
|
||||||
%s
|
|
||||||
)
|
|
||||||
GROUP BY acc_transactions.id, acc_accounts.id
|
|
||||||
ORDER by %s, acc_accounts.code, acc_transactions.date',
|
|
||||||
$annee,
|
|
||||||
$condition,
|
|
||||||
$tri
|
|
||||||
);
|
|
||||||
// error_log("\ngetVersementsTarifsComptes : sql=" . $sql);
|
|
||||||
return $db->get($sql);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @return versements correspondants à :
|
* @return nom de l'association
|
||||||
* @param $annee année fiscale
|
*/
|
||||||
* @param $comptesIsoles comptes NON associés à un tarif
|
public static function getNomAsso() {
|
||||||
* @param array $champsNom : liste non vide des champs de nom/prénom
|
return DB::getInstance()->first(
|
||||||
* @remarks tri par nom, compte, date
|
"SELECT value
|
||||||
*/
|
FROM config
|
||||||
public static function getVersementsComptes($annee,
|
WHERE key = 'nom_asso'"
|
||||||
$comptesIsoles,
|
)->value;
|
||||||
$champsNom)
|
}
|
||||||
{
|
|
||||||
$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,
|
|
||||||
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
|
|
||||||
WHERE
|
|
||||||
(strftime("%%Y", 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
|
|
||||||
',
|
|
||||||
$annee,
|
|
||||||
$db->where('id', 'in', $comptesIsoles),
|
|
||||||
$tri
|
|
||||||
);
|
|
||||||
return $db->get($sql);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @return personnes ayant versé des dons pour une année donnée
|
* @return adresse de l'association
|
||||||
* @param $annee
|
*/
|
||||||
* @param array $champsNom : champs qui définissent le nom et le prénom d'une personne
|
public static function getAdresseAsso() {
|
||||||
*/
|
return DB::getInstance()->first(
|
||||||
public static function getDonateurs($annee, $champsNom) : array
|
"SELECT value
|
||||||
{
|
FROM config
|
||||||
// concaténer les champs nom/prénoms pour la sélection
|
WHERE key = 'adresse_asso'"
|
||||||
$nom = Utils::combinerChamps($champsNom);
|
)->value;
|
||||||
// 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
|
|
||||||
FROM
|
|
||||||
acc_transactions_users,
|
|
||||||
users,
|
|
||||||
acc_transactions
|
|
||||||
INNER JOIN acc_transactions_lines
|
|
||||||
ON acc_transactions_lines.id_transaction = acc_transactions.id
|
|
||||||
WHERE (
|
|
||||||
strftime("%%Y", acc_transactions.date) = "%d"
|
|
||||||
AND
|
|
||||||
acc_transactions_users.id_transaction = acc_transactions.id
|
|
||||||
AND
|
|
||||||
acc_transactions_users.id_user = users.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;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* combiner les champs avec un opérateur
|
* @return liste des années fiscales
|
||||||
* @param array $champs : liste (non vide) de champs
|
*/
|
||||||
* @return chaîne combinée
|
public static function getAnneesFiscales() {
|
||||||
*/
|
$rows = DB::getInstance()->get(
|
||||||
private static function combinerChamps($champs)
|
"SELECT strftime('%Y', start_date) as annee
|
||||||
{
|
FROM acc_years
|
||||||
$op = ' || " " || ';
|
ORDER by start_date DESC"
|
||||||
$result = 'ifnull(users.' . $champs[0] . ', "")';
|
);
|
||||||
for ($i = 1; $i < count($champs); ++$i)
|
$anneesFiscales = array();
|
||||||
{
|
foreach ($rows as $row) {
|
||||||
$result .= $op . 'ifnull(users.' . $champs[$i] . ', "")';
|
$anneesFiscales[] = $row->annee;
|
||||||
}
|
}
|
||||||
return 'trim(' . $result . ')';
|
return $anneesFiscales;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* combiner les clés de tri
|
* enregistrer les fichiers dans une archive zip
|
||||||
* @param clés de tri
|
* @param $fileList : liste des fichiers à archiver
|
||||||
* @return chaîne combinée
|
* @param $year : pour générer le nom de l'archive
|
||||||
*/
|
* @param $archiveDir : ne sert plus
|
||||||
private static function combinerTri(array $champs) : string
|
*/
|
||||||
{
|
static function makeArchive(
|
||||||
$tri = 'users.' . $champs[0];
|
$fileList,
|
||||||
for ($i = 1; $i < count($champs); ++$i)
|
$year,
|
||||||
{
|
$archiveDir = null)
|
||||||
$tri .= ', users.' . $champs[$i];
|
{
|
||||||
}
|
$zipFilename = "recus_dons" . $year . ".zip";
|
||||||
return $tri;
|
header('Content-type: application/zip');
|
||||||
}
|
header(sprintf('Content-Disposition: attachment; filename="%s"', $zipFilename));
|
||||||
|
$zip = new ZipWriter('php://output');
|
||||||
/**
|
$zip->setCompression(0);
|
||||||
* combiner chaque tarif avec le numéro de compte associé
|
foreach ($fileList as $fileName)
|
||||||
*/
|
{
|
||||||
private static function combinerTarifsComptes($tarifs, $comptes)
|
$zip->add(basename($fileName), null, $fileName);
|
||||||
{
|
}
|
||||||
$condition = '(';
|
$zip->close();
|
||||||
$lesCond = array_map(fn($e1, $e2) : string =>
|
} // makeArchive
|
||||||
"(services_fees.id = '$e1' AND acc_accounts.id = '$e2')",
|
|
||||||
$tarifs, $comptes);
|
|
||||||
$nb = 0;
|
|
||||||
foreach ($lesCond as $cond)
|
|
||||||
{
|
|
||||||
if ($nb > 0) { $condition .= ' OR '; }
|
|
||||||
$condition .= $cond;
|
|
||||||
++$nb;
|
|
||||||
}
|
|
||||||
$condition .= ')';
|
|
||||||
return $condition;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @return 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"
|
|
||||||
);
|
|
||||||
$anneesFiscales = array();
|
|
||||||
foreach ($rows as $row) {
|
|
||||||
$anneesFiscales[] = $row->annee;
|
|
||||||
}
|
|
||||||
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
|
|
||||||
* @return array tableau des champs : clé = nom, valeur = { titre, position }
|
|
||||||
*/
|
|
||||||
public static function getChampsNom($config, $plugin) : array
|
|
||||||
{
|
|
||||||
// récupérer dans la config du plugin les champs mémorisés
|
|
||||||
// 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();
|
|
||||||
|
|
||||||
foreach ($champsPaheko as $name => $title)
|
|
||||||
{
|
|
||||||
if (stristr($title, 'nom'))
|
|
||||||
{
|
|
||||||
// retenir les champs dont le titre contient le terme 'nom'
|
|
||||||
// est-il présent dans la config du plugin ?
|
|
||||||
if (! array_key_exists($name, $champsNom))
|
|
||||||
{
|
|
||||||
// absent => l'ajouter
|
|
||||||
$champ = new \stdClass();
|
|
||||||
$champ->titre = $title;
|
|
||||||
$champ->position = 0;
|
|
||||||
$champsNom[$name] = $champ;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
// opération symétrique : un champ mémorisé dans la config du
|
|
||||||
// plugin a-t-il disparu de la config paheko ?
|
|
||||||
foreach ($champsNom as $nom => $champ)
|
|
||||||
{
|
|
||||||
if (! array_key_exists($nom, $champsPaheko))
|
|
||||||
{
|
|
||||||
// absent => le supprimer
|
|
||||||
unset($champsNom[$nom]);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
// mettre à jour la config du plugin
|
|
||||||
$plugin->setConfigProperty('champsNom', $champsNom);
|
|
||||||
return $champsNom;
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* enregistrer les fichiers dans une archive zip
|
|
||||||
* @param $fileList : liste des fichiers à archiver
|
|
||||||
* @param $year : pour générer le nom de l'archive
|
|
||||||
* @param $archiveDir : ne sert plus
|
|
||||||
*/
|
|
||||||
static function makeArchive(
|
|
||||||
$fileList,
|
|
||||||
$year,
|
|
||||||
$archiveDir = null)
|
|
||||||
{
|
|
||||||
$zipFilename = "recus_dons" . $year . ".zip";
|
|
||||||
header('Content-type: application/zip');
|
|
||||||
header(sprintf('Content-Disposition: attachment; filename="%s"', $zipFilename));
|
|
||||||
$zip = new ZipWriter('php://output');
|
|
||||||
$zip->setCompression(0);
|
|
||||||
foreach ($fileList as $fileName)
|
|
||||||
{
|
|
||||||
$zip->add(basename($fileName), null, $fileName);
|
|
||||||
}
|
|
||||||
$zip->close();
|
|
||||||
} // makeArchive
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,40 +1,24 @@
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
namespace Paheko\Plugin\RecusFiscaux;
|
namespace Garradin\Plugin\RecusFiscaux;
|
||||||
|
|
||||||
class Versement
|
class Versement
|
||||||
{
|
{
|
||||||
public $montant;
|
public $idActivite;
|
||||||
public $dateMin; // estampille
|
public $idTarif;
|
||||||
public $dateMax; // estampille
|
public $montant;
|
||||||
|
public $tauxReduction;
|
||||||
|
|
||||||
public function __construct(
|
public function __construct(
|
||||||
|
$idActivite,
|
||||||
|
$idTarif,
|
||||||
$montant,
|
$montant,
|
||||||
$dateMin,
|
$tauxReduction
|
||||||
$dateMax
|
|
||||||
)
|
)
|
||||||
{
|
{
|
||||||
|
$this->idActivite = $idActivite;
|
||||||
|
$this->idTarif = $idTarif;
|
||||||
$this->montant = $montant;
|
$this->montant = $montant;
|
||||||
$this->dateMin = $dateMin;
|
$this->tauxReduction = $tauxReduction;
|
||||||
$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;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -0,0 +1,124 @@
|
||||||
|
/* organisation spatiale */
|
||||||
|
|
||||||
|
@page
|
||||||
|
{
|
||||||
|
size: A4 portrait;
|
||||||
|
margin: 1cm;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
body
|
||||||
|
{
|
||||||
|
font-family: Serif;
|
||||||
|
font-size: 11pt;
|
||||||
|
background-color: white;
|
||||||
|
display: grid;
|
||||||
|
grid-template-areas:
|
||||||
|
'entete'
|
||||||
|
'beneficiaire'
|
||||||
|
'donateur'
|
||||||
|
'versements'
|
||||||
|
'signature';
|
||||||
|
}
|
||||||
|
|
||||||
|
#entete
|
||||||
|
{
|
||||||
|
grid-area: entete;
|
||||||
|
}
|
||||||
|
|
||||||
|
#logoCerfa
|
||||||
|
{
|
||||||
|
line-height: 40px;
|
||||||
|
width: 100px;
|
||||||
|
background-color: rgb(0, 0, 128);
|
||||||
|
border-radius : 50%;
|
||||||
|
text-align : center;
|
||||||
|
margin : 2mm;
|
||||||
|
}
|
||||||
|
|
||||||
|
.centre
|
||||||
|
{
|
||||||
|
display : inline-block;
|
||||||
|
vertical-align : middle;
|
||||||
|
line-height: 20px; /* moitié de la hauteur du logo */
|
||||||
|
color : white;
|
||||||
|
font-weight: bold;
|
||||||
|
font-size : 14pt;
|
||||||
|
}
|
||||||
|
|
||||||
|
#numCerfa
|
||||||
|
{
|
||||||
|
width: 100px; /* largeur du logo */
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
#titre
|
||||||
|
{
|
||||||
|
margin : 0 4cm 0 4cm;
|
||||||
|
text-align : center;
|
||||||
|
font-size : 14pt;
|
||||||
|
font-weight: bold;
|
||||||
|
}
|
||||||
|
|
||||||
|
#articles
|
||||||
|
{
|
||||||
|
margin : 0 4cm 0 4cm; /* idem titre */
|
||||||
|
text-align : center;
|
||||||
|
}
|
||||||
|
|
||||||
|
#numRecu
|
||||||
|
{
|
||||||
|
text-align : right;
|
||||||
|
}
|
||||||
|
|
||||||
|
#beneficiaire
|
||||||
|
{
|
||||||
|
grid-area: beneficiaire;
|
||||||
|
}
|
||||||
|
|
||||||
|
#donateur
|
||||||
|
{
|
||||||
|
grid-area: donateur;
|
||||||
|
}
|
||||||
|
|
||||||
|
#versements
|
||||||
|
{
|
||||||
|
grid-area: versements;
|
||||||
|
}
|
||||||
|
|
||||||
|
#final
|
||||||
|
{
|
||||||
|
grid-area: signature;
|
||||||
|
}
|
||||||
|
|
||||||
|
.rubrique
|
||||||
|
{
|
||||||
|
background-color : rgb(200, 200, 250);
|
||||||
|
padding : 2mm;
|
||||||
|
}
|
||||||
|
|
||||||
|
.cartouche
|
||||||
|
{
|
||||||
|
margin : 2mm auto;
|
||||||
|
padding : 0 2mm;
|
||||||
|
border : 1px solid rgb(0, 0, 128);
|
||||||
|
border-radius : 8px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.titre, .important
|
||||||
|
{
|
||||||
|
font-weight:bold;
|
||||||
|
}
|
||||||
|
|
||||||
|
#signature
|
||||||
|
{
|
||||||
|
display: block;
|
||||||
|
width : 7cm;
|
||||||
|
margin: 0 auto;
|
||||||
|
padding-bottom : 2mm;
|
||||||
|
}
|
||||||
|
|
||||||
|
#fonction, #nom
|
||||||
|
{
|
||||||
|
text-align : center;
|
||||||
|
}
|
|
@ -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 -->
|
<!-- 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 bar -->
|
||||||
<nav class="tabs">
|
<nav class="tabs">
|
||||||
<ul>
|
<ul>
|
||||||
<li{if $current_nav == 'index'} class="current"{/if}><a href="{plugin_url}">Accueil</a></li>
|
<li{if $current_nav == 'index'} class="current"{/if}><a href="{plugin_url}">Activités et tarifs</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 == 'personne'} class="current"{/if}><a href="{plugin_url file="versements_personnes.php"}">Versements totaux 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="versements_activites.php"}">Tous les versements</a></li>
|
||||||
{if $session->canAccess($session::SECTION_ACCOUNTING, $session::ACCESS_WRITE)}
|
{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>
|
<li{if $current_nav == 'config'} class="current"{/if}><a href="{plugin_url file="config.php"}">Configuration</a></li>
|
||||||
{/if}
|
{/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,210 +1,76 @@
|
||||||
<!-- nav bar -->
|
<!-- nav bar -->
|
||||||
{include file="%s/templates/_nav.tpl"|args:$plugin_root current_nav="config"}
|
{include file="%s/templates/_nav.tpl"|args:$plugin_root current_nav="config"}
|
||||||
|
|
||||||
{form_errors}
|
|
||||||
|
|
||||||
<h2>Configuration</h2>
|
<h2>Configuration</h2>
|
||||||
|
|
||||||
{if isset($_GET['ok'])}
|
{if $ok && !$form->hasErrors()}
|
||||||
<p class="block confirm">
|
<p class="block confirm">
|
||||||
La configuration a bien été enregistrée.
|
La configuration a bien été enregistrée.
|
||||||
</p>
|
</p>
|
||||||
{/if}
|
{/if}
|
||||||
|
|
||||||
|
{form_errors}
|
||||||
|
|
||||||
<form method="post" action="{$self_url}" enctype="multipart/form-data">
|
<form method="post" action="{$self_url}" enctype="multipart/form-data">
|
||||||
<fieldset>
|
<fieldset>
|
||||||
|
{*
|
||||||
|
<legend>Objet (but) de l'association</legend>
|
||||||
|
*}
|
||||||
<dl class="config">
|
<dl class="config">
|
||||||
<dt><label>Objet (but) de l'association</label> <b title="Champ obligatoire">(obligatoire)</b></dt>
|
<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="text" name="objet_asso" source=$plugin.config label="" required="required" maxlength=300}
|
||||||
</dl>
|
</dl>
|
||||||
|
{*
|
||||||
|
</fieldset>
|
||||||
|
|
||||||
|
<fieldset>
|
||||||
|
<legend>Droit à la réduction d'impôt</legend>
|
||||||
|
*}
|
||||||
<dl class="config">
|
<dl class="config">
|
||||||
<dt><label>Articles du code général des impôts concernés par l'association : </label>
|
<dt><label>Articles du code général des impôts concernés par l'association : </label>
|
||||||
<b title="Champ obligatoire">(obligatoire ; sélectionnez tous les articles qui s'appliquent à
|
<b title="Champ obligatoire">(obligatoire)</b>
|
||||||
l'association)</b>
|
|
||||||
</dt>
|
</dt>
|
||||||
<div id="articles_cgi">
|
{foreach from=$plugin_config->articlesCGI key="key" item="article"}
|
||||||
|
{*
|
||||||
{foreach from=$plugin_config->articlesCGI key="key" item="article"}
|
À VÉRIFIER : {input : checked ne fonctionne pas si l'attribut name est un tableau...
|
||||||
{*
|
|
||||||
À VÉRIFIER : {input : checked ne fonctionne pas si l'attribut name est un tableau...
|
|
||||||
{input type="checkbox" name="articlesCGI[]" value=$key label=$article.titre}
|
{input type="checkbox" name="articlesCGI[]" value=$key label=$article.titre}
|
||||||
*}
|
*}
|
||||||
|
<input type="checkbox" name="articlesCGI[]" value="{$key}"
|
||||||
<div class="article">
|
{if $article.valeur == 1}checked{/if}><label>Article {$article.titre}</label>
|
||||||
<input type="checkbox" name="articlesCGI[]" id="article_{$key}" value="{$key}" class="choix"
|
{/foreach}
|
||||||
{if $article.valeur == 1}checked{/if} />
|
|
||||||
<label for="article_{$key}">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
|
|
||||||
{if $taux.remarque !== ""}({$taux.remarque})</label>{/if}
|
|
||||||
{/foreach}
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</dl>
|
</dl>
|
||||||
|
{*
|
||||||
</fieldset>
|
</fieldset>
|
||||||
|
|
||||||
<fieldset>
|
<fieldset>
|
||||||
<legend>Nom, fonction et signature du responsable</legend>
|
<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}
|
|
||||||
</dl>
|
|
||||||
|
|
||||||
{* Fonction du responsable *}
|
|
||||||
<dl class="config">
|
|
||||||
{input type="text" name="fonction_responsable" source=$plugin.config label="Fonction" help="du responsable" 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">
|
<dl class="config">
|
||||||
<dt><label>Signature</label></dt>
|
<dt><label>Nom du responsable</label> <b title="Champ obligatoire">(obligatoire)</b></dt>
|
||||||
<p>L'image de la signature doit être d'une taille « raisonnable » et avoir un fond transparent</p>
|
{input type="text" name="nom_responsable" source=$plugin.config label="" required="required" maxlength=50}
|
||||||
{if $plugin_config.signature != ''}
|
|
||||||
<img id="signature" src="/{$plugin_config.signature}" />
|
|
||||||
{else}
|
|
||||||
<img id="signature" src="{$default_signature}" />
|
|
||||||
{/if}
|
|
||||||
{linkbutton shape="upload" label="Changer de signature" target="_dialog" href="upload.php?p=%s"|args:$path}
|
|
||||||
</dl>
|
</dl>
|
||||||
</fieldset>
|
|
||||||
|
|
||||||
{* Numérotation des reçus *}
|
<dl class="config">
|
||||||
<fieldset>
|
<dt><label>Fonction du responsable</label> <b title="Champ obligatoire">(obligatoire)</b></dt>
|
||||||
<legend>Numérotation des reçus</legend>
|
{input type="text" name="fonction_responsable" source=$plugin.config label="" required="required" maxlength=50}
|
||||||
<details>
|
</dl>
|
||||||
<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">
|
||||||
<dl class="config">
|
<dt><label>Signature du responsable</label> <b title="Champ obligatoire">(obligatoire)</b></dt>
|
||||||
{input type="text" name="prefixe" source=$numerotation label="Préfixe" maxlength=20}
|
<p>L'image de la signature doit être d'une taille « raisonnable » et avoir un fond transparent</p>
|
||||||
</dl>
|
{if $plugin_config.signature != ''}
|
||||||
|
<img id="signature" src="/{$plugin_config.signature}" />
|
||||||
{* Autres éléments de la numérotation *}
|
{else}
|
||||||
<dl class="config">
|
<img id="signature" src="{$default_signature}" />
|
||||||
{input type="checkbox" name="annee" source=$numerotation label="Année fiscale" value=1}
|
{/if}
|
||||||
</dl>
|
{linkbutton shape="upload" label="Changer de signature" target="_dialog" href="upload.php?p=%s"|args:$path}
|
||||||
|
|
||||||
<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}
|
|
||||||
</dl>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
{* les champs de nom *}
|
|
||||||
<?php $nbChamps = count($champsNom); ?>
|
|
||||||
<dl class="config" {if $nbChamps == 1}hidden{/if}>
|
|
||||||
<dt><label>Champs nom et prénom</label></dt>
|
|
||||||
<p>Sélectionnez et classez le(s) champ(s) qui représente(nt) le nom et le prénom du donateur</p>
|
|
||||||
|
|
||||||
<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>
|
|
||||||
</div>
|
|
||||||
{/foreach}
|
|
||||||
</div>
|
|
||||||
</dl>
|
</dl>
|
||||||
</fieldset>
|
</fieldset>
|
||||||
|
|
||||||
<h3 class="warning">N'oubliez pas d'enregistrer, sinon les modifications ne seront pas prises en compte !</h3>
|
<h3 class="warning">N'oubliez pas d'enregistrer, sinon les modifications ne seront pas prises en compte !</h3>
|
||||||
|
|
||||||
<p class="submit">
|
<p class="submit">
|
||||||
{csrf_field key=$csrf_key}
|
{csrf_field key="recusfiscaux_config"}
|
||||||
{button type="submit" name="save" label="Enregistrer" shape="right" class="main" onclick="return verifierConfig(articles_cgi, taux_reduction)"}
|
{button type="submit" name="save" label="Enregistrer" shape="right" class="main"}
|
||||||
</p>
|
</p>
|
||||||
</form>
|
</form>
|
||||||
|
|
||||||
{literal}
|
|
||||||
<script type="text/javascript">
|
|
||||||
(function() {
|
|
||||||
var lesDivs = document.querySelectorAll('.actions');
|
|
||||||
for (i = 0; i < lesDivs.length; ++i) {
|
|
||||||
var up = document.createElement('a');
|
|
||||||
up.className = 'up icn-btn';
|
|
||||||
up.innerHTML = '↑';
|
|
||||||
up.title = 'Déplacer vers le haut';
|
|
||||||
up.onclick = function(e) {
|
|
||||||
var field = this.parentNode.parentNode;
|
|
||||||
var p = field.previousSibling;
|
|
||||||
while (p != null && p.nodeType == 3) { p = p.previousSibling; }
|
|
||||||
field.parentNode.insertBefore(field, p);
|
|
||||||
return false;
|
|
||||||
};
|
|
||||||
lesDivs[i].appendChild(up);
|
|
||||||
}
|
|
||||||
}());
|
|
||||||
</script>
|
|
||||||
{/literal}
|
|
||||||
{* scripts divers *}
|
|
||||||
<script src="script.js"></script>
|
|
|
@ -1,217 +1,143 @@
|
||||||
<!-- nav bar -->
|
<!-- nav bar -->
|
||||||
{include file="%s/templates/_nav.tpl"|args:$plugin_root current_nav="index"}
|
{include file="%s/templates/_nav.tpl"|args:$plugin_root current_nav="index"}
|
||||||
|
|
||||||
<nav class="acc-year">
|
<h2>Choisir l'année fiscale</h2>
|
||||||
<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>
|
|
||||||
|
|
||||||
<form id="formulaire_saisie" method="post" action="action.php">
|
<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">
|
<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>
|
<fieldset>
|
||||||
{* <legend>Choisir une des méthodes</legend> *}
|
{* <legend>Choisir une des méthodes</legend> *}
|
||||||
<dl id="menu">
|
<dl>
|
||||||
<dd class="radio-btn">
|
<dd class="radio-btn">
|
||||||
<input type="radio" id="radio_versements_personne" name="choix_versements" value="personne"
|
<input type="radio" id="radio_tous_versements" name="choix_versements" value="tous_versements"
|
||||||
onclick="choixMethodeGeneration(this.form, 'personne', 'menu_versements', '.menu');" />
|
onclick="afficherMasquer(this.form, '.tous', '.activites');" />
|
||||||
<label for="radio_versements_personne">
|
<label for="radio_tous_versements">
|
||||||
<div class="explications">
|
<div>
|
||||||
<h5>
|
<h5>
|
||||||
Seuls les versements des personnes importent.
|
Tous les versements des membres font l'objet d'un reçu, sans
|
||||||
</h5>
|
tenir compte des activités et tarifs
|
||||||
<p class="help">Choisissez cette option si vous n'avez pas besoin des activités ni des tarifs</p>
|
</h5>
|
||||||
</div>
|
</div>
|
||||||
</label>
|
</label>
|
||||||
</dd>
|
</dd>
|
||||||
|
|
||||||
<dd class="radio-btn">
|
<dd class="radio-btn">
|
||||||
<input type="radio" id="radio_versements_activites" name="choix_versements" value="activite"
|
<input type="radio" id="radio_versements_activites" name="choix_versements"
|
||||||
onclick="choixMethodeGeneration(this.form, 'activite', 'menu_activites_tarifs', '.menu');" />
|
value="versements_activites" onclick="afficherMasquer(this.form, '.activites', '.tous');" />
|
||||||
<label for="radio_versements_activites">
|
<label for="radio_versements_activites">
|
||||||
<div class="explications">
|
<div>
|
||||||
<h5>
|
<h5>
|
||||||
Certaines activités, certains tarifs ou certains comptes importent.
|
Seuls les versements de certaines activités et tarifs font
|
||||||
</h5>
|
l'objet d'un reçu
|
||||||
<p class="help">Choisissez cette option pour classer les versements par activités, tarifs et comptes</p>
|
</h5>
|
||||||
</div>
|
</div>
|
||||||
</label>
|
</label>
|
||||||
</dd>
|
</dd>
|
||||||
</dl>
|
</dl>
|
||||||
</fieldset>
|
</fieldset>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
{* Tous les versements *}
|
<div id="div_taux_reduc" class="tous hidden">
|
||||||
<div id="menu_versements" class="menu hidden">
|
<h2>Choisir le taux de réduction</h2>
|
||||||
<h3>Choisir le taux de réduction</h3>
|
<fieldset>
|
||||||
<fieldset>
|
{foreach from=$plugin_config->reduction item="reduc"}
|
||||||
{if $nbTaux == 0}
|
<span class="radio-btn">
|
||||||
<h3 class="warning">Vous devez d'abord sélectionner au moins un taux de réduction dans l'onglet de configuration</h3>
|
<input type="radio" id="{$reduc->taux}"
|
||||||
{/if}
|
name="taux_reduction" value="{$reduc->taux}" />
|
||||||
{if $nbChamps == 0}
|
<label for="{$reduc->taux}">{$reduc->taux}{if $reduc->remarque != ""} - {$reduc->remarque}{/if}</label>
|
||||||
<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>
|
</span>
|
||||||
{/if}
|
{/foreach}
|
||||||
{if $nbTaux > 0 && $nbChamps > 0}
|
</fieldset>
|
||||||
<ul class="reduction">
|
</div>
|
||||||
{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}
|
|
||||||
/>
|
|
||||||
<label for="{$reduc->taux}">{$reduc->taux}{if $reduc->remarque != ""} - {$reduc->remarque}{/if}</label>
|
|
||||||
</span>
|
|
||||||
</li>
|
|
||||||
{/if}
|
|
||||||
{/foreach}
|
|
||||||
</ul>
|
|
||||||
{/if}
|
|
||||||
</fieldset>
|
|
||||||
|
|
||||||
<p class="submit">
|
<div id="generer_tous" class="tous hidden">
|
||||||
{csrf_field key="generer_tous_recus"}
|
<p class=" submit">
|
||||||
{button type="submit" name="generer_tous" label="Poursuivre" shape="right" class="main" onclick="return verifierTaux(menu_versements);" }
|
{csrf_field key="generer_tous_recus"}
|
||||||
</p>
|
{button type="submit" name="generer_tous" label="Poursuivre" shape="right" class="main" onclick="return verifierRadio('div_taux_reduc');" }
|
||||||
</div>
|
</p>
|
||||||
|
</div>
|
||||||
|
|
||||||
{* Activités, tarifs et comptes *}
|
<div id="liste_activites_tarifs" class="activites hidden">
|
||||||
<div id="menu_activites_tarifs" class="menu hidden">
|
<h2>Choisir les activités et tarifs concernés par les reçus ainsi que le taux de réduction</h2>
|
||||||
<h3>Choisir les activités, tarifs et comptes concernés ainsi que le taux de réduction</h3>
|
<fieldset>
|
||||||
<fieldset>
|
<table class="list">
|
||||||
{if $nbTaux == 0}
|
<thead>
|
||||||
<h3 class="warning">Vous devez d'abord sélectionner au moins un taux de réduction dans l'onglet de configuration</h3>
|
<tr>
|
||||||
{/if}
|
<th>Cocher</th>
|
||||||
{if $nbChamps == 0}
|
<th>Activité et Tarif</th>
|
||||||
<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>
|
<th>Taux de réduction</th>
|
||||||
{/if}
|
<th>Caractéristiques activité</th>
|
||||||
{if $nbTaux > 0 && $nbChamps > 0}
|
<th>N° et Compte</th>
|
||||||
<ul id="liste_activites">
|
</tr>
|
||||||
{foreach from=$activitesTarifsComptes item="elem"}
|
</thead>
|
||||||
<li>
|
<tbody>
|
||||||
<?php
|
{foreach from=$activitesTarifsComptes item="activite"}
|
||||||
$tarif = $lesTarifs[$elem->idTarif];
|
<tr>
|
||||||
$compte = $lesComptes[$elem->idCompte];
|
<td>
|
||||||
$activite = $lesActivites[$tarif->idActivite];
|
{input type="checkbox" name="tarifs[]" value=$activite.idTarif}
|
||||||
?>
|
</td>
|
||||||
<div class="activite">
|
<td>
|
||||||
{if $nbTarifs == 1 && $nbComptesSansActivite == 0}
|
<span>{$activite.titreActivite} - {$activite.titreTarif}</span>
|
||||||
{input
|
</td>
|
||||||
type="checkbox"
|
<td>
|
||||||
name="tarifs[]"
|
{foreach from=$plugin_config->reduction item="reduc"}
|
||||||
value="%s_%s"|args:$elem.idTarif,$elem.idCompte
|
<span class="radio-btn">
|
||||||
label="Activité « %s » - tarif « %s » ;"|args:$activite.label,$tarif.label
|
<input type="radio" id="taux_{$reduc->taux}_{$activite.idTarif}"
|
||||||
checked="checked"
|
name="taux_reduction_{$activite.idTarif}" value="{$reduc->taux}" disabled />
|
||||||
}
|
<label for="taux_{$reduc->taux}_{$activite.idTarif}">{$reduc->taux}{if $reduc->remarque != ""} - {$reduc->remarque}{/if}</label>
|
||||||
{else}
|
</span>
|
||||||
{input
|
{/foreach}
|
||||||
type="checkbox"
|
</td>
|
||||||
name="tarifs[]"
|
<td>{if $activite.descActivite != ""}{$activite.descActivite} ; {/if}{$activite.descTarif}</td>
|
||||||
value="%s_%s"|args:$elem.idTarif,$elem.idCompte
|
<td>{$activite.numeroCpt} : {$activite.nomCpt}</td>
|
||||||
label="Activité « %s » - tarif « %s » ;"|args:$activite.label,$tarif.label
|
</tr>
|
||||||
}
|
{/foreach}
|
||||||
{/if}
|
</tbody>
|
||||||
<span>compte : {$elem.codeCompte} - {$compte->nomCompte}</span>
|
</table>
|
||||||
<span> ({$compte.label})</span>
|
</fieldset>
|
||||||
</div>
|
</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}_{$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>
|
|
||||||
</span>
|
|
||||||
</li>
|
|
||||||
{/if}
|
|
||||||
{/foreach}
|
|
||||||
</ul>
|
|
||||||
</li>
|
|
||||||
{/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>
|
|
||||||
{/if}
|
|
||||||
</fieldset>
|
|
||||||
|
|
||||||
<p class="submit">
|
<div id="generer_activites" class="activites hidden">
|
||||||
{csrf_field key="generer_recus_activites"}
|
<p class=" submit">
|
||||||
{button type="submit" name="generer_activites" label="Poursuivre" shape="right" class="main" onclick="return verifierActivitésTaux(menu_activites_tarifs);" }
|
{csrf_field key="generer_recus_activites"}
|
||||||
</p>
|
{button type="submit" name="generer_activites" label="Poursuivre" shape="right" class="main" onclick="return verifierCases('liste_activites_tarifs');" }
|
||||||
</div>
|
</p>
|
||||||
|
</div>
|
||||||
</form>
|
</form>
|
||||||
|
|
||||||
<script type="text/javascript" src="script.js" defer="defer"></script>
|
<script type="text/javascript" src="script.js" defer="defer"></script>
|
||||||
{literal}
|
{literal}
|
||||||
<script type="text/javascript">
|
<script type="text/javascript">
|
||||||
// activer/désactiver les radios des activités/tarifs
|
// activer/désactiver les radios des activités/tarifs
|
||||||
for (var laCase of document.querySelectorAll("input[type=checkbox]")) {
|
for (var laCase of document.querySelectorAll("input[type=checkbox]")) {
|
||||||
laCase.addEventListener('change', (evt) => {
|
laCase.addEventListener('change', (evt) => {
|
||||||
var idCase = evt.target;
|
var idCase = evt.target;
|
||||||
// chercher la ligne englobante (<li>)
|
// chercher la ligne englobante (<tr>)
|
||||||
var ligne = idCase.closest("li");
|
var ligne = idCase.closest("tr");
|
||||||
// itérer sur les radio de cette ligne
|
// itérer sur les radio de cette ligne
|
||||||
var lesRadios = ligne.querySelectorAll('input[type=radio]');
|
var lesRadios = ligne.querySelectorAll('input[type=radio]');
|
||||||
for (var idRadio of lesRadios) {
|
for (var idRadio of lesRadios) {
|
||||||
if (idCase.checked) {
|
if (idCase.checked) {
|
||||||
idRadio.disabled = '';
|
idRadio.disabled = '';
|
||||||
} else {
|
} else {
|
||||||
idRadio.disabled = 'disabled';
|
idRadio.disabled = 'disabled';
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
{/literal}
|
{/literal}
|
||||||
|
|
||||||
<!-- footer -->
|
<!-- footer -->
|
||||||
{include file="_foot.tpl"}
|
{include file="admin/_foot.tpl"}
|
|
@ -1,141 +0,0 @@
|
||||||
<!DOCTYPE html>
|
|
||||||
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr">
|
|
||||||
<head>
|
|
||||||
<meta charset="utf-8" />
|
|
||||||
<style type="text/css">
|
|
||||||
@page
|
|
||||||
{
|
|
||||||
size: A4 portrait;
|
|
||||||
margin: 1cm;
|
|
||||||
}
|
|
||||||
body
|
|
||||||
{
|
|
||||||
font-family: Serif;
|
|
||||||
font-size: 11pt;
|
|
||||||
}
|
|
||||||
#logo
|
|
||||||
{
|
|
||||||
max-height : 4cm;
|
|
||||||
}
|
|
||||||
#titre
|
|
||||||
{
|
|
||||||
margin : 0 2cm 0 2cm;
|
|
||||||
text-align : center;
|
|
||||||
font-size : 14pt;
|
|
||||||
font-weight: bold;
|
|
||||||
}
|
|
||||||
#articles
|
|
||||||
{
|
|
||||||
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);
|
|
||||||
}
|
|
||||||
.rubrique
|
|
||||||
{
|
|
||||||
background-color : rgb(200, 200, 250);
|
|
||||||
padding : 0 0 0 1mm;
|
|
||||||
}
|
|
||||||
.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;
|
|
||||||
}
|
|
||||||
</style>
|
|
||||||
</head>
|
|
||||||
|
|
||||||
<body class="print">
|
|
||||||
<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>
|
|
||||||
</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>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="cartouche" id="donateur">
|
|
||||||
<h3 class="rubrique">Donateur</h3>
|
|
||||||
<p>
|
|
||||||
{{$nom}}<br />
|
|
||||||
{{$adresse}}<br />
|
|
||||||
{{$code_postal}} {{$ville}}
|
|
||||||
{{if $courriel != ""}}
|
|
||||||
<br />courriel : <a href="mailto:{{$courriel}}">{{$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>
|
|
||||||
{{#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>
|
|
||||||
|
|
||||||
{{#informations}}
|
|
||||||
<p><span class="titre">{{$titre}}</span><span class="libelle"> {{$libelle}}</span></p>
|
|
||||||
{{/informations}}
|
|
||||||
|
|
||||||
<p>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>
|
|
||||||
</body>
|
|
||||||
</html>
|
|
|
@ -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,18 +0,0 @@
|
||||||
{include file="_head.tpl" title="Envoi de fichier"}
|
|
||||||
|
|
||||||
{form_errors}
|
|
||||||
|
|
||||||
<form method="post" action="{$self_url}" enctype="multipart/form-data" data-focus="1">
|
|
||||||
<fieldset>
|
|
||||||
<legend>Téléverser des fichiers</legend>
|
|
||||||
<dl>
|
|
||||||
{input type="file" name="file[]" multiple=true label="Fichiers à envoyer" data-enhanced=1}
|
|
||||||
</dl>
|
|
||||||
<p class="submit">
|
|
||||||
{csrf_field key=$csrf_key}
|
|
||||||
{button type="submit" name="upload" label="Envoyer" shape="upload" class="main"}
|
|
||||||
</p>
|
|
||||||
</fieldset>
|
|
||||||
</form>
|
|
||||||
|
|
||||||
{include file="_foot.tpl"}
|
|
|
@ -1,93 +1,88 @@
|
||||||
<!-- nav bar -->
|
<!-- 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>Liste des versements par activité et tarif</h2>
|
||||||
|
|
||||||
<fieldset class="noprint">
|
<div class="year-header noprint">
|
||||||
<input type="checkbox" class="check_global" id="check_global" onclick="cocherDecocherTout(check_global)" />
|
<button type="button" data-icon="↓" class="icn-btn" id="open_details">Déplier toutes les activités</button>
|
||||||
<label for="check_global">Cliquer pour cocher toutes les lignes</label>
|
<button type="button" data-icon="↑" class="icn-btn" id="close_details">Replier toutes les activités</button>
|
||||||
<button type="button" data-icon="↑" class="icn-btn" id="close_details_activite"
|
</div>
|
||||||
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)"}
|
|
||||||
</fieldset>
|
|
||||||
|
|
||||||
<form method="post" target="_blank" id="versements_activites">
|
{*
|
||||||
|
<form method="post" id="imprimer_activites" action="imprimer_activites.php">
|
||||||
|
<input type="submit" value="Fabriquer PDF">
|
||||||
|
</form>
|
||||||
|
*}
|
||||||
|
|
||||||
{* Itération sur les versements *}
|
<form method="post" id="versements_activites" action="generer_activites.php">
|
||||||
{foreach from=$lesVersements key="rang" item="versement"}
|
|
||||||
{if $rang == 0}
|
<fieldset class="versements" id="versements_global">
|
||||||
{* premier versement *}
|
<input type="checkbox" class="check_global" id="check_global" onclick="cocherDecocherTout(check_global)" />
|
||||||
<?php
|
<label for="check_global">Cliquer pour cocher toutes les lignes</label>
|
||||||
$pair = true;
|
</fieldset>
|
||||||
$tarifCourant = $versement->idTarif;
|
|
||||||
$personneCourante = $versement->idUser;
|
{* Itération sur les versements *}
|
||||||
$compteCourant = $versement->idCompte;
|
{foreach from=$lesVersements key="i" item="versement"}
|
||||||
$codeCompte = $versement->codeCompte;
|
{if $i == 0}
|
||||||
?>
|
{* premier versement *}
|
||||||
{afficher_debut_tarif versement=$versement}
|
<?php
|
||||||
{afficher_debut_personne user=$personneCourante idVersement="%s_%s"|args:$tarifCourant,$personneCourante}
|
$tarifCourant = $versement->idTarif;
|
||||||
{afficher_debut_compte idCompte=$compteCourant}
|
$personneCourante = $versement->idUser;
|
||||||
{elseif $versement.idTarif != $tarifCourant}
|
?>
|
||||||
{* changement de tarif *}
|
{afficher_debut_tarif versement=$versement}
|
||||||
{fin_compte}
|
{afficher_debut_personne versement=$versement}
|
||||||
{fin_personne}
|
{afficher_versement versement=$versement rang=$i}
|
||||||
{fin_tarif}
|
{else}
|
||||||
<?php
|
{* autre versement *}
|
||||||
$pair = true;
|
{if $versement.idTarif != $tarifCourant}
|
||||||
$tarifCourant = $versement->idTarif;
|
{* changement de tarif *}
|
||||||
$personneCourante = $versement->idUser;
|
</fieldset> {* fin versements d'une personne *}
|
||||||
$compteCourant = $versement->idCompte;
|
</details>
|
||||||
$codeCompte = $versement->codeCompte;
|
<?php
|
||||||
?>
|
$tarifCourant = $versement->idTarif;
|
||||||
{afficher_debut_tarif versement=$versement}
|
$personneCourante = $versement->idUser;
|
||||||
{afficher_debut_personne user=$personneCourante idVersement="%s_%s"|args:$tarifCourant,$personneCourante}
|
?>
|
||||||
{afficher_debut_compte idCompte=$compteCourant}
|
{afficher_debut_tarif versement=$versement}
|
||||||
{elseif $versement.idUser != $personneCourante}
|
{afficher_debut_personne versement=$versement}
|
||||||
{* changement de personne *}
|
{afficher_versement versement=$versement rang=$i}
|
||||||
{fin_compte}
|
{elseif $versement.idUser != $personneCourante}
|
||||||
{fin_personne}
|
{* changement de personne *}
|
||||||
<?php
|
</fieldset>
|
||||||
$pair = true;
|
<?php
|
||||||
$personneCourante = $versement->idUser;
|
$personneCourante = $versement->idUser;
|
||||||
$compteCourant = $versement->idCompte;
|
?>
|
||||||
$codeCompte = $versement->codeCompte;
|
{afficher_debut_personne versement=$versement}
|
||||||
?>
|
{afficher_versement versement=$versement rang=$i}
|
||||||
{afficher_debut_personne user=$personneCourante idVersement="%s_%s"|args:$tarifCourant,$personneCourante}
|
{else}
|
||||||
{afficher_debut_compte idCompte=$compteCourant}
|
{* même personne *}
|
||||||
{elseif $versement.codeCompte != $codeCompte}
|
{afficher_versement versement=$versement rang=$i}
|
||||||
{fin_compte}
|
{/if}
|
||||||
{* changement de compte *}
|
{/if}
|
||||||
<?php
|
{/foreach} {* Itération sur les versements *}
|
||||||
$pair = true;
|
</fieldset>
|
||||||
$compteCourant = $versement->idCompte;
|
</details>
|
||||||
$codeCompte = $versement->codeCompte;
|
|
||||||
?>
|
<input type="submit" value="Générer les reçus" onclick="return verifierChoix(this.form)">
|
||||||
{afficher_debut_compte idCompte=$compteCourant}
|
|
||||||
{else}
|
|
||||||
{* même personne, même compte *}
|
|
||||||
{/if}
|
|
||||||
{afficher_versement versement=$versement idVersement="%s_%s"|args:$tarifCourant,$personneCourante rang=$rang pair=$pair}
|
|
||||||
<?php $pair = ! $pair; ?>
|
|
||||||
{/foreach} {* Itération sur les versements *}
|
|
||||||
{fin_compte}
|
|
||||||
{fin_personne}
|
|
||||||
{fin_tarif}
|
|
||||||
</form>
|
</form>
|
||||||
|
|
||||||
{* scripts divers *}
|
{* scripts pour cases à cocher *}
|
||||||
<script src="script.js"></script>
|
<script src="script.js"></script>
|
||||||
|
|
||||||
|
{literal}
|
||||||
|
<script type="text/javascript">
|
||||||
|
// ouvrir/fermer les détails
|
||||||
|
document.querySelector('#open_details').onclick = () => {
|
||||||
|
document.querySelectorAll('details').forEach((e) => {
|
||||||
|
e.setAttribute('open', 'open');
|
||||||
|
});
|
||||||
|
};
|
||||||
|
document.querySelector('#close_details').onclick = () => {
|
||||||
|
document.querySelectorAll('details').forEach((e) => {
|
||||||
|
e.removeAttribute('open');
|
||||||
|
});
|
||||||
|
};
|
||||||
|
</script>
|
||||||
|
{/literal}
|
||||||
|
|
||||||
<!-- footer -->
|
<!-- footer -->
|
||||||
{include file="_foot.tpl"}
|
{include file="admin/_foot.tpl"}
|
|
@ -1,74 +1,51 @@
|
||||||
<!-- nav bar -->
|
<!-- nav bar -->
|
||||||
{include file="%s/templates/_nav.tpl"|args:$plugin_root current_nav="personne"}
|
{include file="%s/templates/_nav.tpl"|args:$plugin_root current_nav="personne"}
|
||||||
|
|
||||||
<h2>Année {$annee_recu} : versements par personne</h2>
|
<h2>Liste des versements totaux par personne</h2>
|
||||||
|
|
||||||
<fieldset class="noprint">
|
<form method="post" action="generer_personnes.php">
|
||||||
<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)"}
|
|
||||||
</fieldset>
|
|
||||||
|
|
||||||
<form method="post" target="_dialog" id="versements_personnes">
|
{* Itération sur les personnes *}
|
||||||
|
<table class="list">
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th class="check">
|
||||||
|
<input type="checkbox" title="Tout cocher / décocher" id="f_all" />
|
||||||
|
<label for="f_all"></label>
|
||||||
|
</th>
|
||||||
|
<th>Id</th>
|
||||||
|
<th>Nom Prénom</th>
|
||||||
|
<th>Montant</th>
|
||||||
|
<th>Adresse</th>
|
||||||
|
<th>Code postal</th>
|
||||||
|
<th>Ville</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
{foreach from=$lesVersementsTotaux key=rang item="versement"}
|
||||||
|
<tr>
|
||||||
|
<td class="check">
|
||||||
|
{input
|
||||||
|
type="checkbox"
|
||||||
|
name="selected[]"
|
||||||
|
value=$rang}
|
||||||
|
</td>
|
||||||
|
<td>{$versement.idUser}</td>
|
||||||
|
<td>{$lesDonateurs[$versement.idUser]->nomPrenom}</td>
|
||||||
|
<td class="montant">{$versement.versement|raw|money}</td>
|
||||||
|
<td>{$lesDonateurs[$versement.idUser]->adresse}</td>
|
||||||
|
<td>{$lesDonateurs[$versement.idUser]->codePostal}</td>
|
||||||
|
<td>{$lesDonateurs[$versement.idUser]->ville}</td>
|
||||||
|
</tr>
|
||||||
|
{/foreach}
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
|
||||||
{* Itération sur les personnes *}
|
<input type="submit" value="Générer les reçus" onclick="return verifierChoix(this.form)">
|
||||||
{foreach from=$lesVersements key="rang" 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}
|
|
||||||
{elseif $versement.idUser != $personneCourante}
|
|
||||||
{* changement de personne *}
|
|
||||||
{fin_compte}
|
|
||||||
{fin_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}
|
|
||||||
{elseif $versement.codeCompte != $codeCompte}
|
|
||||||
{fin_compte}
|
|
||||||
{* changement de compte *}
|
|
||||||
<?php
|
|
||||||
$pair = true;
|
|
||||||
$compteCourant = $versement->idCompte;
|
|
||||||
$codeCompte = $versement->codeCompte;
|
|
||||||
?>
|
|
||||||
{afficher_debut_compte idCompte=$compteCourant}
|
|
||||||
{else}
|
|
||||||
{* même personne, même compte *}
|
|
||||||
{/if}
|
|
||||||
{afficher_versement versement=$versement idVersement=$personneCourante rang=$rang pair=$pair}
|
|
||||||
<?php $pair = ! $pair; ?>
|
|
||||||
{/foreach} {* Itération sur les personnes *}
|
|
||||||
{fin_compte}
|
|
||||||
{fin_personne}
|
|
||||||
</form>
|
</form>
|
||||||
|
|
||||||
{* scripts divers *}
|
{* scripts pour cases à cocher *}
|
||||||
<script src="script.js"></script>
|
<script src="script.js"></script>
|
||||||
|
|
||||||
<!-- footer -->
|
<!-- footer -->
|
||||||
{include file="_foot.tpl"}
|
{include file="admin/_foot.tpl"}
|
|
@ -1,20 +0,0 @@
|
||||||
<?php
|
|
||||||
namespace Paheko;
|
|
||||||
|
|
||||||
// supprimer les fichiers créés
|
|
||||||
|
|
||||||
// signature par défaut
|
|
||||||
$default_signature_file = \Paheko\Files\Files::get('ext/recusfiscaux/default_signature.png');
|
|
||||||
if (null !== $default_signature_file) {
|
|
||||||
$default_signature_file->delete();
|
|
||||||
}
|
|
||||||
|
|
||||||
// signature réelle
|
|
||||||
$signature = $plugin->getConfig('signature');
|
|
||||||
if (null !== $signature) {
|
|
||||||
$sig_file = \Paheko\Files\Files::get($signature);
|
|
||||||
if (null !== $sig_file) {
|
|
||||||
$sig_file->delete();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
unset($_SESSION['sig_file']);
|
|
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,9 @@
|
||||||
|
<?php
|
||||||
|
|
||||||
|
namespace Garradin;
|
||||||
|
|
||||||
|
if ($_POST['choix_versements'] == 'tous_versements') {
|
||||||
|
require('versements_personnes.php');
|
||||||
|
} else {
|
||||||
|
require('versements_activites.php');
|
||||||
|
}
|
|
@ -0,0 +1,52 @@
|
||||||
|
<?php
|
||||||
|
|
||||||
|
namespace Garradin;
|
||||||
|
use Garradin\Files\Files;
|
||||||
|
use Garradin\Entities\Files\File;
|
||||||
|
|
||||||
|
$session->requireAccess($session::SECTION_CONFIG, $session::ACCESS_ADMIN);
|
||||||
|
$art_sel=f('articlesCGI') ? : [];
|
||||||
|
|
||||||
|
$path = qg('path') ?: File::CONTEXT_CONFIG;
|
||||||
|
$context = Files::getContext($path);
|
||||||
|
$context_ref = Files::getContextRef($path);
|
||||||
|
|
||||||
|
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);
|
||||||
|
|
||||||
|
// 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'])) {
|
||||||
|
$plugin->setConfig('signature', $_SESSION['sig_file'][0]->path);
|
||||||
|
}
|
||||||
|
|
||||||
|
\Garradin\Utils::redirect(PLUGIN_URL . 'config.php?ok');
|
||||||
|
}
|
||||||
|
catch (UserException $e)
|
||||||
|
{
|
||||||
|
$form->addError($e->getMessage());
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
$tpl->assign('ok', qg('ok') !== null);
|
||||||
|
$tpl->assign('path', $path);
|
||||||
|
$tpl->assign('default_signature', \Garradin\WWW_URL . "plugin/recusFiscaux/default_signature.png");
|
||||||
|
$tpl->assign('plugin_config', $plugin->getConfig());
|
||||||
|
$tpl->assign('plugin_css', ['style.css']);
|
||||||
|
$tpl->display(PLUGIN_ROOT . '/templates/config.tpl');
|
|
@ -0,0 +1,136 @@
|
||||||
|
<?php
|
||||||
|
|
||||||
|
namespace Garradin;
|
||||||
|
|
||||||
|
use Garradin\Plugin\RecusFiscaux\RecusHTML;
|
||||||
|
use Garradin\Plugin\RecusFiscaux\Utils;
|
||||||
|
use Garradin\Plugin\RecusFiscaux\Personne;
|
||||||
|
|
||||||
|
// récupérer les lignes sélectionnées
|
||||||
|
$lesLignes = f('selected');
|
||||||
|
|
||||||
|
// filtrer les versements sélectionnés
|
||||||
|
$versementsSelectionnes = array();
|
||||||
|
foreach ($lesLignes as $ligne) {
|
||||||
|
$versementsSelectionnes[] = $_SESSION['lesVersements'][$ligne];
|
||||||
|
}
|
||||||
|
// cumuler les versements d'une personne
|
||||||
|
$totalPersonnes = cumulerVersements($versementsSelectionnes);
|
||||||
|
|
||||||
|
// générer les reçus
|
||||||
|
$nomAsso = Utils::getNomAsso();
|
||||||
|
$adresseAsso = Utils::getAdresseAsso();
|
||||||
|
|
||||||
|
$signature =
|
||||||
|
(null !== $plugin->getConfig('signature')) ?
|
||||||
|
\Garradin\Files\Files::get($plugin->getConfig('signature'))->fullpath() :
|
||||||
|
\Garradin\WWW_URL . "plugin/recusFiscaux/default_signature.png";
|
||||||
|
|
||||||
|
// articles du CGI
|
||||||
|
$articlesCGI = array();
|
||||||
|
foreach ($plugin->getConfig('articlesCGI') as $article)
|
||||||
|
{
|
||||||
|
if ($article->valeur == 1) {
|
||||||
|
$articlesCGI[] = $article->titre;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
$listeFichiers = array(); // fichiers pdf générés
|
||||||
|
foreach ($totalPersonnes as $idPersonne => $personne)
|
||||||
|
{
|
||||||
|
// générer un fichier par reçu
|
||||||
|
$html = new RecusHTML(
|
||||||
|
$nomAsso,
|
||||||
|
$adresseAsso,
|
||||||
|
$plugin->getConfig('objet_asso'),
|
||||||
|
$plugin->getConfig('nom_responsable'),
|
||||||
|
$plugin->getConfig('fonction_responsable'),
|
||||||
|
$articlesCGI,
|
||||||
|
$signature
|
||||||
|
);
|
||||||
|
// extraire les montants des versements
|
||||||
|
$lesMontants = array();
|
||||||
|
foreach ($personne->versements as $versement)
|
||||||
|
{
|
||||||
|
if (array_key_exists($versement->tauxReduction, $lesMontants)) {
|
||||||
|
$lesMontants[$versement->tauxReduction] += $versement->montant;
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
$lesMontants[$versement->tauxReduction] = $versement->montant;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
$html->imprimer_recu(
|
||||||
|
$_SESSION['annee_recu'],
|
||||||
|
$personne->id,
|
||||||
|
$personne->nomPrenom,
|
||||||
|
$lesMontants,
|
||||||
|
$personne->adresse,
|
||||||
|
$personne->codePostal,
|
||||||
|
$personne->ville
|
||||||
|
);
|
||||||
|
// fabriquer le fichier PDF
|
||||||
|
$nomPDF = \Garradin\Utils::filePDF($html->get());
|
||||||
|
// changer le nom du fichier
|
||||||
|
$nom = str_replace(' ', '_', $personne->nomPrenom);
|
||||||
|
$nom = str_replace("'", "", $nom);
|
||||||
|
$nomFichier = "recu_" . $_SESSION['annee_recu'] . "_" . $nom . ".pdf";
|
||||||
|
rename($nomPDF, $nomFichier);
|
||||||
|
// ajouter le nom du fichier à la liste pour mettre dans une archive
|
||||||
|
$listeFichiers[] = $nomFichier;
|
||||||
|
}
|
||||||
|
|
||||||
|
// faire une archive zip
|
||||||
|
$fichierZip = Utils::makeArchive(
|
||||||
|
$listeFichiers,
|
||||||
|
$_SESSION['annee_recu'],
|
||||||
|
PLUGIN_ROOT . "/zip"
|
||||||
|
);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 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 cumulerVersements($versements)
|
||||||
|
{
|
||||||
|
$totalPersonnes = array();
|
||||||
|
$idTarif_courant = -1;
|
||||||
|
$idPersonne_courant = -1;
|
||||||
|
$totalVersements = 0;
|
||||||
|
foreach ($versements as $ligne)
|
||||||
|
{
|
||||||
|
if (
|
||||||
|
$ligne->idTarif != $idTarif_courant ||
|
||||||
|
$ligne->idUser != $idPersonne_courant
|
||||||
|
)
|
||||||
|
{
|
||||||
|
if ($idTarif_courant != -1) {
|
||||||
|
$totalPersonnes[$idPersonne_courant]->ajouterVersement(
|
||||||
|
$_SESSION['lesTarifs'][$idTarif_courant]->idActivite,
|
||||||
|
$idTarif_courant,
|
||||||
|
$totalVersements/100,
|
||||||
|
$_SESSION['tauxSelectionnes'][$idTarif_courant]
|
||||||
|
);
|
||||||
|
}
|
||||||
|
$idTarif_courant = $ligne->idTarif;
|
||||||
|
$idPersonne_courant = $ligne->idUser;
|
||||||
|
$totalVersements = $ligne->versement;
|
||||||
|
// créer les infos de la personne, sauf si elle est déjà présente
|
||||||
|
if (!array_key_exists($idPersonne_courant, $totalPersonnes))
|
||||||
|
{
|
||||||
|
$totalPersonnes["$idPersonne_courant"] = $_SESSION['membresDonateurs'][$ligne->idUser]->clone();
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
// cumuler versements
|
||||||
|
$totalVersements += $ligne->versement;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
// et le dernier
|
||||||
|
$totalPersonnes[$idPersonne_courant]->ajouterVersement(
|
||||||
|
$_SESSION['lesTarifs'][$idTarif_courant]->idActivite,
|
||||||
|
$idTarif_courant,
|
||||||
|
$totalVersements/100,
|
||||||
|
$_SESSION['tauxSelectionnes'][$idTarif_courant]
|
||||||
|
);
|
||||||
|
|
||||||
|
return $totalPersonnes;
|
||||||
|
}
|
|
@ -0,0 +1,77 @@
|
||||||
|
<?php
|
||||||
|
|
||||||
|
namespace Garradin;
|
||||||
|
|
||||||
|
use Garradin\Plugin\RecusFiscaux\RecusHTML;
|
||||||
|
use Garradin\Plugin\RecusFiscaux\Utils;
|
||||||
|
use Garradin\Plugin\RecusFiscaux\Personne;
|
||||||
|
|
||||||
|
// récupérer les lignes sélectionnées
|
||||||
|
$lesLignes = f('selected');
|
||||||
|
|
||||||
|
// filtrer les versements sélectionnés
|
||||||
|
$versementsSelectionnes = array();
|
||||||
|
foreach ($lesLignes as $ligne) {
|
||||||
|
$versementsSelectionnes[] = $_SESSION['lesVersementsTotaux'][$ligne];
|
||||||
|
}
|
||||||
|
|
||||||
|
// générer les reçus
|
||||||
|
$nomAsso = Utils::getNomAsso();
|
||||||
|
$adresseAsso = Utils::getAdresseAsso();
|
||||||
|
|
||||||
|
$signature =
|
||||||
|
(null !== $plugin->getConfig('signature')) ?
|
||||||
|
\Garradin\Files\Files::get($plugin->getConfig('signature'))->fullpath() :
|
||||||
|
\Garradin\WWW_URL . "plugin/recusFiscaux/default_signature.png";
|
||||||
|
|
||||||
|
// articles du CGI
|
||||||
|
$articlesCGI = array();
|
||||||
|
foreach ($plugin->getConfig('articlesCGI') as $article)
|
||||||
|
{
|
||||||
|
if ($article->valeur == 1) {
|
||||||
|
$articlesCGI[] = $article->titre;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
$listeFichiers = array(); // fichiers pdf générés
|
||||||
|
foreach ($versementsSelectionnes as $ligne)
|
||||||
|
{
|
||||||
|
// générer un fichier par reçu
|
||||||
|
$html = new RecusHTML(
|
||||||
|
$nomAsso,
|
||||||
|
$adresseAsso,
|
||||||
|
$plugin->getConfig('objet_asso'),
|
||||||
|
$plugin->getConfig('nom_responsable'),
|
||||||
|
$plugin->getConfig('fonction_responsable'),
|
||||||
|
$articlesCGI,
|
||||||
|
$signature
|
||||||
|
);
|
||||||
|
|
||||||
|
// extraire les montants des versements
|
||||||
|
$lesMontants[$_SESSION['taux_reduction']] = $ligne->versement/100;
|
||||||
|
$personne = $_SESSION['membresDonateurs'][$ligne->idUser];
|
||||||
|
$html->imprimer_recu(
|
||||||
|
$_SESSION['annee_recu'],
|
||||||
|
$personne->id,
|
||||||
|
$personne->nomPrenom,
|
||||||
|
$lesMontants,
|
||||||
|
$personne->adresse,
|
||||||
|
$personne->codePostal,
|
||||||
|
$personne->ville
|
||||||
|
);
|
||||||
|
// fabriquer le fichier PDF
|
||||||
|
$nomPDF = \Garradin\Utils::filePDF($html->get());
|
||||||
|
// changer le nom du fichier
|
||||||
|
$nom = str_replace(' ', '_', $personne->nomPrenom);
|
||||||
|
$nom = str_replace("'", "", $nom);
|
||||||
|
$nomFichier = "recu_" . $_SESSION['annee_recu'] . "_" . $nom . ".pdf";
|
||||||
|
rename($nomPDF, $nomFichier);
|
||||||
|
// ajouter le nom du fichier à la liste pour mettre dans une archive
|
||||||
|
$listeFichiers[] = $nomFichier;
|
||||||
|
}
|
||||||
|
|
||||||
|
// faire une archive zip
|
||||||
|
$fichierZip = Utils::makeArchive(
|
||||||
|
$listeFichiers,
|
||||||
|
$_SESSION['annee_recu'],
|
||||||
|
PLUGIN_ROOT . "/zip"
|
||||||
|
);
|
|
@ -0,0 +1,28 @@
|
||||||
|
<?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'));
|
||||||
|
|
||||||
|
// 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('plugin_config', $plugin->getConfig());
|
||||||
|
$tpl->assign('plugin_css', ['style.css']);
|
||||||
|
|
||||||
|
// envoyer au template
|
||||||
|
$tpl->display(PLUGIN_ROOT . '/templates/index.tpl');
|
|
@ -0,0 +1,180 @@
|
||||||
|
/**
|
||||||
|
* 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 id de la case globale
|
||||||
|
*/
|
||||||
|
function cocherDecocherTout(idCaseGlobale)
|
||||||
|
{
|
||||||
|
// chercher le formulaire englobant
|
||||||
|
var formulaire = idCaseGlobale.closest("form");
|
||||||
|
// itérer sur la liste des éléments détails : 1 par couple <activité, tarif>
|
||||||
|
var lesDetails = formulaire.querySelectorAll("details");
|
||||||
|
for (var i = 0; i < lesDetails.length; ++i) {
|
||||||
|
// itérer sur les personnes
|
||||||
|
var lesH3 = lesDetails[i].querySelectorAll("h3.personne");
|
||||||
|
for (var j = 0; j < lesH3.length; ++j) {
|
||||||
|
// trouver l'élément total de la personne
|
||||||
|
var idTotal = lesH3[j].querySelector("span");
|
||||||
|
// puis la case à cocher
|
||||||
|
var fieldset = lesH3[j].nextElementSibling;
|
||||||
|
var idCase = fieldset.querySelector("input");
|
||||||
|
idCase.checked = idCaseGlobale.checked;
|
||||||
|
// puis traiter toutes les cases de la personne
|
||||||
|
cocherDecocherPersonne(idCase, idTotal);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
// changer le message
|
||||||
|
var message = idCaseGlobale.nextElementSibling;
|
||||||
|
if (idCase.checked) {
|
||||||
|
message.innerHTML = "Cliquer pour dé-cocher toutes les lignes";
|
||||||
|
} else {
|
||||||
|
message.innerHTML = "Cliquer pour cocher toutes les lignes";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 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 id de la case qui a été cochée
|
||||||
|
* @param id de l'élément où afficher le total
|
||||||
|
*/
|
||||||
|
function cocherDecocherPersonne(idCase, idTotal)
|
||||||
|
{
|
||||||
|
// chercher le fieldset englobant
|
||||||
|
var fieldset = idCase.closest("fieldset");
|
||||||
|
var listeCases = fieldset.querySelectorAll("input[type=checkbox]");
|
||||||
|
for (var i = 1; i < listeCases.length; ++i)
|
||||||
|
{
|
||||||
|
listeCases[i].checked = idCase.checked;
|
||||||
|
}
|
||||||
|
// changer le message
|
||||||
|
var message = idCase.nextElementSibling;
|
||||||
|
if (idCase.checked) {
|
||||||
|
message.innerHTML = "Cliquer pour dé-cocher toutes les lignes";
|
||||||
|
} else {
|
||||||
|
message.innerHTML = "Cliquer pour cocher toutes les lignes";
|
||||||
|
}
|
||||||
|
// calculer et afficher le total
|
||||||
|
var listeMontants = fieldset.querySelectorAll("span.montant");
|
||||||
|
calculerTotal(listeCases, listeMontants, idTotal);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Fonction appelée quand on (dé)coche la case d'un versement
|
||||||
|
* - (dé)sélectionner cette case (?)
|
||||||
|
* - faire le total des cases cochées et l'afficher
|
||||||
|
*
|
||||||
|
* @param id de la case qui a été cochée
|
||||||
|
* @param id de l'élément où afficher le total
|
||||||
|
*/
|
||||||
|
function cocherDecocherVersement(idCase, idTotal)
|
||||||
|
{
|
||||||
|
var fieldset = idCase.closest("fieldset");
|
||||||
|
var listeCases = fieldset.querySelectorAll("input[type=checkbox]");
|
||||||
|
var listeMontants = fieldset.querySelectorAll("span.montant");
|
||||||
|
calculerTotal(listeCases, listeMontants, idTotal);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Faire le total des cases cochées et l'afficher
|
||||||
|
* @param listes des cases
|
||||||
|
* @param listes des montants associés
|
||||||
|
* @param id de l'élément où afficher le total
|
||||||
|
*/
|
||||||
|
function calculerTotal(listeCases, listeMontants, idTotal)
|
||||||
|
{
|
||||||
|
var total = 0;
|
||||||
|
for (var i = 1; i < listeCases.length; ++i)
|
||||||
|
{
|
||||||
|
if (listeCases[i].checked) {
|
||||||
|
total += parseFloat(listeMontants[i-1].textContent.replace(/\s/g, ""));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
// "afficher" le total
|
||||||
|
idTotal.innerHTML =
|
||||||
|
total.toLocaleString('fr-FR', {style: 'currency', currency: 'EUR',
|
||||||
|
minimumFractionDigits: 2});
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* fonction appelée lors de la validation du formulaire
|
||||||
|
* @return vrai si au moins un choix a été fait
|
||||||
|
* @param : formulaire
|
||||||
|
*/
|
||||||
|
function verifierChoix(formulaire)
|
||||||
|
{
|
||||||
|
var listeCheck = formulaire.getElementsByTagName("input");
|
||||||
|
var ok = false;
|
||||||
|
for (var 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;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* fonction appelée pour afficher et masquer des portions de formulaire
|
||||||
|
*/
|
||||||
|
function afficherMasquer(formulaire, nomClasse1, nomClasse2)
|
||||||
|
{
|
||||||
|
for (var elem of formulaire.querySelectorAll(nomClasse1)) {
|
||||||
|
elem.classList.remove('hidden');
|
||||||
|
}
|
||||||
|
for (var 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é :)
|
||||||
|
function verifierCases(idElem)
|
||||||
|
{
|
||||||
|
var div = document.getElementById(idElem);
|
||||||
|
var nbChoix = 0;
|
||||||
|
// parcourir les cases à cocher
|
||||||
|
for (var idCase of div.querySelectorAll("input[type=checkbox]"))
|
||||||
|
{
|
||||||
|
if (idCase.checked) {
|
||||||
|
++nbChoix;
|
||||||
|
// vérifier qu'un radio de la même ligne est sélectionné
|
||||||
|
var ligneCorrecte = false;
|
||||||
|
// trouver la ligne englobante
|
||||||
|
var ligne = idCase.closest("tr");
|
||||||
|
for (var 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
|
||||||
|
function verifierRadio(idElem)
|
||||||
|
{
|
||||||
|
var div = document.getElementById(idElem);
|
||||||
|
for (var 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;
|
||||||
|
}
|
|
@ -0,0 +1,40 @@
|
||||||
|
/* liste des versements */
|
||||||
|
div.pair {
|
||||||
|
padding : 0.1em;
|
||||||
|
background: rgba(var(--gSecondColor), 0.2);
|
||||||
|
}
|
||||||
|
div.impair {
|
||||||
|
padding : 0.1em;
|
||||||
|
}
|
||||||
|
fieldset {
|
||||||
|
border:1px solid brown;
|
||||||
|
-webkit-border-radius:8px;
|
||||||
|
border-radius:8px;
|
||||||
|
}
|
||||||
|
fieldset label {
|
||||||
|
font-weight:bold;
|
||||||
|
}
|
||||||
|
div span {
|
||||||
|
padding-left : 0.5em;
|
||||||
|
padding-right : 0.5em;
|
||||||
|
}
|
||||||
|
td.montant {
|
||||||
|
text-align : right;
|
||||||
|
}
|
||||||
|
summary.activite {
|
||||||
|
background: rgba(var(--gMainColor), 0.25);
|
||||||
|
}
|
||||||
|
h3.personne {
|
||||||
|
background: rgba(var(--gSecondColor), 0.35);
|
||||||
|
}
|
||||||
|
input[type="text"] {
|
||||||
|
width: 50em;
|
||||||
|
}
|
||||||
|
#signature
|
||||||
|
{
|
||||||
|
width:300px;
|
||||||
|
}
|
||||||
|
dl.config
|
||||||
|
{
|
||||||
|
padding : 1ex 0;
|
||||||
|
}
|
|
@ -0,0 +1,148 @@
|
||||||
|
<?php
|
||||||
|
|
||||||
|
namespace Garradin;
|
||||||
|
|
||||||
|
use Garradin\Plugin\RecusFiscaux\Activite;
|
||||||
|
use Garradin\Plugin\RecusFiscaux\Personne;
|
||||||
|
use Garradin\Plugin\RecusFiscaux\Tarif;
|
||||||
|
use Garradin\Plugin\RecusFiscaux\Utils;
|
||||||
|
|
||||||
|
// 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');
|
||||||
|
}
|
||||||
|
// 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] = Tarif::copier($ot);
|
||||||
|
}
|
||||||
|
$_SESSION['lesTarifs'] = $lesTarifs;
|
||||||
|
|
||||||
|
// activités correspondants aux tarifs sélectionnés
|
||||||
|
$lesActivites = array();
|
||||||
|
foreach (Utils::getActivites($tarifsSelectionnes) as $activite) {
|
||||||
|
$lesActivites[$activite->id] = Activite::copier($activite);
|
||||||
|
}
|
||||||
|
$_SESSION['lesActivites'] = $lesActivites;
|
||||||
|
|
||||||
|
// versements correspondants aux tarifs sélectionnés
|
||||||
|
$_SESSION['lesVersements'] = Utils::getVersementsTarifs($_SESSION['annee_recu'], $tarifsSelectionnes);
|
||||||
|
|
||||||
|
// membres donateurs
|
||||||
|
$membresDonateurs = array();
|
||||||
|
$versementsMembres = Utils::getDonateurs($_SESSION['annee_recu']);
|
||||||
|
foreach ($versementsMembres as $versement) {
|
||||||
|
$membresDonateurs[$versement->idUser] = new Personne($versement->idUser,
|
||||||
|
$versement->nom,
|
||||||
|
$versement->adresse,
|
||||||
|
$versement->codePostal,
|
||||||
|
$versement->ville);
|
||||||
|
}
|
||||||
|
$_SESSION['membresDonateurs'] = $membresDonateurs;
|
||||||
|
|
||||||
|
// ------------------------------------------------------------------------
|
||||||
|
// 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 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)
|
||||||
|
{
|
||||||
|
$versement = $params['versement'];
|
||||||
|
$idUser = $versement->idUser;
|
||||||
|
$personne = $_SESSION['membresDonateurs'][$idUser];
|
||||||
|
$idVersement = $versement->idTarif . "_" . $versement->idUser;
|
||||||
|
$out = sprintf('<h3 class="personne">Versements de %s : <span id="total_%s">0,00 €</span></h3>',
|
||||||
|
$personne->nomPrenom,
|
||||||
|
$idVersement);
|
||||||
|
$out .= sprintf('
|
||||||
|
<fieldset class="versements" id="versements_%s">',
|
||||||
|
$idVersement);
|
||||||
|
$out .= sprintf('
|
||||||
|
<input type="checkbox" class="check_%s" id="check_%s"',
|
||||||
|
$idVersement,
|
||||||
|
$idVersement);
|
||||||
|
$out .= sprintf(' onclick="cocherDecocherPersonne(check_%s, total_%s)" />',
|
||||||
|
$idVersement,
|
||||||
|
$idVersement);
|
||||||
|
$out .= sprintf('
|
||||||
|
<label for="check_%s">Cliquer pour cocher toutes les lignes</label>',
|
||||||
|
$idVersement);
|
||||||
|
$out .= '<br />
|
||||||
|
<hr>';
|
||||||
|
return $out;
|
||||||
|
});
|
||||||
|
|
||||||
|
// afficher un versement
|
||||||
|
$tpl->register_function('afficher_versement', function ($params)
|
||||||
|
{
|
||||||
|
$versement = $params['versement'];
|
||||||
|
$rang = $params['rang'];
|
||||||
|
$idVersement = $versement->idTarif . "_" . $versement->idUser;
|
||||||
|
$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)" />
|
||||||
|
<label for="check_%s_%s"></label>
|
||||||
|
<span class="montant">%.2f</span>
|
||||||
|
<span>%s</span>
|
||||||
|
</div>',
|
||||||
|
$idVersement, $idVersement,
|
||||||
|
$rang, $rang,
|
||||||
|
$idVersement, $rang, $idVersement, $idVersement, $rang,
|
||||||
|
$versement->versement/100,
|
||||||
|
date_format(date_create($versement->date),"d/m/Y"));
|
||||||
|
return $out;
|
||||||
|
});
|
||||||
|
// ------------------------------------------------------------------------
|
||||||
|
|
||||||
|
// 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,36 @@
|
||||||
|
<?php
|
||||||
|
|
||||||
|
namespace Garradin;
|
||||||
|
|
||||||
|
use Garradin\Plugin\RecusFiscaux\Personne;
|
||||||
|
use Garradin\Plugin\RecusFiscaux\Utils;
|
||||||
|
|
||||||
|
// 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');
|
||||||
|
}
|
||||||
|
$_SESSION['taux_reduction'] = $_POST['taux_reduction'];
|
||||||
|
|
||||||
|
// versements totaux par personne
|
||||||
|
$_SESSION['lesVersementsTotaux'] = Utils::getVersementsTotaux($_SESSION['annee_recu']);
|
||||||
|
|
||||||
|
// membres donateurs
|
||||||
|
$membresDonateurs = array();
|
||||||
|
$versementsMembres = Utils::getDonateurs($_SESSION['annee_recu']);
|
||||||
|
foreach ($versementsMembres as $versement) {
|
||||||
|
$membresDonateurs[$versement->idUser] = new Personne($versement->idUser,
|
||||||
|
$versement->nom,
|
||||||
|
$versement->adresse,
|
||||||
|
$versement->codePostal,
|
||||||
|
$versement->ville);
|
||||||
|
}
|
||||||
|
$_SESSION['membresDonateurs'] = $membresDonateurs;
|
||||||
|
|
||||||
|
// préparation de l'affichage
|
||||||
|
$tpl->assign('lesVersementsTotaux', $_SESSION['lesVersementsTotaux']);
|
||||||
|
$tpl->assign('lesDonateurs', $membresDonateurs);
|
||||||
|
$tpl->assign('plugin_css', ['style.css']);
|
||||||
|
|
||||||
|
// envoyer au template
|
||||||
|
$tpl->display(PLUGIN_ROOT . '/templates/versements_personnes.tpl');
|
Loading…
Reference in New Issue