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
|
||||
|
||||
**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
|
||||
- Créer des reçus fiscaux pour les dons des membres
|
||||
|
|
|
@ -1,8 +1,9 @@
|
|||
<?php
|
||||
|
||||
namespace Garradin;
|
||||
namespace Paheko;
|
||||
session_start();
|
||||
|
||||
use Garradin\Plugin\RecusFiscaux\Utils;
|
||||
use Paheko\Plugin\RecusFiscaux\Utils;
|
||||
|
||||
// ------------------------------------------------------------------------
|
||||
// opérations communes
|
|
@ -1,8 +1,9 @@
|
|||
<?php
|
||||
|
||||
namespace Garradin;
|
||||
namespace Paheko;
|
||||
session_start();
|
||||
|
||||
use Garradin\Plugin\RecusFiscaux\Utils;
|
||||
use Paheko\Plugin\RecusFiscaux\Utils;
|
||||
|
||||
// liste des années fiscales
|
||||
$anneeCourante = date("Y");
|
||||
|
@ -11,14 +12,13 @@ if ($anneesFiscales[0] < $anneeCourante) {
|
|||
array_unshift($anneesFiscales, $anneeCourante);
|
||||
}
|
||||
|
||||
if (f('change'))
|
||||
{
|
||||
$csrf_key = 'acc_select_year';
|
||||
$form->runIf('change', function () {
|
||||
$_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('from', qg('from'));
|
||||
|
||||
$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
|
||||
|
||||
namespace Garradin;
|
||||
namespace Paheko;
|
||||
session_start();
|
||||
|
||||
use Garradin\Files\Files;
|
||||
use Garradin\Entities\Files\File;
|
||||
use Garradin\UserTemplate\UserTemplate;
|
||||
use Paheko\Files\Files;
|
||||
use Paheko\Entities\Files\File;
|
||||
use Paheko\UserTemplate\UserTemplate;
|
||||
|
||||
use Garradin\Plugin\RecusFiscaux\Utils;
|
||||
use Garradin\Plugin\RecusFiscaux\Personne;
|
||||
use Paheko\Plugin\RecusFiscaux\Utils;
|
||||
use Paheko\Plugin\RecusFiscaux\Personne;
|
||||
|
||||
// forcer mode dialog pour ouvrir le squelette des reçus dans un nouvel onglet
|
||||
// à combiner avec target="_blank" ou target="_dialog" dans le fichier tpl
|
||||
|
@ -15,10 +16,14 @@ $_GET['_dialog'] = true;
|
|||
|
||||
// signature
|
||||
$signature =
|
||||
(null !== $plugin->getConfig('signature')) ?
|
||||
\KD2\HTTP::getScheme() . '://' . \KD2\HTTP::getHost() . WWW_URI . "/" . $plugin->getConfig('signature') :
|
||||
"";
|
||||
(null !== $config->fileURL('signature')) ?
|
||||
$config->fileURL('signature') :
|
||||
((null !== $plugin->getConfig('signature')) ?
|
||||
\KD2\HTTP::getScheme() . '://' . \KD2\HTTP::getHost() . WWW_URI . $plugin->getConfig('signature') :
|
||||
"");
|
||||
|
||||
// http://test.paheko.bzh/config/cavalier.png
|
||||
error_log('signature = ' . $signature);
|
||||
// logo
|
||||
$config = Config::getInstance();
|
||||
$logo_asso =
|
||||
|
@ -101,13 +106,17 @@ function genererRecusPDF($totalPersonnes,
|
|||
$libelles_taux
|
||||
)
|
||||
{
|
||||
// <TEST>
|
||||
$fichierHTML = sprintf('%s/print-%s.html', CACHE_ROOT, md5(random_bytes(16)));
|
||||
// </TEST>
|
||||
$listeFichiersPDF = array();
|
||||
$fmt = new \NumberFormatter('fr_FR', \NumberFormatter::SPELLOUT);
|
||||
$prefixeNum = getNumPrefixe($configNum);
|
||||
$numero_sequentiel = getNumSequentiel($configNum);
|
||||
foreach ($totalPersonnes as $idPersonne => $personne) {
|
||||
$tpl = new UserTemplate();
|
||||
$tpl->setSource(PLUGIN_ROOT . '/templates/recu.skel');
|
||||
$tpl = new UserTemplate(null);
|
||||
/* $tpl->setSource(PLUGIN_ROOT . '/templates/recu.skel'); */
|
||||
$tpl->setSourcePath(PLUGIN_ROOT . '/templates/recu.skel');
|
||||
|
||||
$tpl->assignArray(compact('signature', 'logo_asso', 'texteArticles'));
|
||||
$tpl->assign('objet_asso', $plugin->getConfig('objet_asso'));
|
||||
|
@ -167,10 +176,32 @@ 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
|
||||
genererPDF($tpl->fetch(), $personne->nomPrenom, $listeFichiersPDF);
|
||||
}
|
||||
|
||||
// afficher dans un dialog
|
||||
//marche pas
|
||||
// printf('
|
||||
// <dialog id="dialog" open="" style="" class="loaded">
|
||||
// <button class="icn-btn closeBtn" data-icon="✘" type="button">Fermer
|
||||
// </button>
|
||||
// <iframe src="%s" name="dialog" id="frameDialog" scrolling="yes" data-height="%s" style="height: %s;" width="0" height="0">
|
||||
// </iframe>
|
||||
// </dialog>
|
||||
// ', $fichierHTML, "90%", "90%");
|
||||
|
||||
// affiche une page vide
|
||||
// $link = "<script>window.open('$fichierHTML', '_blank')</script>";
|
||||
// echo $link;
|
||||
|
||||
// faire une archive zip
|
||||
$fichierZip = Utils::makeArchive(
|
||||
$listeFichiersPDF,
|
||||
|
@ -178,10 +209,10 @@ function genererRecusPDF($totalPersonnes,
|
|||
PLUGIN_ROOT . "/zip"
|
||||
);
|
||||
|
||||
//supprimer les fichiers pdf (utile ?)
|
||||
foreach ($listeFichiersPDF as $f) {
|
||||
// Utils::safe_unlink($f);
|
||||
}
|
||||
//supprimer les fichiers pdf
|
||||
// foreach ($listeFichiersPDF as $f) {
|
||||
// \Paheko\Utils::safe_unlink($f);
|
||||
// }
|
||||
} // genererRecusPDF
|
||||
|
||||
function generererRecusHTML($tpl,
|
||||
|
@ -221,8 +252,8 @@ function generererRecusHTML($tpl,
|
|||
$tpl->assign('prefixeNum', getNumPrefixe($configNum));
|
||||
$tpl->assign('membre', $configNum->membre);
|
||||
$tpl->assign('numero_sequentiel', getNumSequentiel($configNum));
|
||||
$tpl->assign('nom_asso', Config::getInstance()->get('nom_asso'));
|
||||
$tpl->assign('adresse_asso', Config::getInstance()->get('adresse_asso'));
|
||||
$tpl->assign('org_name', Config::getInstance()->get('org_name'));
|
||||
$tpl->assign('org_address', Config::getInstance()->get('org_address'));
|
||||
$tpl->assign('objet_asso', $plugin->getConfig('objet_asso'));
|
||||
$tpl->assign('courriel', $plugin->getConfig('imprimerCourriel'));
|
||||
$tpl->assign('complements', mentionsComplémentaires());
|
||||
|
@ -360,7 +391,7 @@ function cumulerVersementsTarif($versements)
|
|||
function genererPDF($docHTML, $nomPersonne, &$listeFichiersPDF)
|
||||
{
|
||||
// fabriquer le fichier PDF
|
||||
$nomPDF = \Garradin\Utils::filePDF($docHTML);
|
||||
$nomPDF = \Paheko\Utils::filePDF($docHTML);
|
||||
// changer le nom du fichier
|
||||
$nom = str_replace(' ', '_', $nomPersonne);
|
||||
$nom = str_replace("'", "", $nom);
|
|
@ -1,8 +1,9 @@
|
|||
<?php
|
||||
|
||||
namespace Garradin;
|
||||
namespace Paheko;
|
||||
session_start();
|
||||
|
||||
use Garradin\Plugin\RecusFiscaux\Utils;
|
||||
use Paheko\Plugin\RecusFiscaux\Utils;
|
||||
|
||||
// mettre à jour le plugin si besoin
|
||||
if ($plugin->needUpgrade()) {
|
||||
|
@ -68,7 +69,7 @@ $tpl->assign('plugin_config', $plugin->getConfig());
|
|||
$tpl->assign('nbTaux', $nbTaux);
|
||||
$tpl->assign('nbChamps', $nbChamps);
|
||||
$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
|
||||
$tpl->display(PLUGIN_ROOT . '/templates/index.tpl');
|
|
@ -95,3 +95,9 @@ span.titre, span.libelle
|
|||
{
|
||||
display : inline;
|
||||
}
|
||||
|
||||
/* Ne pas imprimer le bandeau des boutons du profiler */
|
||||
#__profiler
|
||||
{
|
||||
display: none;
|
||||
}
|
|
@ -109,6 +109,11 @@ div.actions
|
|||
display : inline;
|
||||
}
|
||||
|
||||
a.icn-btn {
|
||||
font-family: "paheko", sans-serif;
|
||||
font-size : 1.2em;
|
||||
}
|
||||
|
||||
dl.config
|
||||
{
|
||||
padding-bottom : 1ex;
|
|
@ -1,20 +1,23 @@
|
|||
<?php
|
||||
namespace Garradin;
|
||||
namespace Paheko;
|
||||
session_start();
|
||||
|
||||
use Garradin\Entities\Files\File;
|
||||
use Garradin\Files\Files;
|
||||
use Paheko\Entities\Files\File;
|
||||
use Paheko\Files\Files;
|
||||
|
||||
$parent = qg('p');
|
||||
|
||||
/*
|
||||
if (!File::checkCreateAccess($parent, $session)) {
|
||||
throw new UserException('Vous n\'avez pas le droit d\'ajouter de fichier.');
|
||||
}
|
||||
// checkCreateAccess n'existe plus...
|
||||
*/
|
||||
|
||||
$csrf_key = 'upload_file_' . md5($parent);
|
||||
|
||||
$form->runIf('upload', function () use ($parent) {
|
||||
$_SESSION['sig_file'] = File::uploadMultiple($parent, 'file');
|
||||
}, $csrf_key, PLUGIN_ROOT . '/www/admin/config.php');
|
||||
$_SESSION['sig_file'] = \Paheko\Files\Files::uploadMultiple($parent, 'file');
|
||||
}, $csrf_key, PLUGIN_ROOT . '/admin/config.php');
|
||||
|
||||
$tpl->assign(compact('parent', 'csrf_key'));
|
||||
|
|
@ -1,9 +1,9 @@
|
|||
<?php
|
||||
|
||||
namespace Garradin;
|
||||
namespace Paheko;
|
||||
|
||||
use Garradin\Plugin\RecusFiscaux\Personne;
|
||||
use Garradin\Plugin\RecusFiscaux\Utils;
|
||||
use Paheko\Plugin\RecusFiscaux\Personne;
|
||||
use Paheko\Plugin\RecusFiscaux\Utils;
|
||||
|
||||
// ------------------------------------------------------------
|
||||
// récupérer les infos du formulaire
|
||||
|
@ -16,7 +16,7 @@ if (! isset($_SESSION['tauxSelectionnes'])
|
|||
&&
|
||||
null === f('comptes'))
|
||||
{
|
||||
\Garradin\Utils::redirect(PLUGIN_URL . 'index.php');
|
||||
\Paheko\Utils::redirect(\Paheko\Utils::plugin_url() . 'index.php');
|
||||
}
|
||||
|
||||
// tarifs sélectionnés
|
||||
|
@ -25,10 +25,11 @@ if (null !== f('tarifs')) {
|
|||
} else if (! isset($_SESSION['tauxSelectionnes'])) {
|
||||
$tarifsSelectionnes = [];
|
||||
}
|
||||
|
||||
// error_log("\ntarifsSelectionnes=" . print_r($tarifsSelectionnes, true));
|
||||
// comptes sélectionnés
|
||||
if (null !== f('comptes')) {
|
||||
$_SESSION['comptesSelectionnes'] = f('comptes');
|
||||
// error_log("\ncomptesSelectionnes=" . print_r($_SESSION['comptesSelectionnes'], true));
|
||||
} /*
|
||||
else if (! isset($_SESSION['tauxSelectionnes'])) {
|
||||
$_SESSION['comptesSelectionnes'] = [];
|
||||
|
@ -71,6 +72,7 @@ if (count($lesTarifs) != 0)
|
|||
$lesTarifs,
|
||||
$lesComptes,
|
||||
$champsNom);
|
||||
// error_log("lesVersements=" . print_r($_SESSION['lesVersements'], true));
|
||||
}
|
||||
|
||||
// ajouter les versements sans tarif (tri par nom, compte, date)
|
||||
|
@ -84,6 +86,8 @@ if (isset($_SESSION['comptesSelectionnes']))
|
|||
$_SESSION['lesVersements'][] = $versement;
|
||||
}
|
||||
}
|
||||
//error_log("lesVersements=" . print_r($_SESSION['lesVersements'], true));
|
||||
|
||||
// préparation de l'affichage
|
||||
$tpl->assign('lesVersements', $_SESSION['lesVersements']);
|
||||
$tpl->assign('annee_recu', $_SESSION['annee_recu']);
|
|
@ -1,9 +1,9 @@
|
|||
<?php
|
||||
|
||||
namespace Garradin;
|
||||
namespace Paheko;
|
||||
|
||||
use Garradin\Plugin\RecusFiscaux\Personne;
|
||||
use Garradin\Plugin\RecusFiscaux\Utils;
|
||||
use Paheko\Plugin\RecusFiscaux\Personne;
|
||||
use Paheko\Plugin\RecusFiscaux\Utils;
|
||||
|
||||
// vérifier si le taux de réduction a été sélectionné au préalable
|
||||
$taux = f('taux_reduction');
|
||||
|
@ -11,7 +11,7 @@ if (! isset($_SESSION['taux_reduction'])
|
|||
&&
|
||||
null === $taux)
|
||||
{
|
||||
\Garradin\Utils::redirect(PLUGIN_URL . 'index.php');
|
||||
\Paheko\Utils::redirect(\Paheko\Utils::plugin_url() . 'index.php');
|
||||
}
|
||||
if (null !== $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
|
||||
namespace Garradin;
|
||||
use Garradin\Entities\Files\File;
|
||||
namespace Paheko;
|
||||
|
||||
use Paheko\Files\Files;
|
||||
|
||||
$nom_plugin = $plugin->get('name');
|
||||
const SIGNATURE_DEFAUT = 'default_signature.png';
|
||||
const CONFIG_INIT = 'config.json';
|
||||
|
||||
// configuration initiale
|
||||
$config_init = json_decode(file_get_contents(Plugins::getPath($nom_plugin) . '/' . CONFIG_INIT),
|
||||
true);
|
||||
|
||||
// enregistrer dans la config du plugin
|
||||
foreach ($config_init as $cle => $valeur) {
|
||||
$plugin->setConfigProperty($cle, $valeur);
|
||||
}
|
||||
$plugin->save();
|
||||
|
||||
// « signature » par défaut à remplacer (voir l'onglet de configuration)
|
||||
$path = __DIR__ . '/data/default_signature.png';
|
||||
$default_signature_file = (new File)->createAndStore('skel/plugin/recusfiscaux',
|
||||
'default_signature.png',
|
||||
$path,
|
||||
null);
|
||||
$path = __DIR__ . '/data/' . SIGNATURE_DEFAUT;
|
||||
$default_signature_file = Files::createFromPath('ext/' . $nom_plugin . '/' . SIGNATURE_DEFAUT,
|
||||
$path);
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
<?php
|
||||
|
||||
namespace Garradin\Plugin\RecusFiscaux;
|
||||
namespace Paheko\Plugin\RecusFiscaux;
|
||||
|
||||
/**
|
||||
* rassembler les infos d'une personne
|
||||
|
|
|
@ -1,8 +1,9 @@
|
|||
<?php
|
||||
|
||||
namespace Garradin\Plugin\RecusFiscaux;
|
||||
namespace Paheko\Plugin\RecusFiscaux;
|
||||
|
||||
use Garradin\DB;
|
||||
use Paheko\DB;
|
||||
use Paheko\Users\DynamicFields;
|
||||
use KD2\ZipWriter;
|
||||
|
||||
class Utils
|
||||
|
@ -51,23 +52,26 @@ class Utils
|
|||
$sql = sprintf(
|
||||
'SELECT
|
||||
acc_accounts.id,
|
||||
acc_years.label,
|
||||
acc_accounts.code as codeCompte,
|
||||
acc_accounts.label as nomCompte
|
||||
FROM acc_transactions_users
|
||||
INNER JOIN membres
|
||||
ON acc_transactions_users.id_user = membres.id
|
||||
INNER JOIN users
|
||||
ON acc_transactions_users.id_user = users.id
|
||||
INNER JOIN acc_transactions
|
||||
ON acc_transactions_users.id_transaction = acc_transactions.id
|
||||
INNER JOIN acc_transactions_lines
|
||||
ON acc_transactions_lines.id_transaction = acc_transactions.id
|
||||
INNER JOIN acc_accounts
|
||||
ON acc_transactions_lines.id_account = acc_accounts.id
|
||||
INNER JOIN acc_years
|
||||
ON acc_transactions.id_year = acc_years.id
|
||||
WHERE
|
||||
(strftime("%%Y", acc_transactions.date) = "%d"
|
||||
AND
|
||||
acc_accounts.%s
|
||||
)
|
||||
GROUP by acc_accounts.code
|
||||
GROUP by acc_accounts.id
|
||||
ORDER by acc_accounts.code',
|
||||
$annee,
|
||||
$db->where('code', $op, $comptes)
|
||||
|
@ -153,14 +157,14 @@ class Utils
|
|||
$tri = Utils::combinerTri($champsNom);
|
||||
$sql = sprintf(
|
||||
'SELECT
|
||||
membres.id as idUser,
|
||||
users.id as idUser,
|
||||
acc_accounts.id as idCompte,
|
||||
acc_accounts.code as codeCompte,
|
||||
acc_transactions_lines.credit as versement,
|
||||
acc_transactions.date
|
||||
FROM acc_transactions_users
|
||||
INNER JOIN membres
|
||||
ON acc_transactions_users.id_user = membres.id
|
||||
INNER JOIN users
|
||||
ON acc_transactions_users.id_user = users.id
|
||||
INNER JOIN acc_transactions
|
||||
ON acc_transactions_users.id_transaction = acc_transactions.id
|
||||
INNER JOIN acc_transactions_lines
|
||||
|
@ -202,12 +206,12 @@ class Utils
|
|||
services_fees.id as idTarif,
|
||||
acc_accounts.id as idCompte,
|
||||
acc_accounts.code as codeCompte,
|
||||
membres.id as idUser,
|
||||
users.id as idUser,
|
||||
acc_transactions_lines.credit as versement,
|
||||
acc_transactions.date
|
||||
FROM acc_transactions_users
|
||||
INNER JOIN membres
|
||||
ON acc_transactions_users.id_user = membres.id
|
||||
INNER JOIN users
|
||||
ON acc_transactions_users.id_user = users.id
|
||||
INNER JOIN acc_transactions
|
||||
ON acc_transactions_users.id_transaction = acc_transactions.id
|
||||
INNER JOIN services_users
|
||||
|
@ -229,6 +233,7 @@ class Utils
|
|||
$condition,
|
||||
$tri
|
||||
);
|
||||
// error_log("\ngetVersementsTarifsComptes : sql=" . $sql);
|
||||
return $db->get($sql);
|
||||
}
|
||||
|
||||
|
@ -251,12 +256,12 @@ class Utils
|
|||
0 as idTarif,
|
||||
acc_accounts.id as idCompte,
|
||||
acc_accounts.code as codeCompte,
|
||||
membres.id as idUser,
|
||||
users.id as idUser,
|
||||
acc_transactions_lines.credit as versement,
|
||||
acc_transactions.date
|
||||
FROM acc_transactions_users
|
||||
INNER JOIN membres
|
||||
ON acc_transactions_users.id_user = membres.id
|
||||
INNER JOIN users
|
||||
ON acc_transactions_users.id_user = users.id
|
||||
INNER JOIN acc_transactions
|
||||
ON acc_transactions_users.id_transaction = acc_transactions.id
|
||||
INNER JOIN acc_transactions_lines
|
||||
|
@ -291,17 +296,17 @@ class Utils
|
|||
$tri = Utils::combinerTri($champsNom);
|
||||
$sql = sprintf(
|
||||
'SELECT
|
||||
membres.id as idUser,
|
||||
membres.numero,
|
||||
membres.email,
|
||||
users.id as idUser,
|
||||
users.numero,
|
||||
users.email,
|
||||
row_number() over(order by %s) as rang,
|
||||
%s as nom,
|
||||
membres.adresse as adresse,
|
||||
membres.code_postal as codePostal,
|
||||
membres.ville as ville
|
||||
users.adresse as adresse,
|
||||
users.code_postal as codePostal,
|
||||
users.ville as ville
|
||||
FROM
|
||||
acc_transactions_users,
|
||||
membres,
|
||||
users,
|
||||
acc_transactions
|
||||
INNER JOIN acc_transactions_lines
|
||||
ON acc_transactions_lines.id_transaction = acc_transactions.id
|
||||
|
@ -310,9 +315,9 @@ class Utils
|
|||
AND
|
||||
acc_transactions_users.id_transaction = acc_transactions.id
|
||||
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
|
||||
',
|
||||
$tri,
|
||||
|
@ -342,10 +347,10 @@ class Utils
|
|||
private static function combinerChamps($champs)
|
||||
{
|
||||
$op = ' || " " || ';
|
||||
$result = 'ifnull(membres.' . $champs[0] . ', "")';
|
||||
$result = 'ifnull(users.' . $champs[0] . ', "")';
|
||||
for ($i = 1; $i < count($champs); ++$i)
|
||||
{
|
||||
$result .= $op . 'ifnull(membres.' . $champs[$i] . ', "")';
|
||||
$result .= $op . 'ifnull(users.' . $champs[$i] . ', "")';
|
||||
}
|
||||
return 'trim(' . $result . ')';
|
||||
}
|
||||
|
@ -357,10 +362,10 @@ class Utils
|
|||
*/
|
||||
private static function combinerTri(array $champs) : string
|
||||
{
|
||||
$tri = 'membres.' . $champs[0];
|
||||
$tri = 'users.' . $champs[0];
|
||||
for ($i = 1; $i < count($champs); ++$i)
|
||||
{
|
||||
$tri .= ', membres.' . $champs[$i];
|
||||
$tri .= ', users.' . $champs[$i];
|
||||
}
|
||||
return $tri;
|
||||
}
|
||||
|
@ -417,7 +422,7 @@ class Utils
|
|||
/**
|
||||
* récupérer dans la config du plugin les champs des membres
|
||||
* utilisés pour le nom et le prénom ; ajouter/supprimer les
|
||||
* modifications par rapport à la config garradin
|
||||
* modifications par rapport à la config paheko
|
||||
* @return array tableau des champs : clé = nom, valeur = { titre, position }
|
||||
*/
|
||||
public static function getChampsNom($config, $plugin) : array
|
||||
|
@ -426,11 +431,11 @@ class Utils
|
|||
// pour le nom et le prénom (le tableau est vide si pas mémorisé)
|
||||
$champsNom = (array) $plugin->getConfig('champsNom');
|
||||
|
||||
// récupérer dans la config Garradin les champs des membres
|
||||
// utilisés pour le nom et le préno
|
||||
$champsGarradin = $config->get('champs_membres')->listAssocNames();
|
||||
// récupérer dans la config Paheko les champs des membres
|
||||
// utilisés pour le nom et le prénom
|
||||
$champsPaheko = DynamicFields::getInstance()->listAssocNames();
|
||||
|
||||
foreach ($champsGarradin as $name => $title)
|
||||
foreach ($champsPaheko as $name => $title)
|
||||
{
|
||||
if (stristr($title, 'nom'))
|
||||
{
|
||||
|
@ -447,17 +452,17 @@ class Utils
|
|||
}
|
||||
}
|
||||
// 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)
|
||||
{
|
||||
if (! array_key_exists($nom, $champsGarradin))
|
||||
if (! array_key_exists($nom, $champsPaheko))
|
||||
{
|
||||
// absent => le supprimer
|
||||
unset($champsNom[$nom]);
|
||||
}
|
||||
}
|
||||
// mettre à jour la config du plugin
|
||||
$plugin->setConfig('champsNom', $champsNom);
|
||||
$plugin->setConfigProperty('champsNom', $champsNom);
|
||||
return $champsNom;
|
||||
}
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
<?php
|
||||
|
||||
namespace Garradin\Plugin\RecusFiscaux;
|
||||
namespace Paheko\Plugin\RecusFiscaux;
|
||||
|
||||
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 -->
|
||||
{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 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">
|
||||
<fieldset>
|
||||
|
@ -11,10 +11,9 @@
|
|||
</select>
|
||||
</fieldset>
|
||||
<p class="submit">
|
||||
{csrf_field key="acc_select_year"}
|
||||
<input type="hidden" name="from" value="{$from}" />
|
||||
{csrf_field key=$csrf_key}
|
||||
{button type="submit" name="change" label="Changer" shape="right" class="main"}
|
||||
</p>
|
||||
</form>
|
||||
|
||||
{include file="admin/_foot.tpl"}
|
||||
{include file="_foot.tpl"}
|
|
@ -1,16 +1,16 @@
|
|||
<!-- nav bar -->
|
||||
{include file="%s/templates/_nav.tpl"|args:$plugin_root current_nav="config"}
|
||||
|
||||
{form_errors}
|
||||
|
||||
<h2>Configuration</h2>
|
||||
|
||||
{if $ok && !$form->hasErrors()}
|
||||
{if isset($_GET['ok'])}
|
||||
<p class="block confirm">
|
||||
La configuration a bien été enregistrée.
|
||||
</p>
|
||||
{/if}
|
||||
|
||||
{form_errors}
|
||||
|
||||
<form method="post" action="{$self_url}" enctype="multipart/form-data">
|
||||
<fieldset>
|
||||
<dl class="config">
|
||||
|
@ -24,17 +24,20 @@
|
|||
l'association)</b>
|
||||
</dt>
|
||||
<div id="articles_cgi">
|
||||
|
||||
{foreach from=$plugin_config->articlesCGI key="key" item="article"}
|
||||
{*
|
||||
À VÉRIFIER : {input : checked ne fonctionne pas si l'attribut name est un tableau...
|
||||
{input type="checkbox" name="articlesCGI[]" value=$key label=$article.titre}
|
||||
*}
|
||||
|
||||
<div class="article">
|
||||
<input type="checkbox" name="articlesCGI[]" id="article_{$key}" value="{$key}" class="choix"
|
||||
{if $article.valeur == 1}checked{/if} />
|
||||
<label for="article_{$key}">Article {$article.titre}</label>
|
||||
</div>
|
||||
{/foreach}
|
||||
|
||||
</div>
|
||||
</dl>
|
||||
|
||||
|
@ -45,12 +48,14 @@
|
|||
l'association)</b>
|
||||
</dt>
|
||||
<div id="taux_reduction">
|
||||
|
||||
{foreach from=$plugin_config->reduction key="key" item="taux"}
|
||||
<input type="checkbox" name="tauxReduction[]" id="taux_{$key}" value="{$key}" class="choix"
|
||||
{if $taux.valeur == 1}checked{/if} />
|
||||
<label for="taux_{$key}">Taux {$taux.taux}, ligne {$taux.ligne} de la déclaration
|
||||
{if $taux.remarque !== ""}({$taux.remarque})</label>{/if}
|
||||
{/foreach}
|
||||
|
||||
</div>
|
||||
</dl>
|
||||
</fieldset>
|
||||
|
@ -175,7 +180,7 @@
|
|||
<h3 class="warning">N'oubliez pas d'enregistrer, sinon les modifications ne seront pas prises en compte !</h3>
|
||||
|
||||
<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)"}
|
||||
</p>
|
||||
</form>
|
||||
|
@ -186,7 +191,7 @@
|
|||
var lesDivs = document.querySelectorAll('.actions');
|
||||
for (i = 0; i < lesDivs.length; ++i) {
|
||||
var up = document.createElement('a');
|
||||
up.className = 'icn up';
|
||||
up.className = 'up icn-btn';
|
||||
up.innerHTML = '↑';
|
||||
up.title = 'Déplacer vers le haut';
|
||||
up.onclick = function(e) {
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
<nav class="acc-year">
|
||||
<h4>Année fiscale sélectionnée :</h4>
|
||||
<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>
|
||||
|
||||
<form id="formulaire_saisie" method="post" action="action.php">
|
||||
|
@ -118,7 +118,8 @@
|
|||
label="Activité « %s » - tarif « %s » ;"|args:$activite.label,$tarif.label
|
||||
}
|
||||
{/if}
|
||||
<span>compte : {$elem.codeCompte} ({$compte->nomCompte})</span>
|
||||
<span>compte : {$elem.codeCompte} - {$compte->nomCompte}</span>
|
||||
<span> ({$compte.label})</span>
|
||||
</div>
|
||||
<ul class="reduction">
|
||||
{foreach from=$plugin_config->reduction item="reduc"}
|
||||
|
@ -153,7 +154,8 @@
|
|||
label="Versements non rattachés à une activité ;"
|
||||
}
|
||||
<?php $compte = $lesComptes[$idCompte]; ?>
|
||||
<span>compte : {$compte.codeCompte} ({$compte.nomCompte})</span>
|
||||
<span>compte : {$compte.codeCompte} - {$compte.nomCompte}</span>
|
||||
<span> ({$compte.label})</span>
|
||||
</div>
|
||||
<ul class="reduction">
|
||||
{foreach from=$plugin_config->reduction item="reduc"}
|
||||
|
@ -212,4 +214,4 @@
|
|||
{/literal}
|
||||
|
||||
<!-- footer -->
|
||||
{include file="admin/_foot.tpl"}
|
||||
{include file="_foot.tpl"}
|
||||
|
|
|
@ -79,8 +79,8 @@
|
|||
|
||||
<div class="cartouche" id="beneficiaire">
|
||||
<h3 class="rubrique">Bénéficiaire des versements</h3>
|
||||
<p class="important">Association « {{$config.nom_asso}} »<br />
|
||||
{{$config.adresse_asso}}<br />
|
||||
<p class="important">Association « {{$config.org_name}} »<br />
|
||||
{{$config.org_address}}<br />
|
||||
<span class="titre">Objet : </span><span class="libelle">{{$objet_asso}}</span>
|
||||
</p>
|
||||
</div>
|
||||
|
|
|
@ -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
|
||||
$fmt = new \NumberFormatter('fr_FR', \NumberFormatter::SPELLOUT);
|
||||
|
@ -27,8 +27,8 @@
|
|||
|
||||
<div class="cartouche" id="beneficiaire">
|
||||
<h3 class="rubrique">Bénéficiaire des versements</h3>
|
||||
<p class="important">Association « {$nom_asso} »<br />
|
||||
{$adresse_asso}<br />
|
||||
<p class="important">Association « {$org_name} »<br />
|
||||
{$org_address}<br />
|
||||
<span class="titre">Objet : </span><span class="libelle">{$objet_asso}</span>
|
||||
</p>
|
||||
</div>
|
||||
|
@ -133,4 +133,4 @@ document.addEventListener('DOMContentLoaded',
|
|||
{/literal}
|
||||
|
||||
<!-- 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}
|
||||
|
||||
|
@ -15,4 +15,4 @@
|
|||
</fieldset>
|
||||
</form>
|
||||
|
||||
{include file="admin/_foot.tpl"}
|
||||
{include file="_foot.tpl"}
|
||||
|
|
|
@ -23,7 +23,7 @@
|
|||
onclick="return verifierChoix(this.form)"}
|
||||
</fieldset>
|
||||
|
||||
<form method="post" target="_dialog" id="versements_activites">
|
||||
<form method="post" target="_blank" id="versements_activites">
|
||||
|
||||
{* Itération sur les versements *}
|
||||
{foreach from=$lesVersements key="rang" item="versement"}
|
||||
|
@ -34,6 +34,7 @@
|
|||
$tarifCourant = $versement->idTarif;
|
||||
$personneCourante = $versement->idUser;
|
||||
$compteCourant = $versement->idCompte;
|
||||
$codeCompte = $versement->codeCompte;
|
||||
?>
|
||||
{afficher_debut_tarif versement=$versement}
|
||||
{afficher_debut_personne user=$personneCourante idVersement="%s_%s"|args:$tarifCourant,$personneCourante}
|
||||
|
@ -48,6 +49,7 @@
|
|||
$tarifCourant = $versement->idTarif;
|
||||
$personneCourante = $versement->idUser;
|
||||
$compteCourant = $versement->idCompte;
|
||||
$codeCompte = $versement->codeCompte;
|
||||
?>
|
||||
{afficher_debut_tarif versement=$versement}
|
||||
{afficher_debut_personne user=$personneCourante idVersement="%s_%s"|args:$tarifCourant,$personneCourante}
|
||||
|
@ -60,15 +62,17 @@
|
|||
$pair = true;
|
||||
$personneCourante = $versement->idUser;
|
||||
$compteCourant = $versement->idCompte;
|
||||
$codeCompte = $versement->codeCompte;
|
||||
?>
|
||||
{afficher_debut_personne user=$personneCourante idVersement="%s_%s"|args:$tarifCourant,$personneCourante}
|
||||
{afficher_debut_compte idCompte=$compteCourant}
|
||||
{elseif $versement.idCompte != $compteCourant}
|
||||
{elseif $versement.codeCompte != $codeCompte}
|
||||
{fin_compte}
|
||||
{* changement de compte *}
|
||||
<?php
|
||||
$pair = true;
|
||||
$compteCourant = $versement->idCompte;
|
||||
$codeCompte = $versement->codeCompte;
|
||||
?>
|
||||
{afficher_debut_compte idCompte=$compteCourant}
|
||||
{else}
|
||||
|
@ -86,4 +90,4 @@
|
|||
<script src="script.js"></script>
|
||||
|
||||
<!-- footer -->
|
||||
{include file="admin/_foot.tpl"}
|
||||
{include file="_foot.tpl"}
|
||||
|
|
|
@ -15,7 +15,7 @@
|
|||
form="versements_personnes"
|
||||
formaction="generer_recus.php?type=personne&format=pdf"
|
||||
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"
|
||||
formaction="generer_recus.php?type=personne&format=print"
|
||||
onclick="return verifierChoix(this.form)"}
|
||||
|
@ -25,12 +25,14 @@
|
|||
|
||||
{* Itération sur les personnes *}
|
||||
{foreach from=$lesVersements key="rang" item="versement"}
|
||||
|
||||
{if $rang == 0}
|
||||
{* 1ère personne *}
|
||||
<?php
|
||||
$pair = true;
|
||||
$personneCourante = $versement->idUser;
|
||||
$compteCourant = $versement->idCompte;
|
||||
$codeCompte = $versement->codeCompte;
|
||||
?>
|
||||
{afficher_debut_personne user=$personneCourante idVersement=$personneCourante}
|
||||
{afficher_debut_compte idCompte=$compteCourant}
|
||||
|
@ -42,15 +44,17 @@
|
|||
$pair = true;
|
||||
$personneCourante = $versement->idUser;
|
||||
$compteCourant = $versement->idCompte;
|
||||
$codeCompte = $versement->codeCompte;
|
||||
?>
|
||||
{afficher_debut_personne user=$personneCourante idVersement=$personneCourante}
|
||||
{afficher_debut_compte idCompte=$compteCourant}
|
||||
{elseif $versement.idCompte != $compteCourant}
|
||||
{elseif $versement.codeCompte != $codeCompte}
|
||||
{fin_compte}
|
||||
{* changement de compte *}
|
||||
<?php
|
||||
$pair = true;
|
||||
$compteCourant = $versement->idCompte;
|
||||
$codeCompte = $versement->codeCompte;
|
||||
?>
|
||||
{afficher_debut_compte idCompte=$compteCourant}
|
||||
{else}
|
||||
|
@ -67,4 +71,4 @@
|
|||
<script src="script.js"></script>
|
||||
|
||||
<!-- footer -->
|
||||
{include file="admin/_foot.tpl"}
|
||||
{include file="_foot.tpl"}
|
||||
|
|
|
@ -1,11 +1,10 @@
|
|||
<?php
|
||||
namespace Garradin;
|
||||
use Garradin\Entities\Files\File;
|
||||
namespace Paheko;
|
||||
|
||||
// supprimer les fichiers créés
|
||||
|
||||
// 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) {
|
||||
$default_signature_file->delete();
|
||||
}
|
||||
|
@ -13,7 +12,7 @@ if (null !== $default_signature_file) {
|
|||
// signature réelle
|
||||
$signature = $plugin->getConfig('signature');
|
||||
if (null !== $signature) {
|
||||
$sig_file = \Garradin\Files\Files::get($signature);
|
||||
$sig_file = \Paheko\Files\Files::get($signature);
|
||||
if (null !== $sig_file) {
|
||||
$sig_file->delete();
|
||||
}
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
<?php
|
||||
|
||||
namespace Garradin;
|
||||
namespace Paheko;
|
||||
|
||||
use Garradin\Entities\Files\File;
|
||||
use Paheko\Entities\Files\File;
|
||||
|
||||
$old_version = $plugin->getInfos('version');
|
||||
|
||||
|
@ -14,6 +14,6 @@ if (version_compare($old_version, '0.9', '<'))
|
|||
$configNum->membre = false;
|
||||
$configNum->sequentiel = false;
|
||||
$configNum->valeur_init = 1;
|
||||
$plugin->setConfig('numerotation', $configNum);
|
||||
$plugin->setConfig('imprimerCourriel', false);
|
||||
$plugin->setConfigProperty('numerotation', $configNum);
|
||||
$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