Compare commits
21 Commits
Author | SHA1 | Date |
---|---|---|
engel | 4fd56bf12d | |
engel | e097e0c836 | |
engel | 3f3baa01d9 | |
engel | d8af7ce6e7 | |
engel | 86bc9c8ae1 | |
engel | 457ee5f958 | |
engel | 89ed848225 | |
engel | e8a3810e1d | |
engel | f6d0e34923 | |
engel | 37b05bfe6a | |
engel | 095df94e2f | |
engel | 200e4e873a | |
engel | c67b3118f5 | |
engel | 696aa39966 | |
engel | 263770b9c7 | |
engel | 8091c8b87d | |
engel | b53f089c87 | |
engel | 979b1f4164 | |
engel | fcac139b89 | |
engel | b2885f3c01 | |
engel | bc4739877c |
|
@ -4,7 +4,7 @@ Plugin de reçus fiscaux pour le logiciel de gestion d'association [Paheko](http
|
||||||
|
|
||||||
## Installation
|
## Installation
|
||||||
|
|
||||||
**Attention :** les archives disponibles sur ce dépôt n'ont pas un format compatible avec Paheko et ne peuvent donc être utilisées telles quelles ; il faut soit les transformer pour les rendre compatibles, soit télécharger [cette archive](https://acloud8.zaclys.com/index.php/s/qenoGtrkxHAatKC), et la copier dans le dossier plugins de Paheko.
|
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 les dons des membres
|
||||||
|
|
|
@ -1,8 +1,9 @@
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
namespace Garradin;
|
namespace Paheko;
|
||||||
|
session_start();
|
||||||
|
|
||||||
use Garradin\Plugin\RecusFiscaux\Utils;
|
use Paheko\Plugin\RecusFiscaux\Utils;
|
||||||
|
|
||||||
// ------------------------------------------------------------------------
|
// ------------------------------------------------------------------------
|
||||||
// opérations communes
|
// opérations communes
|
||||||
|
@ -64,7 +65,7 @@ $tpl->register_function('afficher_debut_tarif', function ($params)
|
||||||
{
|
{
|
||||||
$versement = $params['versement'];
|
$versement = $params['versement'];
|
||||||
$idTarif = $versement->idTarif;
|
$idTarif = $versement->idTarif;
|
||||||
|
|
||||||
$out = sprintf('
|
$out = sprintf('
|
||||||
<details class="activite" open="open">
|
<details class="activite" open="open">
|
||||||
<summary class="activite">
|
<summary class="activite">
|
|
@ -1,8 +1,9 @@
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
namespace Garradin;
|
namespace Paheko;
|
||||||
|
session_start();
|
||||||
|
|
||||||
use Garradin\Plugin\RecusFiscaux\Utils;
|
use Paheko\Plugin\RecusFiscaux\Utils;
|
||||||
|
|
||||||
// liste des années fiscales
|
// liste des années fiscales
|
||||||
$anneeCourante = date("Y");
|
$anneeCourante = date("Y");
|
||||||
|
@ -11,14 +12,13 @@ if ($anneesFiscales[0] < $anneeCourante) {
|
||||||
array_unshift($anneesFiscales, $anneeCourante);
|
array_unshift($anneesFiscales, $anneeCourante);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (f('change'))
|
$csrf_key = 'acc_select_year';
|
||||||
{
|
$form->runIf('change', function () {
|
||||||
$_SESSION['annee_recu'] = f('annee_recu');
|
$_SESSION['annee_recu'] = f('annee_recu');
|
||||||
\Garradin\Utils::redirect(f('from') ?: PLUGIN_URL);
|
}, $csrf_key, PLUGIN_ROOT . '/admin/index.php');
|
||||||
}
|
|
||||||
|
$tpl->assign(compact('anneesFiscales', 'csrf_key'));
|
||||||
|
|
||||||
$tpl->assign('anneesFiscales', $anneesFiscales);
|
|
||||||
$tpl->assign('annee_recu', $_SESSION['annee_recu']);
|
$tpl->assign('annee_recu', $_SESSION['annee_recu']);
|
||||||
$tpl->assign('from', qg('from'));
|
|
||||||
|
|
||||||
$tpl->display(PLUGIN_ROOT . '/templates/choix_annee.tpl');
|
$tpl->display(PLUGIN_ROOT . '/templates/choix_annee.tpl');
|
|
@ -0,0 +1,123 @@
|
||||||
|
<?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,13 +1,14 @@
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
namespace Garradin;
|
namespace Paheko;
|
||||||
|
session_start();
|
||||||
|
|
||||||
use Garradin\Files\Files;
|
use Paheko\Files\Files;
|
||||||
use Garradin\Entities\Files\File;
|
use Paheko\Entities\Files\File;
|
||||||
use Garradin\UserTemplate\UserTemplate;
|
use Paheko\UserTemplate\UserTemplate;
|
||||||
|
|
||||||
use Garradin\Plugin\RecusFiscaux\Utils;
|
use Paheko\Plugin\RecusFiscaux\Utils;
|
||||||
use Garradin\Plugin\RecusFiscaux\Personne;
|
use Paheko\Plugin\RecusFiscaux\Personne;
|
||||||
|
|
||||||
// forcer mode dialog pour ouvrir le squelette des reçus dans un nouvel onglet
|
// 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
|
// à combiner avec target="_blank" ou target="_dialog" dans le fichier tpl
|
||||||
|
@ -15,10 +16,14 @@ $_GET['_dialog'] = true;
|
||||||
|
|
||||||
// signature
|
// signature
|
||||||
$signature =
|
$signature =
|
||||||
(null !== $plugin->getConfig('signature')) ?
|
(null !== $config->fileURL('signature')) ?
|
||||||
\KD2\HTTP::getScheme() . '://' . \KD2\HTTP::getHost() . WWW_URI . "/" . $plugin->getConfig('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
|
// logo
|
||||||
$config = Config::getInstance();
|
$config = Config::getInstance();
|
||||||
$logo_asso =
|
$logo_asso =
|
||||||
|
@ -101,13 +106,17 @@ function genererRecusPDF($totalPersonnes,
|
||||||
$libelles_taux
|
$libelles_taux
|
||||||
)
|
)
|
||||||
{
|
{
|
||||||
|
// <TEST>
|
||||||
|
$fichierHTML = sprintf('%s/print-%s.html', CACHE_ROOT, md5(random_bytes(16)));
|
||||||
|
// </TEST>
|
||||||
$listeFichiersPDF = array();
|
$listeFichiersPDF = array();
|
||||||
$fmt = new \NumberFormatter('fr_FR', \NumberFormatter::SPELLOUT);
|
$fmt = new \NumberFormatter('fr_FR', \NumberFormatter::SPELLOUT);
|
||||||
$prefixeNum = getNumPrefixe($configNum);
|
$prefixeNum = getNumPrefixe($configNum);
|
||||||
$numero_sequentiel = getNumSequentiel($configNum);
|
$numero_sequentiel = getNumSequentiel($configNum);
|
||||||
foreach ($totalPersonnes as $idPersonne => $personne) {
|
foreach ($totalPersonnes as $idPersonne => $personne) {
|
||||||
$tpl = new UserTemplate();
|
$tpl = new UserTemplate(null);
|
||||||
$tpl->setSource(PLUGIN_ROOT . '/templates/recu.skel');
|
/* $tpl->setSource(PLUGIN_ROOT . '/templates/recu.skel'); */
|
||||||
|
$tpl->setSourcePath(PLUGIN_ROOT . '/templates/recu.skel');
|
||||||
|
|
||||||
$tpl->assignArray(compact('signature', 'logo_asso', 'texteArticles'));
|
$tpl->assignArray(compact('signature', 'logo_asso', 'texteArticles'));
|
||||||
$tpl->assign('objet_asso', $plugin->getConfig('objet_asso'));
|
$tpl->assign('objet_asso', $plugin->getConfig('objet_asso'));
|
||||||
|
@ -121,7 +130,7 @@ function genererRecusPDF($totalPersonnes,
|
||||||
$tpl->assign('date', date("j/m/Y"));
|
$tpl->assign('date', date("j/m/Y"));
|
||||||
|
|
||||||
// numéro de reçu
|
// numéro de reçu
|
||||||
$tpl->assign('numero',
|
$tpl->assign('numero',
|
||||||
faireNumeroRecu($prefixeNum,
|
faireNumeroRecu($prefixeNum,
|
||||||
$configNum->membre,
|
$configNum->membre,
|
||||||
$personne->numero,
|
$personne->numero,
|
||||||
|
@ -166,11 +175,33 @@ function genererRecusPDF($totalPersonnes,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
);
|
);
|
||||||
|
|
||||||
|
// <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
|
// fabriquer le fichier PDF
|
||||||
genererPDF($tpl->fetch(), $personne->nomPrenom, $listeFichiersPDF);
|
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
|
// faire une archive zip
|
||||||
$fichierZip = Utils::makeArchive(
|
$fichierZip = Utils::makeArchive(
|
||||||
$listeFichiersPDF,
|
$listeFichiersPDF,
|
||||||
|
@ -178,10 +209,10 @@ function genererRecusPDF($totalPersonnes,
|
||||||
PLUGIN_ROOT . "/zip"
|
PLUGIN_ROOT . "/zip"
|
||||||
);
|
);
|
||||||
|
|
||||||
//supprimer les fichiers pdf (utile ?)
|
//supprimer les fichiers pdf
|
||||||
foreach ($listeFichiersPDF as $f) {
|
// foreach ($listeFichiersPDF as $f) {
|
||||||
// Utils::safe_unlink($f);
|
// \Paheko\Utils::safe_unlink($f);
|
||||||
}
|
// }
|
||||||
} // genererRecusPDF
|
} // genererRecusPDF
|
||||||
|
|
||||||
function generererRecusHTML($tpl,
|
function generererRecusHTML($tpl,
|
||||||
|
@ -221,8 +252,8 @@ function generererRecusHTML($tpl,
|
||||||
$tpl->assign('prefixeNum', getNumPrefixe($configNum));
|
$tpl->assign('prefixeNum', getNumPrefixe($configNum));
|
||||||
$tpl->assign('membre', $configNum->membre);
|
$tpl->assign('membre', $configNum->membre);
|
||||||
$tpl->assign('numero_sequentiel', getNumSequentiel($configNum));
|
$tpl->assign('numero_sequentiel', getNumSequentiel($configNum));
|
||||||
$tpl->assign('nom_asso', Config::getInstance()->get('nom_asso'));
|
$tpl->assign('org_name', Config::getInstance()->get('org_name'));
|
||||||
$tpl->assign('adresse_asso', Config::getInstance()->get('adresse_asso'));
|
$tpl->assign('org_address', Config::getInstance()->get('org_address'));
|
||||||
$tpl->assign('objet_asso', $plugin->getConfig('objet_asso'));
|
$tpl->assign('objet_asso', $plugin->getConfig('objet_asso'));
|
||||||
$tpl->assign('courriel', $plugin->getConfig('imprimerCourriel'));
|
$tpl->assign('courriel', $plugin->getConfig('imprimerCourriel'));
|
||||||
$tpl->assign('complements', mentionsComplémentaires());
|
$tpl->assign('complements', mentionsComplémentaires());
|
||||||
|
@ -360,7 +391,7 @@ function cumulerVersementsTarif($versements)
|
||||||
function genererPDF($docHTML, $nomPersonne, &$listeFichiersPDF)
|
function genererPDF($docHTML, $nomPersonne, &$listeFichiersPDF)
|
||||||
{
|
{
|
||||||
// fabriquer le fichier PDF
|
// fabriquer le fichier PDF
|
||||||
$nomPDF = \Garradin\Utils::filePDF($docHTML);
|
$nomPDF = \Paheko\Utils::filePDF($docHTML);
|
||||||
// changer le nom du fichier
|
// changer le nom du fichier
|
||||||
$nom = str_replace(' ', '_', $nomPersonne);
|
$nom = str_replace(' ', '_', $nomPersonne);
|
||||||
$nom = str_replace("'", "", $nom);
|
$nom = str_replace("'", "", $nom);
|
|
@ -1,8 +1,9 @@
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
namespace Garradin;
|
namespace Paheko;
|
||||||
|
session_start();
|
||||||
|
|
||||||
use Garradin\Plugin\RecusFiscaux\Utils;
|
use Paheko\Plugin\RecusFiscaux\Utils;
|
||||||
|
|
||||||
// mettre à jour le plugin si besoin
|
// mettre à jour le plugin si besoin
|
||||||
if ($plugin->needUpgrade()) {
|
if ($plugin->needUpgrade()) {
|
||||||
|
@ -68,7 +69,7 @@ $tpl->assign('plugin_config', $plugin->getConfig());
|
||||||
$tpl->assign('nbTaux', $nbTaux);
|
$tpl->assign('nbTaux', $nbTaux);
|
||||||
$tpl->assign('nbChamps', $nbChamps);
|
$tpl->assign('nbChamps', $nbChamps);
|
||||||
$tpl->assign('plugin_css', ['style.css']);
|
$tpl->assign('plugin_css', ['style.css']);
|
||||||
$tpl->assign('plugin_url', \Garradin\Utils::plugin_url());
|
$tpl->assign('plugin_url', \Paheko\Utils::plugin_url());
|
||||||
|
|
||||||
// envoyer au template
|
// envoyer au template
|
||||||
$tpl->display(PLUGIN_ROOT . '/templates/index.tpl');
|
$tpl->display(PLUGIN_ROOT . '/templates/index.tpl');
|
|
@ -95,3 +95,9 @@ span.titre, span.libelle
|
||||||
{
|
{
|
||||||
display : inline;
|
display : inline;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* Ne pas imprimer le bandeau des boutons du profiler */
|
||||||
|
#__profiler
|
||||||
|
{
|
||||||
|
display: none;
|
||||||
|
}
|
|
@ -109,6 +109,11 @@ div.actions
|
||||||
display : inline;
|
display : inline;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
a.icn-btn {
|
||||||
|
font-family: "paheko", sans-serif;
|
||||||
|
font-size : 1.2em;
|
||||||
|
}
|
||||||
|
|
||||||
dl.config
|
dl.config
|
||||||
{
|
{
|
||||||
padding-bottom : 1ex;
|
padding-bottom : 1ex;
|
|
@ -1,20 +1,23 @@
|
||||||
<?php
|
<?php
|
||||||
namespace Garradin;
|
namespace Paheko;
|
||||||
|
session_start();
|
||||||
|
|
||||||
use Garradin\Entities\Files\File;
|
use Paheko\Entities\Files\File;
|
||||||
use Garradin\Files\Files;
|
use Paheko\Files\Files;
|
||||||
|
|
||||||
$parent = qg('p');
|
$parent = qg('p');
|
||||||
|
/*
|
||||||
if (!File::checkCreateAccess($parent, $session)) {
|
if (!File::checkCreateAccess($parent, $session)) {
|
||||||
throw new UserException('Vous n\'avez pas le droit d\'ajouter de fichier.');
|
throw new UserException('Vous n\'avez pas le droit d\'ajouter de fichier.');
|
||||||
}
|
}
|
||||||
|
// checkCreateAccess n'existe plus...
|
||||||
|
*/
|
||||||
|
|
||||||
$csrf_key = 'upload_file_' . md5($parent);
|
$csrf_key = 'upload_file_' . md5($parent);
|
||||||
|
|
||||||
$form->runIf('upload', function () use ($parent) {
|
$form->runIf('upload', function () use ($parent) {
|
||||||
$_SESSION['sig_file'] = File::uploadMultiple($parent, 'file');
|
$_SESSION['sig_file'] = \Paheko\Files\Files::uploadMultiple($parent, 'file');
|
||||||
}, $csrf_key, PLUGIN_ROOT . '/www/admin/config.php');
|
}, $csrf_key, PLUGIN_ROOT . '/admin/config.php');
|
||||||
|
|
||||||
$tpl->assign(compact('parent', 'csrf_key'));
|
$tpl->assign(compact('parent', 'csrf_key'));
|
||||||
|
|
|
@ -1,9 +1,9 @@
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
namespace Garradin;
|
namespace Paheko;
|
||||||
|
|
||||||
use Garradin\Plugin\RecusFiscaux\Personne;
|
use Paheko\Plugin\RecusFiscaux\Personne;
|
||||||
use Garradin\Plugin\RecusFiscaux\Utils;
|
use Paheko\Plugin\RecusFiscaux\Utils;
|
||||||
|
|
||||||
// ------------------------------------------------------------
|
// ------------------------------------------------------------
|
||||||
// récupérer les infos du formulaire
|
// récupérer les infos du formulaire
|
||||||
|
@ -16,7 +16,7 @@ if (! isset($_SESSION['tauxSelectionnes'])
|
||||||
&&
|
&&
|
||||||
null === f('comptes'))
|
null === f('comptes'))
|
||||||
{
|
{
|
||||||
\Garradin\Utils::redirect(PLUGIN_URL . 'index.php');
|
\Paheko\Utils::redirect(\Paheko\Utils::plugin_url() . 'index.php');
|
||||||
}
|
}
|
||||||
|
|
||||||
// tarifs sélectionnés
|
// tarifs sélectionnés
|
||||||
|
@ -25,10 +25,11 @@ if (null !== f('tarifs')) {
|
||||||
} else if (! isset($_SESSION['tauxSelectionnes'])) {
|
} else if (! isset($_SESSION['tauxSelectionnes'])) {
|
||||||
$tarifsSelectionnes = [];
|
$tarifsSelectionnes = [];
|
||||||
}
|
}
|
||||||
|
// error_log("\ntarifsSelectionnes=" . print_r($tarifsSelectionnes, true));
|
||||||
// comptes sélectionnés
|
// comptes sélectionnés
|
||||||
if (null !== f('comptes')) {
|
if (null !== f('comptes')) {
|
||||||
$_SESSION['comptesSelectionnes'] = f('comptes');
|
$_SESSION['comptesSelectionnes'] = f('comptes');
|
||||||
|
// error_log("\ncomptesSelectionnes=" . print_r($_SESSION['comptesSelectionnes'], true));
|
||||||
} /*
|
} /*
|
||||||
else if (! isset($_SESSION['tauxSelectionnes'])) {
|
else if (! isset($_SESSION['tauxSelectionnes'])) {
|
||||||
$_SESSION['comptesSelectionnes'] = [];
|
$_SESSION['comptesSelectionnes'] = [];
|
||||||
|
@ -71,6 +72,7 @@ if (count($lesTarifs) != 0)
|
||||||
$lesTarifs,
|
$lesTarifs,
|
||||||
$lesComptes,
|
$lesComptes,
|
||||||
$champsNom);
|
$champsNom);
|
||||||
|
// error_log("lesVersements=" . print_r($_SESSION['lesVersements'], true));
|
||||||
}
|
}
|
||||||
|
|
||||||
// ajouter les versements sans tarif (tri par nom, compte, date)
|
// ajouter les versements sans tarif (tri par nom, compte, date)
|
||||||
|
@ -84,6 +86,8 @@ if (isset($_SESSION['comptesSelectionnes']))
|
||||||
$_SESSION['lesVersements'][] = $versement;
|
$_SESSION['lesVersements'][] = $versement;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
//error_log("lesVersements=" . print_r($_SESSION['lesVersements'], true));
|
||||||
|
|
||||||
// préparation de l'affichage
|
// préparation de l'affichage
|
||||||
$tpl->assign('lesVersements', $_SESSION['lesVersements']);
|
$tpl->assign('lesVersements', $_SESSION['lesVersements']);
|
||||||
$tpl->assign('annee_recu', $_SESSION['annee_recu']);
|
$tpl->assign('annee_recu', $_SESSION['annee_recu']);
|
|
@ -1,9 +1,9 @@
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
namespace Garradin;
|
namespace Paheko;
|
||||||
|
|
||||||
use Garradin\Plugin\RecusFiscaux\Personne;
|
use Paheko\Plugin\RecusFiscaux\Personne;
|
||||||
use Garradin\Plugin\RecusFiscaux\Utils;
|
use Paheko\Plugin\RecusFiscaux\Utils;
|
||||||
|
|
||||||
// vérifier si le taux de réduction a été sélectionné au préalable
|
// vérifier si le taux de réduction a été sélectionné au préalable
|
||||||
$taux = f('taux_reduction');
|
$taux = f('taux_reduction');
|
||||||
|
@ -11,7 +11,7 @@ if (! isset($_SESSION['taux_reduction'])
|
||||||
&&
|
&&
|
||||||
null === $taux)
|
null === $taux)
|
||||||
{
|
{
|
||||||
\Garradin\Utils::redirect(PLUGIN_URL . 'index.php');
|
\Paheko\Utils::redirect(\Paheko\Utils::plugin_url() . 'index.php');
|
||||||
}
|
}
|
||||||
if (null !== $taux) {
|
if (null !== $taux) {
|
||||||
$_SESSION['taux_reduction'] = $taux;
|
$_SESSION['taux_reduction'] = $taux;
|
|
@ -1,8 +0,0 @@
|
||||||
nom="Reçus fiscaux"
|
|
||||||
description="Génération de reçus fiscaux pour les dons des membres"
|
|
||||||
auteur="jce"
|
|
||||||
url="https://acloud8.zaclys.com/index.php/s/qenoGtrkxHAatKC"
|
|
||||||
version="0.9"
|
|
||||||
menu=1
|
|
||||||
config=1
|
|
||||||
min_version="1.1.23"
|
|
27
install.php
27
install.php
|
@ -1,10 +1,23 @@
|
||||||
<?php
|
<?php
|
||||||
namespace Garradin;
|
namespace Paheko;
|
||||||
use Garradin\Entities\Files\File;
|
|
||||||
|
use Paheko\Files\Files;
|
||||||
|
|
||||||
|
$nom_plugin = $plugin->get('name');
|
||||||
|
const SIGNATURE_DEFAUT = 'default_signature.png';
|
||||||
|
const CONFIG_INIT = 'config.json';
|
||||||
|
|
||||||
|
// configuration initiale
|
||||||
|
$config_init = json_decode(file_get_contents(Plugins::getPath($nom_plugin) . '/' . CONFIG_INIT),
|
||||||
|
true);
|
||||||
|
|
||||||
|
// enregistrer dans la config du plugin
|
||||||
|
foreach ($config_init as $cle => $valeur) {
|
||||||
|
$plugin->setConfigProperty($cle, $valeur);
|
||||||
|
}
|
||||||
|
$plugin->save();
|
||||||
|
|
||||||
// « signature » par défaut à remplacer (voir l'onglet de configuration)
|
// « signature » par défaut à remplacer (voir l'onglet de configuration)
|
||||||
$path = __DIR__ . '/data/default_signature.png';
|
$path = __DIR__ . '/data/' . SIGNATURE_DEFAUT;
|
||||||
$default_signature_file = (new File)->createAndStore('skel/plugin/recusfiscaux',
|
$default_signature_file = Files::createFromPath('ext/' . $nom_plugin . '/' . SIGNATURE_DEFAUT,
|
||||||
'default_signature.png',
|
$path);
|
||||||
$path,
|
|
||||||
null);
|
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
namespace Garradin\Plugin\RecusFiscaux;
|
namespace Paheko\Plugin\RecusFiscaux;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* rassembler les infos d'une personne
|
* rassembler les infos d'une personne
|
||||||
|
|
927
lib/Utils.php
927
lib/Utils.php
|
@ -1,486 +1,491 @@
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
namespace Garradin\Plugin\RecusFiscaux;
|
namespace Paheko\Plugin\RecusFiscaux;
|
||||||
|
|
||||||
use Garradin\DB;
|
use Paheko\DB;
|
||||||
|
use Paheko\Users\DynamicFields;
|
||||||
use KD2\ZipWriter;
|
use KD2\ZipWriter;
|
||||||
|
|
||||||
class Utils
|
class Utils
|
||||||
{
|
{
|
||||||
/**
|
/**
|
||||||
* @return informations sur les tarifs
|
* @return informations sur les tarifs
|
||||||
*/
|
*/
|
||||||
public static function getTarifs()
|
public static function getTarifs()
|
||||||
{
|
{
|
||||||
$db = DB::getInstance();
|
$db = DB::getInstance();
|
||||||
$sql = sprintf(
|
$sql = sprintf(
|
||||||
'SELECT
|
'SELECT
|
||||||
id,
|
id,
|
||||||
id_service as idActivite,
|
id_service as idActivite,
|
||||||
label,
|
label,
|
||||||
description,
|
description,
|
||||||
amount as montant
|
amount as montant
|
||||||
FROM services_fees');
|
FROM services_fees');
|
||||||
return Utils::toAssoc($db->get($sql), 'id');
|
return Utils::toAssoc($db->get($sql), 'id');
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @return informations sur les activités
|
* @return informations sur les activités
|
||||||
*/
|
*/
|
||||||
public static function getActivites()
|
public static function getActivites()
|
||||||
{
|
{
|
||||||
$db = DB::getInstance();
|
$db = DB::getInstance();
|
||||||
$sql = sprintf(
|
$sql = sprintf(
|
||||||
'SELECT
|
'SELECT
|
||||||
services.id,
|
services.id,
|
||||||
services.label,
|
services.label,
|
||||||
services.description
|
services.description
|
||||||
FROM services');
|
FROM services');
|
||||||
return Utils::toAssoc($db->get($sql), 'id');
|
return Utils::toAssoc($db->get($sql), 'id');
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @return comptes sur lesquels des versements de membres ont été faits
|
* @return comptes sur lesquels des versements de membres ont été faits
|
||||||
* @param string $annee
|
* @param string $annee
|
||||||
* @param $op : opérateur de combinaison des comptes
|
* @param $op : opérateur de combinaison des comptes
|
||||||
* @param array $comptes
|
* @param array $comptes
|
||||||
*/
|
*/
|
||||||
public static function getComptes($annee, $op, $comptes)
|
public static function getComptes($annee, $op, $comptes)
|
||||||
{
|
{
|
||||||
$db = DB::getInstance();
|
$db = DB::getInstance();
|
||||||
$sql = sprintf(
|
$sql = sprintf(
|
||||||
'SELECT
|
'SELECT
|
||||||
acc_accounts.id,
|
acc_accounts.id,
|
||||||
acc_accounts.code as codeCompte,
|
acc_years.label,
|
||||||
acc_accounts.label as nomCompte
|
acc_accounts.code as codeCompte,
|
||||||
FROM acc_transactions_users
|
acc_accounts.label as nomCompte
|
||||||
INNER JOIN membres
|
FROM acc_transactions_users
|
||||||
ON acc_transactions_users.id_user = membres.id
|
INNER JOIN users
|
||||||
INNER JOIN acc_transactions
|
ON acc_transactions_users.id_user = users.id
|
||||||
ON acc_transactions_users.id_transaction = acc_transactions.id
|
INNER JOIN acc_transactions
|
||||||
INNER JOIN acc_transactions_lines
|
ON acc_transactions_users.id_transaction = acc_transactions.id
|
||||||
ON acc_transactions_lines.id_transaction = acc_transactions.id
|
INNER JOIN acc_transactions_lines
|
||||||
INNER JOIN acc_accounts
|
ON acc_transactions_lines.id_transaction = acc_transactions.id
|
||||||
ON acc_transactions_lines.id_account = acc_accounts.id
|
INNER JOIN acc_accounts
|
||||||
WHERE
|
ON acc_transactions_lines.id_account = acc_accounts.id
|
||||||
(strftime("%%Y", acc_transactions.date) = "%d"
|
INNER JOIN acc_years
|
||||||
AND
|
ON acc_transactions.id_year = acc_years.id
|
||||||
acc_accounts.%s
|
WHERE
|
||||||
)
|
(strftime("%%Y", acc_transactions.date) = "%d"
|
||||||
GROUP by acc_accounts.code
|
AND
|
||||||
ORDER by acc_accounts.code',
|
acc_accounts.%s
|
||||||
$annee,
|
)
|
||||||
$db->where('code', $op, $comptes)
|
GROUP by acc_accounts.id
|
||||||
);
|
ORDER by acc_accounts.code',
|
||||||
return Utils::toAssoc($db->get($sql), 'id');
|
$annee,
|
||||||
}
|
$db->where('code', $op, $comptes)
|
||||||
|
);
|
||||||
|
return Utils::toAssoc($db->get($sql), 'id');
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @return tarifs des activités et comptes ayant des versements de
|
* @return tarifs des activités et comptes ayant des versements de
|
||||||
* membres dans l'année
|
* membres dans l'année
|
||||||
* @param string $annee
|
* @param string $annee
|
||||||
* @param $op : opérateur de combinaison des comptes
|
* @param $op : opérateur de combinaison des comptes
|
||||||
* @param array $comptes
|
* @param array $comptes
|
||||||
*/
|
*/
|
||||||
public static function getTarifsComptes($annee, $op, $comptes)
|
public static function getTarifsComptes($annee, $op, $comptes)
|
||||||
{
|
{
|
||||||
$db = DB::getInstance();
|
$db = DB::getInstance();
|
||||||
$sql = sprintf(
|
$sql = sprintf(
|
||||||
'
|
'
|
||||||
SELECT
|
SELECT
|
||||||
services_users.id_fee as idTarif,
|
services_users.id_fee as idTarif,
|
||||||
acc_accounts.id as idCompte,
|
acc_accounts.id as idCompte,
|
||||||
acc_accounts.code as codeCompte
|
acc_accounts.code as codeCompte
|
||||||
FROM acc_transactions_users
|
FROM acc_transactions_users
|
||||||
INNER JOIN acc_transactions
|
INNER JOIN acc_transactions
|
||||||
ON acc_transactions_users.id_transaction = acc_transactions.id
|
ON acc_transactions_users.id_transaction = acc_transactions.id
|
||||||
INNER JOIN services_users
|
INNER JOIN services_users
|
||||||
ON acc_transactions_users.id_service_user = services_users.id
|
ON acc_transactions_users.id_service_user = services_users.id
|
||||||
INNER JOIN services_fees
|
INNER JOIN services_fees
|
||||||
ON services_users.id_fee = services_fees.id
|
ON services_users.id_fee = services_fees.id
|
||||||
INNER JOIN acc_transactions_lines
|
INNER JOIN acc_transactions_lines
|
||||||
ON acc_transactions_lines.id_transaction = acc_transactions.id
|
ON acc_transactions_lines.id_transaction = acc_transactions.id
|
||||||
INNER JOIN acc_accounts
|
INNER JOIN acc_accounts
|
||||||
ON acc_transactions_lines.id_account = acc_accounts.id
|
ON acc_transactions_lines.id_account = acc_accounts.id
|
||||||
WHERE
|
WHERE
|
||||||
(strftime("%%Y", acc_transactions.date) = "%d"
|
(strftime("%%Y", acc_transactions.date) = "%d"
|
||||||
AND
|
AND
|
||||||
acc_accounts.%s
|
acc_accounts.%s
|
||||||
)
|
)
|
||||||
GROUP BY services_fees.id, acc_accounts.code
|
GROUP BY services_fees.id, acc_accounts.code
|
||||||
ORDER BY acc_accounts.code
|
ORDER BY acc_accounts.code
|
||||||
',
|
',
|
||||||
$annee,
|
$annee,
|
||||||
$db->where('code', $op, $comptes)
|
$db->where('code', $op, $comptes)
|
||||||
);
|
);
|
||||||
return $db->get($sql);
|
return $db->get($sql);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* faire un tableau associatif avec le résultat d'une requête
|
* faire un tableau associatif avec le résultat d'une requête
|
||||||
*/
|
*/
|
||||||
static function toAssoc($array, $nomCle)
|
static function toAssoc($array, $nomCle)
|
||||||
{
|
{
|
||||||
$assoc = array();
|
$assoc = array();
|
||||||
foreach ($array as $elem)
|
foreach ($array as $elem)
|
||||||
{
|
{
|
||||||
$ro = new \ReflectionObject($elem);
|
$ro = new \ReflectionObject($elem);
|
||||||
$proprietes = $ro->getProperties();
|
$proprietes = $ro->getProperties();
|
||||||
$obj = new \stdClass();
|
$obj = new \stdClass();
|
||||||
foreach ($proprietes as $p)
|
foreach ($proprietes as $p)
|
||||||
{
|
{
|
||||||
$pname = $p->getName();
|
$pname = $p->getName();
|
||||||
if ($pname == $nomCle) {
|
if ($pname == $nomCle) {
|
||||||
$key = $p->getValue($elem);
|
$key = $p->getValue($elem);
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
$obj->$pname = $p->getValue($elem);
|
$obj->$pname = $p->getValue($elem);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
$assoc[$key] = $obj;
|
$assoc[$key] = $obj;
|
||||||
}
|
}
|
||||||
return $assoc;
|
return $assoc;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @return versements correspondants à l'année donnée
|
* @return versements correspondants à l'année donnée
|
||||||
* @param $annee
|
* @param $annee
|
||||||
* @param array $champsNom : liste non vide des champs de nom/prénom
|
* @param array $champsNom : liste non vide des champs de nom/prénom
|
||||||
*/
|
*/
|
||||||
public static function getVersementsPersonnes($annee, $op, $comptes, $champsNom)
|
public static function getVersementsPersonnes($annee, $op, $comptes, $champsNom)
|
||||||
{
|
{
|
||||||
$db = DB::getInstance();
|
$db = DB::getInstance();
|
||||||
$tri = Utils::combinerTri($champsNom);
|
$tri = Utils::combinerTri($champsNom);
|
||||||
$sql = sprintf(
|
$sql = sprintf(
|
||||||
'SELECT
|
'SELECT
|
||||||
membres.id as idUser,
|
users.id as idUser,
|
||||||
acc_accounts.id as idCompte,
|
acc_accounts.id as idCompte,
|
||||||
acc_accounts.code as codeCompte,
|
acc_accounts.code as codeCompte,
|
||||||
acc_transactions_lines.credit as versement,
|
acc_transactions_lines.credit as versement,
|
||||||
acc_transactions.date
|
acc_transactions.date
|
||||||
FROM acc_transactions_users
|
FROM acc_transactions_users
|
||||||
INNER JOIN membres
|
INNER JOIN users
|
||||||
ON acc_transactions_users.id_user = membres.id
|
ON acc_transactions_users.id_user = users.id
|
||||||
INNER JOIN acc_transactions
|
INNER JOIN acc_transactions
|
||||||
ON acc_transactions_users.id_transaction = acc_transactions.id
|
ON acc_transactions_users.id_transaction = acc_transactions.id
|
||||||
INNER JOIN acc_transactions_lines
|
INNER JOIN acc_transactions_lines
|
||||||
ON acc_transactions_lines.id_transaction = acc_transactions.id
|
ON acc_transactions_lines.id_transaction = acc_transactions.id
|
||||||
INNER JOIN acc_accounts
|
INNER JOIN acc_accounts
|
||||||
ON acc_transactions_lines.id_account = acc_accounts.id
|
ON acc_transactions_lines.id_account = acc_accounts.id
|
||||||
WHERE
|
WHERE
|
||||||
(strftime("%%Y", acc_transactions.date) = "%d"
|
(strftime("%%Y", acc_transactions.date) = "%d"
|
||||||
AND
|
AND
|
||||||
acc_accounts.%s
|
acc_accounts.%s
|
||||||
)
|
)
|
||||||
GROUP BY acc_transactions.id, acc_accounts.id
|
GROUP BY acc_transactions.id, acc_accounts.id
|
||||||
ORDER by %s, acc_accounts.code, acc_transactions.date',
|
ORDER by %s, acc_accounts.code, acc_transactions.date',
|
||||||
$annee,
|
$annee,
|
||||||
$db->where('code', $op, $comptes),
|
$db->where('code', $op, $comptes),
|
||||||
$tri
|
$tri
|
||||||
);
|
);
|
||||||
return $db->get($sql);
|
return $db->get($sql);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @return versements correspondants à :
|
* @return versements correspondants à :
|
||||||
* @param $annee : année fiscale
|
* @param $annee : année fiscale
|
||||||
* @param array $tarifs : tarifs sélectionnés
|
* @param array $tarifs : tarifs sélectionnés
|
||||||
* @param array $comptes : comptes associés aux tarifs
|
* @param array $comptes : comptes associés aux tarifs
|
||||||
* @param array $champsNom : liste non vide des champs de nom/prénom
|
* @param array $champsNom : liste non vide des champs de nom/prénom
|
||||||
* @remarks tri par tarif, nom, compte, date
|
* @remarks tri par tarif, nom, compte, date
|
||||||
*/
|
*/
|
||||||
public static function getVersementsTarifsComptes($annee,
|
public static function getVersementsTarifsComptes($annee,
|
||||||
$tarifs,
|
$tarifs,
|
||||||
$comptes,
|
$comptes,
|
||||||
$champsNom)
|
$champsNom)
|
||||||
{
|
{
|
||||||
$db = DB::getInstance();
|
$db = DB::getInstance();
|
||||||
$tri = Utils::combinerTri($champsNom);
|
$tri = Utils::combinerTri($champsNom);
|
||||||
$condition = Utils::combinerTarifsComptes($tarifs, $comptes);
|
$condition = Utils::combinerTarifsComptes($tarifs, $comptes);
|
||||||
$sql = sprintf(
|
$sql = sprintf(
|
||||||
'SELECT
|
'SELECT
|
||||||
services_fees.id as idTarif,
|
services_fees.id as idTarif,
|
||||||
acc_accounts.id as idCompte,
|
acc_accounts.id as idCompte,
|
||||||
acc_accounts.code as codeCompte,
|
acc_accounts.code as codeCompte,
|
||||||
membres.id as idUser,
|
users.id as idUser,
|
||||||
acc_transactions_lines.credit as versement,
|
acc_transactions_lines.credit as versement,
|
||||||
acc_transactions.date
|
acc_transactions.date
|
||||||
FROM acc_transactions_users
|
FROM acc_transactions_users
|
||||||
INNER JOIN membres
|
INNER JOIN users
|
||||||
ON acc_transactions_users.id_user = membres.id
|
ON acc_transactions_users.id_user = users.id
|
||||||
INNER JOIN acc_transactions
|
INNER JOIN acc_transactions
|
||||||
ON acc_transactions_users.id_transaction = acc_transactions.id
|
ON acc_transactions_users.id_transaction = acc_transactions.id
|
||||||
INNER JOIN services_users
|
INNER JOIN services_users
|
||||||
ON acc_transactions_users.id_service_user = services_users.id
|
ON acc_transactions_users.id_service_user = services_users.id
|
||||||
INNER JOIN services_fees
|
INNER JOIN services_fees
|
||||||
ON services_users.id_fee = services_fees.id
|
ON services_users.id_fee = services_fees.id
|
||||||
INNER JOIN acc_transactions_lines
|
INNER JOIN acc_transactions_lines
|
||||||
ON acc_transactions_lines.id_transaction = acc_transactions.id
|
ON acc_transactions_lines.id_transaction = acc_transactions.id
|
||||||
INNER JOIN acc_accounts
|
INNER JOIN acc_accounts
|
||||||
ON acc_transactions_lines.id_account = acc_accounts.id
|
ON acc_transactions_lines.id_account = acc_accounts.id
|
||||||
WHERE
|
WHERE
|
||||||
(strftime("%%Y", acc_transactions.date) = "%d"
|
(strftime("%%Y", acc_transactions.date) = "%d"
|
||||||
AND
|
AND
|
||||||
%s
|
%s
|
||||||
)
|
)
|
||||||
GROUP BY acc_transactions.id, acc_accounts.id
|
GROUP BY acc_transactions.id, acc_accounts.id
|
||||||
ORDER by %s, acc_accounts.code, acc_transactions.date',
|
ORDER by %s, acc_accounts.code, acc_transactions.date',
|
||||||
$annee,
|
$annee,
|
||||||
$condition,
|
$condition,
|
||||||
$tri
|
$tri
|
||||||
);
|
);
|
||||||
return $db->get($sql);
|
// error_log("\ngetVersementsTarifsComptes : sql=" . $sql);
|
||||||
}
|
return $db->get($sql);
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @return versements correspondants à :
|
* @return versements correspondants à :
|
||||||
* @param $annee année fiscale
|
* @param $annee année fiscale
|
||||||
* @param $comptesIsoles comptes NON associés à un tarif
|
* @param $comptesIsoles comptes NON associés à un tarif
|
||||||
* @param array $champsNom : liste non vide des champs de nom/prénom
|
* @param array $champsNom : liste non vide des champs de nom/prénom
|
||||||
* @remarks tri par nom, compte, date
|
* @remarks tri par nom, compte, date
|
||||||
*/
|
*/
|
||||||
public static function getVersementsComptes($annee,
|
public static function getVersementsComptes($annee,
|
||||||
$comptesIsoles,
|
$comptesIsoles,
|
||||||
$champsNom)
|
$champsNom)
|
||||||
{
|
{
|
||||||
$db = DB::getInstance();
|
$db = DB::getInstance();
|
||||||
$tri = Utils::combinerTri($champsNom);
|
$tri = Utils::combinerTri($champsNom);
|
||||||
$sql = sprintf(
|
$sql = sprintf(
|
||||||
'
|
'
|
||||||
SELECT
|
SELECT
|
||||||
0 as idTarif,
|
0 as idTarif,
|
||||||
acc_accounts.id as idCompte,
|
acc_accounts.id as idCompte,
|
||||||
acc_accounts.code as codeCompte,
|
acc_accounts.code as codeCompte,
|
||||||
membres.id as idUser,
|
users.id as idUser,
|
||||||
acc_transactions_lines.credit as versement,
|
acc_transactions_lines.credit as versement,
|
||||||
acc_transactions.date
|
acc_transactions.date
|
||||||
FROM acc_transactions_users
|
FROM acc_transactions_users
|
||||||
INNER JOIN membres
|
INNER JOIN users
|
||||||
ON acc_transactions_users.id_user = membres.id
|
ON acc_transactions_users.id_user = users.id
|
||||||
INNER JOIN acc_transactions
|
INNER JOIN acc_transactions
|
||||||
ON acc_transactions_users.id_transaction = acc_transactions.id
|
ON acc_transactions_users.id_transaction = acc_transactions.id
|
||||||
INNER JOIN acc_transactions_lines
|
INNER JOIN acc_transactions_lines
|
||||||
ON acc_transactions_lines.id_transaction = acc_transactions.id
|
ON acc_transactions_lines.id_transaction = acc_transactions.id
|
||||||
INNER JOIN acc_accounts
|
INNER JOIN acc_accounts
|
||||||
ON acc_transactions_lines.id_account = acc_accounts.id
|
ON acc_transactions_lines.id_account = acc_accounts.id
|
||||||
WHERE
|
WHERE
|
||||||
(strftime("%%Y", acc_transactions.date) = "%d"
|
(strftime("%%Y", acc_transactions.date) = "%d"
|
||||||
AND
|
AND
|
||||||
acc_accounts.%s
|
acc_accounts.%s
|
||||||
)
|
)
|
||||||
GROUP BY acc_transactions.id, acc_accounts.id
|
GROUP BY acc_transactions.id, acc_accounts.id
|
||||||
ORDER by %s, acc_accounts.code, acc_transactions.date
|
ORDER by %s, acc_accounts.code, acc_transactions.date
|
||||||
',
|
',
|
||||||
$annee,
|
$annee,
|
||||||
$db->where('id', 'in', $comptesIsoles),
|
$db->where('id', 'in', $comptesIsoles),
|
||||||
$tri
|
$tri
|
||||||
);
|
);
|
||||||
return $db->get($sql);
|
return $db->get($sql);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @return personnes ayant versé des dons pour une année donnée
|
* @return personnes ayant versé des dons pour une année donnée
|
||||||
* @param $annee
|
* @param $annee
|
||||||
* @param array $champsNom : champs qui définissent le nom et le prénom d'une personne
|
* @param array $champsNom : champs qui définissent le nom et le prénom d'une personne
|
||||||
*/
|
*/
|
||||||
public static function getDonateurs($annee, $champsNom) : array
|
public static function getDonateurs($annee, $champsNom) : array
|
||||||
{
|
{
|
||||||
// concaténer les champs nom/prénoms pour la sélection
|
// concaténer les champs nom/prénoms pour la sélection
|
||||||
$nom = Utils::combinerChamps($champsNom);
|
$nom = Utils::combinerChamps($champsNom);
|
||||||
// et pour le tri
|
// et pour le tri
|
||||||
$tri = Utils::combinerTri($champsNom);
|
$tri = Utils::combinerTri($champsNom);
|
||||||
$sql = sprintf(
|
$sql = sprintf(
|
||||||
'SELECT
|
'SELECT
|
||||||
membres.id as idUser,
|
users.id as idUser,
|
||||||
membres.numero,
|
users.numero,
|
||||||
membres.email,
|
users.email,
|
||||||
row_number() over(order by %s) as rang,
|
row_number() over(order by %s) as rang,
|
||||||
%s as nom,
|
%s as nom,
|
||||||
membres.adresse as adresse,
|
users.adresse as adresse,
|
||||||
membres.code_postal as codePostal,
|
users.code_postal as codePostal,
|
||||||
membres.ville as ville
|
users.ville as ville
|
||||||
FROM
|
FROM
|
||||||
acc_transactions_users,
|
acc_transactions_users,
|
||||||
membres,
|
users,
|
||||||
acc_transactions
|
acc_transactions
|
||||||
INNER JOIN acc_transactions_lines
|
INNER JOIN acc_transactions_lines
|
||||||
ON acc_transactions_lines.id_transaction = acc_transactions.id
|
ON acc_transactions_lines.id_transaction = acc_transactions.id
|
||||||
WHERE (
|
WHERE (
|
||||||
strftime("%%Y", acc_transactions.date) = "%d"
|
strftime("%%Y", acc_transactions.date) = "%d"
|
||||||
AND
|
AND
|
||||||
acc_transactions_users.id_transaction = acc_transactions.id
|
acc_transactions_users.id_transaction = acc_transactions.id
|
||||||
AND
|
AND
|
||||||
acc_transactions_users.id_user = membres.id
|
acc_transactions_users.id_user = users.id
|
||||||
)
|
)
|
||||||
GROUP by membres.id
|
GROUP by users.id
|
||||||
ORDER by %1$s COLLATE U_NOCASE
|
ORDER by %1$s COLLATE U_NOCASE
|
||||||
',
|
',
|
||||||
$tri,
|
$tri,
|
||||||
$nom,
|
$nom,
|
||||||
$annee
|
$annee
|
||||||
);
|
);
|
||||||
$donateurs = array();
|
$donateurs = array();
|
||||||
foreach (DB::getInstance()->iterate($sql) as $personne)
|
foreach (DB::getInstance()->iterate($sql) as $personne)
|
||||||
{
|
{
|
||||||
$donateurs[$personne->idUser] = new Personne($personne->idUser,
|
$donateurs[$personne->idUser] = new Personne($personne->idUser,
|
||||||
$personne->numero,
|
$personne->numero,
|
||||||
$personne->email,
|
$personne->email,
|
||||||
$personne->rang,
|
$personne->rang,
|
||||||
$personne->nom,
|
$personne->nom,
|
||||||
$personne->adresse,
|
$personne->adresse,
|
||||||
$personne->codePostal,
|
$personne->codePostal,
|
||||||
$personne->ville);
|
$personne->ville);
|
||||||
}
|
}
|
||||||
return $donateurs;
|
return $donateurs;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* combiner les champs avec un opérateur
|
* combiner les champs avec un opérateur
|
||||||
* @param array $champs : liste (non vide) de champs
|
* @param array $champs : liste (non vide) de champs
|
||||||
* @return chaîne combinée
|
* @return chaîne combinée
|
||||||
*/
|
*/
|
||||||
private static function combinerChamps($champs)
|
private static function combinerChamps($champs)
|
||||||
{
|
{
|
||||||
$op = ' || " " || ';
|
$op = ' || " " || ';
|
||||||
$result = 'ifnull(membres.' . $champs[0] . ', "")';
|
$result = 'ifnull(users.' . $champs[0] . ', "")';
|
||||||
for ($i = 1; $i < count($champs); ++$i)
|
for ($i = 1; $i < count($champs); ++$i)
|
||||||
{
|
{
|
||||||
$result .= $op . 'ifnull(membres.' . $champs[$i] . ', "")';
|
$result .= $op . 'ifnull(users.' . $champs[$i] . ', "")';
|
||||||
}
|
}
|
||||||
return 'trim(' . $result . ')';
|
return 'trim(' . $result . ')';
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* combiner les clés de tri
|
* combiner les clés de tri
|
||||||
* @param clés de tri
|
* @param clés de tri
|
||||||
* @return chaîne combinée
|
* @return chaîne combinée
|
||||||
*/
|
*/
|
||||||
private static function combinerTri(array $champs) : string
|
private static function combinerTri(array $champs) : string
|
||||||
{
|
{
|
||||||
$tri = 'membres.' . $champs[0];
|
$tri = 'users.' . $champs[0];
|
||||||
for ($i = 1; $i < count($champs); ++$i)
|
for ($i = 1; $i < count($champs); ++$i)
|
||||||
{
|
{
|
||||||
$tri .= ', membres.' . $champs[$i];
|
$tri .= ', users.' . $champs[$i];
|
||||||
}
|
}
|
||||||
return $tri;
|
return $tri;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* combiner chaque tarif avec le numéro de compte associé
|
* combiner chaque tarif avec le numéro de compte associé
|
||||||
*/
|
*/
|
||||||
private static function combinerTarifsComptes($tarifs, $comptes)
|
private static function combinerTarifsComptes($tarifs, $comptes)
|
||||||
{
|
{
|
||||||
$condition = '(';
|
$condition = '(';
|
||||||
$lesCond = array_map(fn($e1, $e2) : string =>
|
$lesCond = array_map(fn($e1, $e2) : string =>
|
||||||
"(services_fees.id = '$e1' AND acc_accounts.id = '$e2')",
|
"(services_fees.id = '$e1' AND acc_accounts.id = '$e2')",
|
||||||
$tarifs, $comptes);
|
$tarifs, $comptes);
|
||||||
$nb = 0;
|
$nb = 0;
|
||||||
foreach ($lesCond as $cond)
|
foreach ($lesCond as $cond)
|
||||||
{
|
{
|
||||||
if ($nb > 0) { $condition .= ' OR '; }
|
if ($nb > 0) { $condition .= ' OR '; }
|
||||||
$condition .= $cond;
|
$condition .= $cond;
|
||||||
++$nb;
|
++$nb;
|
||||||
}
|
}
|
||||||
$condition .= ')';
|
$condition .= ')';
|
||||||
return $condition;
|
return $condition;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @return liste des années fiscales
|
* @return liste des années fiscales
|
||||||
*/
|
*/
|
||||||
public static function getAnneesFiscales() : array
|
public static function getAnneesFiscales() : array
|
||||||
{
|
{
|
||||||
$rows = DB::getInstance()->get(
|
$rows = DB::getInstance()->get(
|
||||||
"SELECT strftime('%Y', start_date) as annee
|
"SELECT strftime('%Y', start_date) as annee
|
||||||
FROM acc_years
|
FROM acc_years
|
||||||
UNION
|
UNION
|
||||||
SELECT strftime('%Y', end_date) as annee
|
SELECT strftime('%Y', end_date) as annee
|
||||||
FROM acc_years
|
FROM acc_years
|
||||||
ORDER by annee DESC"
|
ORDER by annee DESC"
|
||||||
);
|
);
|
||||||
$anneesFiscales = array();
|
$anneesFiscales = array();
|
||||||
foreach ($rows as $row) {
|
foreach ($rows as $row) {
|
||||||
$anneesFiscales[] = $row->annee;
|
$anneesFiscales[] = $row->annee;
|
||||||
}
|
}
|
||||||
return $anneesFiscales;
|
return $anneesFiscales;
|
||||||
}
|
}
|
||||||
|
|
||||||
public static function getLignesReduction($lesTaux)
|
public static function getLignesReduction($lesTaux)
|
||||||
{
|
{
|
||||||
foreach ($lesTaux as $elem)
|
foreach ($lesTaux as $elem)
|
||||||
{
|
{
|
||||||
$lignes[$elem->taux] = $elem->remarque;
|
$lignes[$elem->taux] = $elem->remarque;
|
||||||
}
|
}
|
||||||
return $lignes;
|
return $lignes;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* récupérer dans la config du plugin les champs des membres
|
* récupérer dans la config du plugin les champs des membres
|
||||||
* utilisés pour le nom et le prénom ; ajouter/supprimer les
|
* utilisés pour le nom et le prénom ; ajouter/supprimer les
|
||||||
* modifications par rapport à la config garradin
|
* modifications par rapport à la config paheko
|
||||||
* @return array tableau des champs : clé = nom, valeur = { titre, position }
|
* @return array tableau des champs : clé = nom, valeur = { titre, position }
|
||||||
*/
|
*/
|
||||||
public static function getChampsNom($config, $plugin) : array
|
public static function getChampsNom($config, $plugin) : array
|
||||||
{
|
{
|
||||||
// récupérer dans la config du plugin les champs mémorisés
|
// 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é)
|
// pour le nom et le prénom (le tableau est vide si pas mémorisé)
|
||||||
$champsNom = (array) $plugin->getConfig('champsNom');
|
$champsNom = (array) $plugin->getConfig('champsNom');
|
||||||
|
|
||||||
// récupérer dans la config Garradin les champs des membres
|
// récupérer dans la config Paheko les champs des membres
|
||||||
// utilisés pour le nom et le préno
|
// utilisés pour le nom et le prénom
|
||||||
$champsGarradin = $config->get('champs_membres')->listAssocNames();
|
$champsPaheko = DynamicFields::getInstance()->listAssocNames();
|
||||||
|
|
||||||
foreach ($champsGarradin as $name => $title)
|
foreach ($champsPaheko as $name => $title)
|
||||||
{
|
{
|
||||||
if (stristr($title, 'nom'))
|
if (stristr($title, 'nom'))
|
||||||
{
|
{
|
||||||
// retenir les champs dont le titre contient le terme 'nom'
|
// retenir les champs dont le titre contient le terme 'nom'
|
||||||
// est-il présent dans la config du plugin ?
|
// est-il présent dans la config du plugin ?
|
||||||
if (! array_key_exists($name, $champsNom))
|
if (! array_key_exists($name, $champsNom))
|
||||||
{
|
{
|
||||||
// absent => l'ajouter
|
// absent => l'ajouter
|
||||||
$champ = new \stdClass();
|
$champ = new \stdClass();
|
||||||
$champ->titre = $title;
|
$champ->titre = $title;
|
||||||
$champ->position = 0;
|
$champ->position = 0;
|
||||||
$champsNom[$name] = $champ;
|
$champsNom[$name] = $champ;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
// opération symétrique : un champ mémorisé dans la config du
|
// opération symétrique : un champ mémorisé dans la config du
|
||||||
// plugin a-t-il disparu de la config garradin ?
|
// plugin a-t-il disparu de la config paheko ?
|
||||||
foreach ($champsNom as $nom => $champ)
|
foreach ($champsNom as $nom => $champ)
|
||||||
{
|
{
|
||||||
if (! array_key_exists($nom, $champsGarradin))
|
if (! array_key_exists($nom, $champsPaheko))
|
||||||
{
|
{
|
||||||
// absent => le supprimer
|
// absent => le supprimer
|
||||||
unset($champsNom[$nom]);
|
unset($champsNom[$nom]);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
// mettre à jour la config du plugin
|
// mettre à jour la config du plugin
|
||||||
$plugin->setConfig('champsNom', $champsNom);
|
$plugin->setConfigProperty('champsNom', $champsNom);
|
||||||
return $champsNom;
|
return $champsNom;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* enregistrer les fichiers dans une archive zip
|
* enregistrer les fichiers dans une archive zip
|
||||||
* @param $fileList : liste des fichiers à archiver
|
* @param $fileList : liste des fichiers à archiver
|
||||||
* @param $year : pour générer le nom de l'archive
|
* @param $year : pour générer le nom de l'archive
|
||||||
* @param $archiveDir : ne sert plus
|
* @param $archiveDir : ne sert plus
|
||||||
*/
|
*/
|
||||||
static function makeArchive(
|
static function makeArchive(
|
||||||
$fileList,
|
$fileList,
|
||||||
$year,
|
$year,
|
||||||
$archiveDir = null)
|
$archiveDir = null)
|
||||||
{
|
{
|
||||||
$zipFilename = "recus_dons" . $year . ".zip";
|
$zipFilename = "recus_dons" . $year . ".zip";
|
||||||
header('Content-type: application/zip');
|
header('Content-type: application/zip');
|
||||||
header(sprintf('Content-Disposition: attachment; filename="%s"', $zipFilename));
|
header(sprintf('Content-Disposition: attachment; filename="%s"', $zipFilename));
|
||||||
$zip = new ZipWriter('php://output');
|
$zip = new ZipWriter('php://output');
|
||||||
$zip->setCompression(0);
|
$zip->setCompression(0);
|
||||||
foreach ($fileList as $fileName)
|
foreach ($fileList as $fileName)
|
||||||
{
|
{
|
||||||
$zip->add(basename($fileName), null, $fileName);
|
$zip->add(basename($fileName), null, $fileName);
|
||||||
}
|
}
|
||||||
$zip->close();
|
$zip->close();
|
||||||
} // makeArchive
|
} // makeArchive
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
namespace Garradin\Plugin\RecusFiscaux;
|
namespace Paheko\Plugin\RecusFiscaux;
|
||||||
|
|
||||||
class Versement
|
class Versement
|
||||||
{
|
{
|
||||||
|
|
|
@ -0,0 +1,8 @@
|
||||||
|
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,5 +1,5 @@
|
||||||
<!-- title -->
|
<!-- title -->
|
||||||
{include file="admin/_head.tpl" title="%s"|args:$plugin.nom current="plugin_%s"|args:$plugin.id}
|
{include file="_head.tpl" title="%s"|args:$plugin.label current="plugin_%s"|args:$plugin.id}
|
||||||
|
|
||||||
<!-- nav bar -->
|
<!-- nav bar -->
|
||||||
<nav class="tabs">
|
<nav class="tabs">
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
{include file="admin/_head.tpl" title="Changer d'année fiscale"}
|
{include file="_head.tpl" title="Changer d'année fiscale"}
|
||||||
|
|
||||||
<form method="post" action="{$self_url}" data-focus="1">
|
<form method="post" action="{$self_url}" data-focus="1">
|
||||||
<fieldset>
|
<fieldset>
|
||||||
|
@ -11,10 +11,9 @@
|
||||||
</select>
|
</select>
|
||||||
</fieldset>
|
</fieldset>
|
||||||
<p class="submit">
|
<p class="submit">
|
||||||
{csrf_field key="acc_select_year"}
|
{csrf_field key=$csrf_key}
|
||||||
<input type="hidden" name="from" value="{$from}" />
|
|
||||||
{button type="submit" name="change" label="Changer" shape="right" class="main"}
|
{button type="submit" name="change" label="Changer" shape="right" class="main"}
|
||||||
</p>
|
</p>
|
||||||
</form>
|
</form>
|
||||||
|
|
||||||
{include file="admin/_foot.tpl"}
|
{include file="_foot.tpl"}
|
|
@ -1,16 +1,16 @@
|
||||||
<!-- 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 $ok && !$form->hasErrors()}
|
{if isset($_GET['ok'])}
|
||||||
<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>
|
||||||
<dl class="config">
|
<dl class="config">
|
||||||
|
@ -24,17 +24,20 @@
|
||||||
l'association)</b>
|
l'association)</b>
|
||||||
</dt>
|
</dt>
|
||||||
<div id="articles_cgi">
|
<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}
|
||||||
*}
|
*}
|
||||||
|
|
||||||
<div class="article">
|
<div class="article">
|
||||||
<input type="checkbox" name="articlesCGI[]" id="article_{$key}" value="{$key}" class="choix"
|
<input type="checkbox" name="articlesCGI[]" id="article_{$key}" value="{$key}" class="choix"
|
||||||
{if $article.valeur == 1}checked{/if} />
|
{if $article.valeur == 1}checked{/if} />
|
||||||
<label for="article_{$key}">Article {$article.titre}</label>
|
<label for="article_{$key}">Article {$article.titre}</label>
|
||||||
</div>
|
</div>
|
||||||
{/foreach}
|
{/foreach}
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
</dl>
|
</dl>
|
||||||
|
|
||||||
|
@ -45,12 +48,14 @@
|
||||||
l'association)</b>
|
l'association)</b>
|
||||||
</dt>
|
</dt>
|
||||||
<div id="taux_reduction">
|
<div id="taux_reduction">
|
||||||
|
|
||||||
{foreach from=$plugin_config->reduction key="key" item="taux"}
|
{foreach from=$plugin_config->reduction key="key" item="taux"}
|
||||||
<input type="checkbox" name="tauxReduction[]" id="taux_{$key}" value="{$key}" class="choix"
|
<input type="checkbox" name="tauxReduction[]" id="taux_{$key}" value="{$key}" class="choix"
|
||||||
{if $taux.valeur == 1}checked{/if} />
|
{if $taux.valeur == 1}checked{/if} />
|
||||||
<label for="taux_{$key}">Taux {$taux.taux}, ligne {$taux.ligne} de la déclaration
|
<label for="taux_{$key}">Taux {$taux.taux}, ligne {$taux.ligne} de la déclaration
|
||||||
{if $taux.remarque !== ""}({$taux.remarque})</label>{/if}
|
{if $taux.remarque !== ""}({$taux.remarque})</label>{/if}
|
||||||
{/foreach}
|
{/foreach}
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
</dl>
|
</dl>
|
||||||
</fieldset>
|
</fieldset>
|
||||||
|
@ -175,7 +180,7 @@
|
||||||
<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="recusfiscaux_config"}
|
{csrf_field key=$csrf_key}
|
||||||
{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" onclick="return verifierConfig(articles_cgi, taux_reduction)"}
|
||||||
</p>
|
</p>
|
||||||
</form>
|
</form>
|
||||||
|
@ -186,7 +191,7 @@
|
||||||
var lesDivs = document.querySelectorAll('.actions');
|
var lesDivs = document.querySelectorAll('.actions');
|
||||||
for (i = 0; i < lesDivs.length; ++i) {
|
for (i = 0; i < lesDivs.length; ++i) {
|
||||||
var up = document.createElement('a');
|
var up = document.createElement('a');
|
||||||
up.className = 'icn up';
|
up.className = 'up icn-btn';
|
||||||
up.innerHTML = '↑';
|
up.innerHTML = '↑';
|
||||||
up.title = 'Déplacer vers le haut';
|
up.title = 'Déplacer vers le haut';
|
||||||
up.onclick = function(e) {
|
up.onclick = function(e) {
|
||||||
|
|
|
@ -2,214 +2,216 @@
|
||||||
{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">
|
<nav class="acc-year">
|
||||||
<h4>Année fiscale sélectionnée :</h4>
|
<h4>Année fiscale sélectionnée :</h4>
|
||||||
<h3>{$annee_recu}</h3>
|
<h3>{$annee_recu}</h3>
|
||||||
<footer>{linkbutton label="Changer d'année fiscale" href="%s/choix_annee.php?from=%s"|args:$plugin_url,rawurlencode($self_url) shape="settings"}</footer>
|
<footer>{linkbutton label="Changer d'année fiscale" target="_dialog" href="%s/choix_annee.php"|args:$plugin_url shape="settings"}</footer>
|
||||||
</nav>
|
</nav>
|
||||||
|
|
||||||
<form id="formulaire_saisie" method="post" action="action.php">
|
<form id="formulaire_saisie" method="post" action="action.php">
|
||||||
|
|
||||||
<div id="choix_methode">
|
<div id="choix_methode">
|
||||||
<h3>Sélectionner les versements pour les reçus</h3>
|
<h3>Sélectionner les versements pour les reçus</h3>
|
||||||
|
|
||||||
<fieldset>
|
<fieldset>
|
||||||
{* <legend>Choisir une des méthodes</legend> *}
|
{* <legend>Choisir une des méthodes</legend> *}
|
||||||
<dl id="menu">
|
<dl id="menu">
|
||||||
<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_versements_personne" name="choix_versements" value="personne"
|
||||||
onclick="choixMethodeGeneration(this.form, 'personne', 'menu_versements', '.menu');" />
|
onclick="choixMethodeGeneration(this.form, 'personne', 'menu_versements', '.menu');" />
|
||||||
<label for="radio_versements_personne">
|
<label for="radio_versements_personne">
|
||||||
<div class="explications">
|
<div class="explications">
|
||||||
<h5>
|
<h5>
|
||||||
Seuls les versements des personnes importent.
|
Seuls les versements des personnes importent.
|
||||||
</h5>
|
</h5>
|
||||||
<p class="help">Choisissez cette option si vous n'avez pas besoin des activités ni des tarifs</p>
|
<p class="help">Choisissez cette option si vous n'avez pas besoin des activités ni des tarifs</p>
|
||||||
</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" value="activite"
|
||||||
onclick="choixMethodeGeneration(this.form, 'activite', 'menu_activites_tarifs', '.menu');" />
|
onclick="choixMethodeGeneration(this.form, 'activite', 'menu_activites_tarifs', '.menu');" />
|
||||||
<label for="radio_versements_activites">
|
<label for="radio_versements_activites">
|
||||||
<div class="explications">
|
<div class="explications">
|
||||||
<h5>
|
<h5>
|
||||||
Certaines activités, certains tarifs ou certains comptes importent.
|
Certaines activités, certains tarifs ou certains comptes importent.
|
||||||
</h5>
|
</h5>
|
||||||
<p class="help">Choisissez cette option pour classer les versements par activités, tarifs et comptes</p>
|
<p class="help">Choisissez cette option pour classer les versements par activités, tarifs et comptes</p>
|
||||||
</div>
|
</div>
|
||||||
</label>
|
</label>
|
||||||
</dd>
|
</dd>
|
||||||
</dl>
|
</dl>
|
||||||
</fieldset>
|
</fieldset>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
{* Tous les versements *}
|
{* Tous les versements *}
|
||||||
<div id="menu_versements" class="menu hidden">
|
<div id="menu_versements" class="menu hidden">
|
||||||
<h3>Choisir le taux de réduction</h3>
|
<h3>Choisir le taux de réduction</h3>
|
||||||
<fieldset>
|
<fieldset>
|
||||||
{if $nbTaux == 0}
|
{if $nbTaux == 0}
|
||||||
<h3 class="warning">Vous devez d'abord sélectionner au moins un taux de réduction dans l'onglet de configuration</h3>
|
<h3 class="warning">Vous devez d'abord sélectionner au moins un taux de réduction dans l'onglet de configuration</h3>
|
||||||
{/if}
|
{/if}
|
||||||
{if $nbChamps == 0}
|
{if $nbChamps == 0}
|
||||||
<h3 class="warning">Vous devez d'abord sélectionner au moins un champ pour le nom et le prénom dans l'onglet de configuration</h3>
|
<h3 class="warning">Vous devez d'abord sélectionner au moins un champ pour le nom et le prénom dans l'onglet de configuration</h3>
|
||||||
{/if}
|
{/if}
|
||||||
{if $nbTaux > 0 && $nbChamps > 0}
|
{if $nbTaux > 0 && $nbChamps > 0}
|
||||||
<ul class="reduction">
|
<ul class="reduction">
|
||||||
{foreach from=$plugin_config->reduction item="reduc"}
|
{foreach from=$plugin_config->reduction item="reduc"}
|
||||||
{if $reduc->valeur == 1}
|
{if $reduc->valeur == 1}
|
||||||
<li>
|
<li>
|
||||||
<span class="radio-btn">
|
<span class="radio-btn">
|
||||||
<input
|
<input
|
||||||
type="radio"
|
type="radio"
|
||||||
id="{$reduc->taux}"
|
id="{$reduc->taux}"
|
||||||
name="taux_reduction"
|
name="taux_reduction"
|
||||||
value="{$reduc->taux}"
|
value="{$reduc->taux}"
|
||||||
{if $nbTaux == 1}checked{/if}
|
{if $nbTaux == 1}checked{/if}
|
||||||
/>
|
/>
|
||||||
<label for="{$reduc->taux}">{$reduc->taux}{if $reduc->remarque != ""} - {$reduc->remarque}{/if}</label>
|
<label for="{$reduc->taux}">{$reduc->taux}{if $reduc->remarque != ""} - {$reduc->remarque}{/if}</label>
|
||||||
</span>
|
</span>
|
||||||
</li>
|
</li>
|
||||||
{/if}
|
{/if}
|
||||||
{/foreach}
|
{/foreach}
|
||||||
</ul>
|
</ul>
|
||||||
{/if}
|
{/if}
|
||||||
</fieldset>
|
</fieldset>
|
||||||
|
|
||||||
<p class="submit">
|
<p class="submit">
|
||||||
{csrf_field key="generer_tous_recus"}
|
{csrf_field key="generer_tous_recus"}
|
||||||
{button type="submit" name="generer_tous" label="Poursuivre" shape="right" class="main" onclick="return verifierTaux(menu_versements);" }
|
{button type="submit" name="generer_tous" label="Poursuivre" shape="right" class="main" onclick="return verifierTaux(menu_versements);" }
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
{* Activités, tarifs et comptes *}
|
{* Activités, tarifs et comptes *}
|
||||||
<div id="menu_activites_tarifs" class="menu hidden">
|
<div id="menu_activites_tarifs" class="menu hidden">
|
||||||
<h3>Choisir les activités, tarifs et comptes concernés ainsi que le taux de réduction</h3>
|
<h3>Choisir les activités, tarifs et comptes concernés ainsi que le taux de réduction</h3>
|
||||||
<fieldset>
|
<fieldset>
|
||||||
{if $nbTaux == 0}
|
{if $nbTaux == 0}
|
||||||
<h3 class="warning">Vous devez d'abord sélectionner au moins un taux de réduction dans l'onglet de configuration</h3>
|
<h3 class="warning">Vous devez d'abord sélectionner au moins un taux de réduction dans l'onglet de configuration</h3>
|
||||||
{/if}
|
{/if}
|
||||||
{if $nbChamps == 0}
|
{if $nbChamps == 0}
|
||||||
<h3 class="warning">Vous devez d'abord sélectionner au moins un champ pour le nom et le prénom dans l'onglet de configuration</h3>
|
<h3 class="warning">Vous devez d'abord sélectionner au moins un champ pour le nom et le prénom dans l'onglet de configuration</h3>
|
||||||
{/if}
|
{/if}
|
||||||
{if $nbTaux > 0 && $nbChamps > 0}
|
{if $nbTaux > 0 && $nbChamps > 0}
|
||||||
<ul id="liste_activites">
|
<ul id="liste_activites">
|
||||||
{foreach from=$activitesTarifsComptes item="elem"}
|
{foreach from=$activitesTarifsComptes item="elem"}
|
||||||
<li>
|
<li>
|
||||||
<?php
|
<?php
|
||||||
$tarif = $lesTarifs[$elem->idTarif];
|
$tarif = $lesTarifs[$elem->idTarif];
|
||||||
$compte = $lesComptes[$elem->idCompte];
|
$compte = $lesComptes[$elem->idCompte];
|
||||||
$activite = $lesActivites[$tarif->idActivite];
|
$activite = $lesActivites[$tarif->idActivite];
|
||||||
?>
|
?>
|
||||||
<div class="activite">
|
<div class="activite">
|
||||||
{if $nbTarifs == 1 && $nbComptesSansActivite == 0}
|
{if $nbTarifs == 1 && $nbComptesSansActivite == 0}
|
||||||
{input
|
{input
|
||||||
type="checkbox"
|
type="checkbox"
|
||||||
name="tarifs[]"
|
name="tarifs[]"
|
||||||
value="%s_%s"|args:$elem.idTarif,$elem.idCompte
|
value="%s_%s"|args:$elem.idTarif,$elem.idCompte
|
||||||
label="Activité « %s » - tarif « %s » ;"|args:$activite.label,$tarif.label
|
label="Activité « %s » - tarif « %s » ;"|args:$activite.label,$tarif.label
|
||||||
checked="checked"
|
checked="checked"
|
||||||
}
|
}
|
||||||
{else}
|
{else}
|
||||||
{input
|
{input
|
||||||
type="checkbox"
|
type="checkbox"
|
||||||
name="tarifs[]"
|
name="tarifs[]"
|
||||||
value="%s_%s"|args:$elem.idTarif,$elem.idCompte
|
value="%s_%s"|args:$elem.idTarif,$elem.idCompte
|
||||||
label="Activité « %s » - tarif « %s » ;"|args:$activite.label,$tarif.label
|
label="Activité « %s » - tarif « %s » ;"|args:$activite.label,$tarif.label
|
||||||
}
|
}
|
||||||
{/if}
|
{/if}
|
||||||
<span>compte : {$elem.codeCompte} ({$compte->nomCompte})</span>
|
<span>compte : {$elem.codeCompte} - {$compte->nomCompte}</span>
|
||||||
</div>
|
<span> ({$compte.label})</span>
|
||||||
<ul class="reduction">
|
</div>
|
||||||
{foreach from=$plugin_config->reduction item="reduc"}
|
<ul class="reduction">
|
||||||
{if $reduc->valeur == 1}
|
{foreach from=$plugin_config->reduction item="reduc"}
|
||||||
<li>
|
{if $reduc->valeur == 1}
|
||||||
<span class="radio-btn">
|
<li>
|
||||||
<input
|
<span class="radio-btn">
|
||||||
type="radio"
|
<input
|
||||||
id="taux_{$reduc->taux}_{$elem.idTarif}_{$elem.idCompte}"
|
type="radio"
|
||||||
name="taux_reduction_{$elem.idTarif}_{$elem.idCompte}"
|
id="taux_{$reduc->taux}_{$elem.idTarif}_{$elem.idCompte}"
|
||||||
value="{$reduc->taux}"
|
name="taux_reduction_{$elem.idTarif}_{$elem.idCompte}"
|
||||||
{if $nbTarifs > 1}disabled{/if}
|
value="{$reduc->taux}"
|
||||||
{if $nbTaux == 1}checked{/if}
|
{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>
|
<label for="taux_{$reduc->taux}_{$elem.idTarif}_{$elem.idCompte}">
|
||||||
</span>
|
{$reduc->taux}{if $reduc->remarque != ""} - {$reduc->remarque}{/if}</label>
|
||||||
</li>
|
</span>
|
||||||
{/if}
|
</li>
|
||||||
{/foreach}
|
{/if}
|
||||||
</ul>
|
{/foreach}
|
||||||
</li>
|
</ul>
|
||||||
{/foreach}
|
</li>
|
||||||
{* comptes non rattachés à une activité *}
|
{/foreach}
|
||||||
{foreach from=$comptesSansActivite item="idCompte"}
|
{* comptes non rattachés à une activité *}
|
||||||
<li>
|
{foreach from=$comptesSansActivite item="idCompte"}
|
||||||
<div class="activite">
|
<li>
|
||||||
{input
|
<div class="activite">
|
||||||
type="checkbox"
|
{input
|
||||||
name="comptes[]"
|
type="checkbox"
|
||||||
value="%s"|args:$idCompte
|
name="comptes[]"
|
||||||
label="Versements non rattachés à une activité ;"
|
value="%s"|args:$idCompte
|
||||||
}
|
label="Versements non rattachés à une activité ;"
|
||||||
<?php $compte = $lesComptes[$idCompte]; ?>
|
}
|
||||||
<span>compte : {$compte.codeCompte} ({$compte.nomCompte})</span>
|
<?php $compte = $lesComptes[$idCompte]; ?>
|
||||||
</div>
|
<span>compte : {$compte.codeCompte} - {$compte.nomCompte}</span>
|
||||||
<ul class="reduction">
|
<span> ({$compte.label})</span>
|
||||||
{foreach from=$plugin_config->reduction item="reduc"}
|
</div>
|
||||||
{if $reduc->valeur == 1}
|
<ul class="reduction">
|
||||||
<li>
|
{foreach from=$plugin_config->reduction item="reduc"}
|
||||||
<span class="radio-btn">
|
{if $reduc->valeur == 1}
|
||||||
<input
|
<li>
|
||||||
type="radio"
|
<span class="radio-btn">
|
||||||
id="taux_{$reduc->taux}_{$idCompte}"
|
<input
|
||||||
name="taux_reduction_{$idCompte}"
|
type="radio"
|
||||||
value="{$reduc->taux}"
|
id="taux_{$reduc->taux}_{$idCompte}"
|
||||||
disabled
|
name="taux_reduction_{$idCompte}"
|
||||||
{if $nbTaux == 1}checked{/if}
|
value="{$reduc->taux}"
|
||||||
/>
|
disabled
|
||||||
<label for="taux_{$reduc->taux}_{$idCompte}">
|
{if $nbTaux == 1}checked{/if}
|
||||||
{$reduc->taux}{if $reduc->remarque != ""} - {$reduc->remarque}{/if}</label>
|
/>
|
||||||
</span>
|
<label for="taux_{$reduc->taux}_{$idCompte}">
|
||||||
</li>
|
{$reduc->taux}{if $reduc->remarque != ""} - {$reduc->remarque}{/if}</label>
|
||||||
{/if}
|
</span>
|
||||||
{/foreach}
|
</li>
|
||||||
</ul>
|
{/if}
|
||||||
</li>
|
{/foreach}
|
||||||
{/foreach}
|
</ul>
|
||||||
</ul>
|
</li>
|
||||||
{/if}
|
{/foreach}
|
||||||
</fieldset>
|
</ul>
|
||||||
|
{/if}
|
||||||
|
</fieldset>
|
||||||
|
|
||||||
<p class="submit">
|
<p class="submit">
|
||||||
{csrf_field key="generer_recus_activites"}
|
{csrf_field key="generer_recus_activites"}
|
||||||
{button type="submit" name="generer_activites" label="Poursuivre" shape="right" class="main" onclick="return verifierActivitésTaux(menu_activites_tarifs);" }
|
{button type="submit" name="generer_activites" label="Poursuivre" shape="right" class="main" onclick="return verifierActivitésTaux(menu_activites_tarifs);" }
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</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 (<li>)
|
||||||
var ligne = idCase.closest("li");
|
var ligne = idCase.closest("li");
|
||||||
// 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="admin/_foot.tpl"}
|
{include file="_foot.tpl"}
|
||||||
|
|
|
@ -79,8 +79,8 @@
|
||||||
|
|
||||||
<div class="cartouche" id="beneficiaire">
|
<div class="cartouche" id="beneficiaire">
|
||||||
<h3 class="rubrique">Bénéficiaire des versements</h3>
|
<h3 class="rubrique">Bénéficiaire des versements</h3>
|
||||||
<p class="important">Association « {{$config.nom_asso}} »<br />
|
<p class="important">Association « {{$config.org_name}} »<br />
|
||||||
{{$config.adresse_asso}}<br />
|
{{$config.org_address}}<br />
|
||||||
<span class="titre">Objet : </span><span class="libelle">{{$objet_asso}}</span>
|
<span class="titre">Objet : </span><span class="libelle">{{$objet_asso}}</span>
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
{include file="admin/_head.tpl" title="%s"|args:$plugin.nom current="plugin_%s"|args:$plugin.id}
|
{include file="_head.tpl" title="%s"|args:$plugin.name current="plugin_%s"|args:$plugin.id}
|
||||||
|
|
||||||
<?php
|
<?php
|
||||||
$fmt = new \NumberFormatter('fr_FR', \NumberFormatter::SPELLOUT);
|
$fmt = new \NumberFormatter('fr_FR', \NumberFormatter::SPELLOUT);
|
||||||
|
@ -7,7 +7,7 @@
|
||||||
|
|
||||||
{* Itération sur les personnes *}
|
{* Itération sur les personnes *}
|
||||||
{foreach from=$totalPersonnes key="idPersonne" item="personne"}
|
{foreach from=$totalPersonnes key="idPersonne" item="personne"}
|
||||||
<div class="previs_recu">
|
<div class="previs_recu">
|
||||||
|
|
||||||
<div class="cartouche" id="entete">
|
<div class="cartouche" id="entete">
|
||||||
<img id="logo" src="{$logo_asso}" />
|
<img id="logo" src="{$logo_asso}" />
|
||||||
|
@ -27,8 +27,8 @@
|
||||||
|
|
||||||
<div class="cartouche" id="beneficiaire">
|
<div class="cartouche" id="beneficiaire">
|
||||||
<h3 class="rubrique">Bénéficiaire des versements</h3>
|
<h3 class="rubrique">Bénéficiaire des versements</h3>
|
||||||
<p class="important">Association « {$nom_asso} »<br />
|
<p class="important">Association « {$org_name} »<br />
|
||||||
{$adresse_asso}<br />
|
{$org_address}<br />
|
||||||
<span class="titre">Objet : </span><span class="libelle">{$objet_asso}</span>
|
<span class="titre">Objet : </span><span class="libelle">{$objet_asso}</span>
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
|
@ -133,4 +133,4 @@ document.addEventListener('DOMContentLoaded',
|
||||||
{/literal}
|
{/literal}
|
||||||
|
|
||||||
<!-- footer -->
|
<!-- footer -->
|
||||||
{include file="admin/_foot.tpl"}
|
{include file="_foot.tpl"}
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
{include file="admin/_head.tpl" title="Envoi de fichier"}
|
{include file="_head.tpl" title="Envoi de fichier"}
|
||||||
|
|
||||||
{form_errors}
|
{form_errors}
|
||||||
|
|
||||||
|
@ -15,4 +15,4 @@
|
||||||
</fieldset>
|
</fieldset>
|
||||||
</form>
|
</form>
|
||||||
|
|
||||||
{include file="admin/_foot.tpl"}
|
{include file="_foot.tpl"}
|
||||||
|
|
|
@ -4,86 +4,90 @@
|
||||||
<h2>Année {$annee_recu} : versements par activité et tarif</h2>
|
<h2>Année {$annee_recu} : versements par activité et tarif</h2>
|
||||||
|
|
||||||
<fieldset class="noprint">
|
<fieldset class="noprint">
|
||||||
<input type="checkbox" class="check_global" id="check_global" onclick="cocherDecocherTout(check_global)" />
|
<input type="checkbox" class="check_global" id="check_global" onclick="cocherDecocherTout(check_global)" />
|
||||||
<label for="check_global">Cliquer pour cocher toutes les lignes</label>
|
<label for="check_global">Cliquer pour cocher toutes les lignes</label>
|
||||||
<button type="button" data-icon="↑" class="icn-btn" id="close_details_activite"
|
<button type="button" data-icon="↑" class="icn-btn" id="close_details_activite"
|
||||||
onclick="montrerMasquerDetails(this.id, 'details.activite', 'toutes les activités')">
|
onclick="montrerMasquerDetails(this.id, 'details.activite', 'toutes les activités')">
|
||||||
Replier toutes les activités</button>
|
Replier toutes les activités</button>
|
||||||
<button type="button" data-icon="↑" class="icn-btn" id="close_details_personne"
|
<button type="button" data-icon="↑" class="icn-btn" id="close_details_personne"
|
||||||
onclick="montrerMasquerDetails(this.id, 'details.personne', 'toutes les personnes')">
|
onclick="montrerMasquerDetails(this.id, 'details.personne', 'toutes les personnes')">
|
||||||
Replier toutes les personnes</button>
|
Replier toutes les personnes</button>
|
||||||
<br />
|
<br />
|
||||||
{button type="submit" label="Télécharger les reçus au format PDF" shape="download"
|
{button type="submit" label="Télécharger les reçus au format PDF" shape="download"
|
||||||
form="versements_activites"
|
form="versements_activites"
|
||||||
formaction="generer_recus.php?type=activite&format=pdf"
|
formaction="generer_recus.php?type=activite&format=pdf"
|
||||||
onclick="return verifierChoix(this.form)"}
|
onclick="return verifierChoix(this.form)"}
|
||||||
{button type="submit" target="_dialog" label="Imprimer les reçus" shape="print"
|
{button type="submit" target="_dialog" label="Imprimer les reçus" shape="print"
|
||||||
form="versements_activites"
|
form="versements_activites"
|
||||||
formaction="generer_recus.php?type=activite&format=print"
|
formaction="generer_recus.php?type=activite&format=print"
|
||||||
onclick="return verifierChoix(this.form)"}
|
onclick="return verifierChoix(this.form)"}
|
||||||
</fieldset>
|
</fieldset>
|
||||||
|
|
||||||
<form method="post" target="_dialog" id="versements_activites">
|
<form method="post" target="_blank" id="versements_activites">
|
||||||
|
|
||||||
{* Itération sur les versements *}
|
{* Itération sur les versements *}
|
||||||
{foreach from=$lesVersements key="rang" item="versement"}
|
{foreach from=$lesVersements key="rang" item="versement"}
|
||||||
{if $rang == 0}
|
{if $rang == 0}
|
||||||
{* premier versement *}
|
{* premier versement *}
|
||||||
<?php
|
<?php
|
||||||
$pair = true;
|
$pair = true;
|
||||||
$tarifCourant = $versement->idTarif;
|
$tarifCourant = $versement->idTarif;
|
||||||
$personneCourante = $versement->idUser;
|
$personneCourante = $versement->idUser;
|
||||||
$compteCourant = $versement->idCompte;
|
$compteCourant = $versement->idCompte;
|
||||||
?>
|
$codeCompte = $versement->codeCompte;
|
||||||
{afficher_debut_tarif versement=$versement}
|
?>
|
||||||
{afficher_debut_personne user=$personneCourante idVersement="%s_%s"|args:$tarifCourant,$personneCourante}
|
{afficher_debut_tarif versement=$versement}
|
||||||
{afficher_debut_compte idCompte=$compteCourant}
|
{afficher_debut_personne user=$personneCourante idVersement="%s_%s"|args:$tarifCourant,$personneCourante}
|
||||||
{elseif $versement.idTarif != $tarifCourant}
|
{afficher_debut_compte idCompte=$compteCourant}
|
||||||
{* changement de tarif *}
|
{elseif $versement.idTarif != $tarifCourant}
|
||||||
{fin_compte}
|
{* changement de tarif *}
|
||||||
{fin_personne}
|
{fin_compte}
|
||||||
{fin_tarif}
|
{fin_personne}
|
||||||
<?php
|
{fin_tarif}
|
||||||
$pair = true;
|
<?php
|
||||||
$tarifCourant = $versement->idTarif;
|
$pair = true;
|
||||||
$personneCourante = $versement->idUser;
|
$tarifCourant = $versement->idTarif;
|
||||||
$compteCourant = $versement->idCompte;
|
$personneCourante = $versement->idUser;
|
||||||
?>
|
$compteCourant = $versement->idCompte;
|
||||||
{afficher_debut_tarif versement=$versement}
|
$codeCompte = $versement->codeCompte;
|
||||||
{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 user=$personneCourante idVersement="%s_%s"|args:$tarifCourant,$personneCourante}
|
||||||
{* changement de personne *}
|
{afficher_debut_compte idCompte=$compteCourant}
|
||||||
{fin_compte}
|
{elseif $versement.idUser != $personneCourante}
|
||||||
{fin_personne}
|
{* changement de personne *}
|
||||||
<?php
|
{fin_compte}
|
||||||
$pair = true;
|
{fin_personne}
|
||||||
$personneCourante = $versement->idUser;
|
<?php
|
||||||
$compteCourant = $versement->idCompte;
|
$pair = true;
|
||||||
?>
|
$personneCourante = $versement->idUser;
|
||||||
{afficher_debut_personne user=$personneCourante idVersement="%s_%s"|args:$tarifCourant,$personneCourante}
|
$compteCourant = $versement->idCompte;
|
||||||
{afficher_debut_compte idCompte=$compteCourant}
|
$codeCompte = $versement->codeCompte;
|
||||||
{elseif $versement.idCompte != $compteCourant}
|
?>
|
||||||
{fin_compte}
|
{afficher_debut_personne user=$personneCourante idVersement="%s_%s"|args:$tarifCourant,$personneCourante}
|
||||||
{* changement de compte *}
|
{afficher_debut_compte idCompte=$compteCourant}
|
||||||
<?php
|
{elseif $versement.codeCompte != $codeCompte}
|
||||||
$pair = true;
|
{fin_compte}
|
||||||
$compteCourant = $versement->idCompte;
|
{* changement de compte *}
|
||||||
?>
|
<?php
|
||||||
{afficher_debut_compte idCompte=$compteCourant}
|
$pair = true;
|
||||||
{else}
|
$compteCourant = $versement->idCompte;
|
||||||
{* même personne, même compte *}
|
$codeCompte = $versement->codeCompte;
|
||||||
{/if}
|
?>
|
||||||
{afficher_versement versement=$versement idVersement="%s_%s"|args:$tarifCourant,$personneCourante rang=$rang pair=$pair}
|
{afficher_debut_compte idCompte=$compteCourant}
|
||||||
<?php $pair = ! $pair; ?>
|
{else}
|
||||||
{/foreach} {* Itération sur les versements *}
|
{* même personne, même compte *}
|
||||||
{fin_compte}
|
{/if}
|
||||||
{fin_personne}
|
{afficher_versement versement=$versement idVersement="%s_%s"|args:$tarifCourant,$personneCourante rang=$rang pair=$pair}
|
||||||
{fin_tarif}
|
<?php $pair = ! $pair; ?>
|
||||||
|
{/foreach} {* Itération sur les versements *}
|
||||||
|
{fin_compte}
|
||||||
|
{fin_personne}
|
||||||
|
{fin_tarif}
|
||||||
</form>
|
</form>
|
||||||
|
|
||||||
{* scripts divers *}
|
{* scripts divers *}
|
||||||
<script src="script.js"></script>
|
<script src="script.js"></script>
|
||||||
|
|
||||||
<!-- footer -->
|
<!-- footer -->
|
||||||
{include file="admin/_foot.tpl"}
|
{include file="_foot.tpl"}
|
||||||
|
|
|
@ -4,67 +4,71 @@
|
||||||
<h2>Année {$annee_recu} : versements par personne</h2>
|
<h2>Année {$annee_recu} : versements par personne</h2>
|
||||||
|
|
||||||
<fieldset class="noprint">
|
<fieldset class="noprint">
|
||||||
<input type="checkbox" class="check_global" id="check_global"
|
<input type="checkbox" class="check_global" id="check_global"
|
||||||
onclick="cocherDecocherToutesLesPersonnes(check_global)" />
|
onclick="cocherDecocherToutesLesPersonnes(check_global)" />
|
||||||
<label for="check_global">Cliquer pour cocher toutes les lignes</label>
|
<label for="check_global">Cliquer pour cocher toutes les lignes</label>
|
||||||
<button type="button" data-icon="↑" class="icn-btn" id="close_details_personne"
|
<button type="button" data-icon="↑" class="icn-btn" id="close_details_personne"
|
||||||
onclick="montrerMasquerDetails(this.id, 'details.personne', 'toutes les personnes')">
|
onclick="montrerMasquerDetails(this.id, 'details.personne', 'toutes les personnes')">
|
||||||
Replier toutes les personnes</button>
|
Replier toutes les personnes</button>
|
||||||
<br />
|
<br />
|
||||||
{button type="submit" label="Télécharger les reçus au format PDF" shape="download"
|
{button type="submit" label="Télécharger les reçus au format PDF" shape="download"
|
||||||
form="versements_personnes"
|
form="versements_personnes"
|
||||||
formaction="generer_recus.php?type=personne&format=pdf"
|
formaction="generer_recus.php?type=personne&format=pdf"
|
||||||
onclick="return verifierChoix(this.form)"}
|
onclick="return verifierChoix(this.form)"}
|
||||||
{button type="submit" target="_dialog" label="Imprimer les reçus" shape="print"
|
{button type="submit" label="Imprimer les reçus" shape="print"
|
||||||
form="versements_personnes"
|
form="versements_personnes"
|
||||||
formaction="generer_recus.php?type=personne&format=print"
|
formaction="generer_recus.php?type=personne&format=print"
|
||||||
onclick="return verifierChoix(this.form)"}
|
onclick="return verifierChoix(this.form)"}
|
||||||
</fieldset>
|
</fieldset>
|
||||||
|
|
||||||
<form method="post" target="_dialog" id="versements_personnes">
|
<form method="post" target="_dialog" id="versements_personnes">
|
||||||
|
|
||||||
{* Itération sur les personnes *}
|
{* Itération sur les personnes *}
|
||||||
{foreach from=$lesVersements key="rang" item="versement"}
|
{foreach from=$lesVersements key="rang" item="versement"}
|
||||||
{if $rang == 0}
|
|
||||||
{* 1ère personne *}
|
{if $rang == 0}
|
||||||
<?php
|
{* 1ère personne *}
|
||||||
$pair = true;
|
<?php
|
||||||
$personneCourante = $versement->idUser;
|
$pair = true;
|
||||||
$compteCourant = $versement->idCompte;
|
$personneCourante = $versement->idUser;
|
||||||
?>
|
$compteCourant = $versement->idCompte;
|
||||||
{afficher_debut_personne user=$personneCourante idVersement=$personneCourante}
|
$codeCompte = $versement->codeCompte;
|
||||||
{afficher_debut_compte idCompte=$compteCourant}
|
?>
|
||||||
{elseif $versement.idUser != $personneCourante}
|
{afficher_debut_personne user=$personneCourante idVersement=$personneCourante}
|
||||||
{* changement de personne *}
|
{afficher_debut_compte idCompte=$compteCourant}
|
||||||
{fin_compte}
|
{elseif $versement.idUser != $personneCourante}
|
||||||
{fin_personne}
|
{* changement de personne *}
|
||||||
<?php
|
{fin_compte}
|
||||||
$pair = true;
|
{fin_personne}
|
||||||
$personneCourante = $versement->idUser;
|
<?php
|
||||||
$compteCourant = $versement->idCompte;
|
$pair = true;
|
||||||
?>
|
$personneCourante = $versement->idUser;
|
||||||
{afficher_debut_personne user=$personneCourante idVersement=$personneCourante}
|
$compteCourant = $versement->idCompte;
|
||||||
{afficher_debut_compte idCompte=$compteCourant}
|
$codeCompte = $versement->codeCompte;
|
||||||
{elseif $versement.idCompte != $compteCourant}
|
?>
|
||||||
{fin_compte}
|
{afficher_debut_personne user=$personneCourante idVersement=$personneCourante}
|
||||||
{* changement de compte *}
|
{afficher_debut_compte idCompte=$compteCourant}
|
||||||
<?php
|
{elseif $versement.codeCompte != $codeCompte}
|
||||||
$pair = true;
|
{fin_compte}
|
||||||
$compteCourant = $versement->idCompte;
|
{* changement de compte *}
|
||||||
?>
|
<?php
|
||||||
{afficher_debut_compte idCompte=$compteCourant}
|
$pair = true;
|
||||||
{else}
|
$compteCourant = $versement->idCompte;
|
||||||
{* même personne, même compte *}
|
$codeCompte = $versement->codeCompte;
|
||||||
{/if}
|
?>
|
||||||
{afficher_versement versement=$versement idVersement=$personneCourante rang=$rang pair=$pair}
|
{afficher_debut_compte idCompte=$compteCourant}
|
||||||
<?php $pair = ! $pair; ?>
|
{else}
|
||||||
{/foreach} {* Itération sur les personnes *}
|
{* même personne, même compte *}
|
||||||
{fin_compte}
|
{/if}
|
||||||
{fin_personne}
|
{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 divers *}
|
||||||
<script src="script.js"></script>
|
<script src="script.js"></script>
|
||||||
|
|
||||||
<!-- footer -->
|
<!-- footer -->
|
||||||
{include file="admin/_foot.tpl"}
|
{include file="_foot.tpl"}
|
||||||
|
|
|
@ -1,11 +1,10 @@
|
||||||
<?php
|
<?php
|
||||||
namespace Garradin;
|
namespace Paheko;
|
||||||
use Garradin\Entities\Files\File;
|
|
||||||
|
|
||||||
// supprimer les fichiers créés
|
// supprimer les fichiers créés
|
||||||
|
|
||||||
// signature par défaut
|
// signature par défaut
|
||||||
$default_signature_file = \Garradin\Files\Files::get('skel/plugin/recusfiscaux/default_signature.png');
|
$default_signature_file = \Paheko\Files\Files::get('ext/recusfiscaux/default_signature.png');
|
||||||
if (null !== $default_signature_file) {
|
if (null !== $default_signature_file) {
|
||||||
$default_signature_file->delete();
|
$default_signature_file->delete();
|
||||||
}
|
}
|
||||||
|
@ -13,7 +12,7 @@ if (null !== $default_signature_file) {
|
||||||
// signature réelle
|
// signature réelle
|
||||||
$signature = $plugin->getConfig('signature');
|
$signature = $plugin->getConfig('signature');
|
||||||
if (null !== $signature) {
|
if (null !== $signature) {
|
||||||
$sig_file = \Garradin\Files\Files::get($signature);
|
$sig_file = \Paheko\Files\Files::get($signature);
|
||||||
if (null !== $sig_file) {
|
if (null !== $sig_file) {
|
||||||
$sig_file->delete();
|
$sig_file->delete();
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,8 +1,8 @@
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
namespace Garradin;
|
namespace Paheko;
|
||||||
|
|
||||||
use Garradin\Entities\Files\File;
|
use Paheko\Entities\Files\File;
|
||||||
|
|
||||||
$old_version = $plugin->getInfos('version');
|
$old_version = $plugin->getInfos('version');
|
||||||
|
|
||||||
|
@ -14,6 +14,6 @@ if (version_compare($old_version, '0.9', '<'))
|
||||||
$configNum->membre = false;
|
$configNum->membre = false;
|
||||||
$configNum->sequentiel = false;
|
$configNum->sequentiel = false;
|
||||||
$configNum->valeur_init = 1;
|
$configNum->valeur_init = 1;
|
||||||
$plugin->setConfig('numerotation', $configNum);
|
$plugin->setConfigProperty('numerotation', $configNum);
|
||||||
$plugin->setConfig('imprimerCourriel', false);
|
$plugin->setConfigProperty('imprimerCourriel', false);
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,120 +0,0 @@
|
||||||
<?php
|
|
||||||
|
|
||||||
namespace Garradin;
|
|
||||||
|
|
||||||
use Garradin\Files\Files;
|
|
||||||
use Garradin\Entities\Files\File;
|
|
||||||
use Garradin\Plugin\RecusFiscaux\Utils;
|
|
||||||
|
|
||||||
$session->requireAccess($session::SECTION_CONFIG, $session::ACCESS_ADMIN);
|
|
||||||
$art_sel = f('articlesCGI') ?: [];
|
|
||||||
$taux_sel = f('tauxReduction') ?: [];
|
|
||||||
$noms_sel = f('champsNom') ?: [];
|
|
||||||
|
|
||||||
// récupérer les champs des noms
|
|
||||||
$champsNom = Utils::getChampsNom($config, $plugin);
|
|
||||||
|
|
||||||
if (f('save') && $form->check('recusfiscaux_config')) {
|
|
||||||
try {
|
|
||||||
// objet de l'association
|
|
||||||
if ($plugin->getConfig('objet_asso') != trim(f('objet_asso'))) {
|
|
||||||
$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 = false; // 0
|
|
||||||
}
|
|
||||||
// et copier la nouvelle
|
|
||||||
foreach ($art_sel as $article) {
|
|
||||||
$confArticles[$article]->valeur = true; // 1
|
|
||||||
}
|
|
||||||
$plugin->setConfig("articlesCGI", $confArticles);
|
|
||||||
|
|
||||||
// taux de réduction
|
|
||||||
$confTaux = $plugin->getConfig('reduction');
|
|
||||||
// effacer l'ancienne configuration
|
|
||||||
for ($i = 0; $i < count($confTaux); ++$i) {
|
|
||||||
$confTaux[$i]->valeur = false; // 0
|
|
||||||
}
|
|
||||||
// et copier la nouvelle
|
|
||||||
foreach ($taux_sel as $taux) {
|
|
||||||
$confTaux[$taux]->valeur = true; // 1
|
|
||||||
}
|
|
||||||
$plugin->setConfig("reduction", $confTaux);
|
|
||||||
|
|
||||||
// Informations au sujet du responsable
|
|
||||||
if ($plugin->getConfig('nom_responsable') != trim(f('nom_responsable'))) {
|
|
||||||
$plugin->setConfig('nom_responsable', trim(f('nom_responsable')));
|
|
||||||
}
|
|
||||||
if ($plugin->getConfig('fonction_responsable') != trim(f('fonction_responsable'))) {
|
|
||||||
$plugin->setConfig('fonction_responsable', trim(f('fonction_responsable')));
|
|
||||||
}
|
|
||||||
// ville
|
|
||||||
if ($plugin->getConfig('ville_asso') != trim(f('ville_asso'))) {
|
|
||||||
$plugin->setConfig('ville_asso', trim(f('ville_asso')));
|
|
||||||
}
|
|
||||||
// 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 = \Garradin\Files\Files::get($plugin->getConfig('signature'));
|
|
||||||
if (null !== $sig_file) {
|
|
||||||
$sig_file->delete();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
// puis installer la nouvelle
|
|
||||||
$plugin->setConfig('signature', $_SESSION['sig_file'][0]->path);
|
|
||||||
}
|
|
||||||
|
|
||||||
// autres informations
|
|
||||||
// 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->setConfig('numerotation', $formNum);
|
|
||||||
|
|
||||||
// impression des adresses de courriel
|
|
||||||
$plugin->setConfig('imprimerCourriel', f('imprimerCourriel'));
|
|
||||||
|
|
||||||
// champs pour le nom et prénom
|
|
||||||
foreach ($champsNom as $nom => $champ) {
|
|
||||||
$champ->position = 0;
|
|
||||||
}
|
|
||||||
$i = -count($noms_sel);
|
|
||||||
foreach ($noms_sel as $nom) {
|
|
||||||
$champsNom[$nom]->position = $i++;
|
|
||||||
}
|
|
||||||
$plugin->setConfig('champsNom', $champsNom);
|
|
||||||
|
|
||||||
\Garradin\Utils::redirect(PLUGIN_URL . 'config.php?ok');
|
|
||||||
} catch (UserException $e) {
|
|
||||||
$form->addError($e->getMessage());
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
// trier les champs de nom pour l'affichage
|
|
||||||
uasort($champsNom, function ($a, $b) {
|
|
||||||
return $a->position - $b->position;
|
|
||||||
});
|
|
||||||
|
|
||||||
$tpl->assign('ok', qg('ok') !== null);
|
|
||||||
$path = qg('path') ?: File::CONTEXT_CONFIG;
|
|
||||||
$tpl->assign('default_signature', \Garradin\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('path', 'champsNom'));
|
|
||||||
$tpl->display(PLUGIN_ROOT . '/templates/config.tpl');
|
|
Loading…
Reference in New Issue