recusfiscaux/admin/versements_personnes.php
engel 8091c8b87d Remplacement PLUGIN_URL ; ajout session_start()
FossilOrigin-Name: 7fad3fa0b91ae127517c4e9d9a62a316280e17c561855a6abde8711e3cac72f2
2023-11-10 11:31:18 +00:00

35 lines
906 B
PHP

<?php
namespace Paheko;
use Paheko\Plugin\RecusFiscaux\Personne;
use Paheko\Plugin\RecusFiscaux\Utils;
// vérifier si le taux de réduction a été sélectionné au préalable
$taux = f('taux_reduction');
if (! isset($_SESSION['taux_reduction'])
&&
null === $taux)
{
\Paheko\Utils::redirect(\Paheko\Utils::plugin_url() . 'index.php');
}
if (null !== $taux) {
$_SESSION['taux_reduction'] = $taux;
}
// versements par personne
$_SESSION['lesVersements'] = Utils::getVersementsPersonnes(
$_SESSION['annee_recu'],
'like',
'7%',
$champsNom);
// préparation de l'affichage
$tpl->assign('lesVersements', $_SESSION['lesVersements']);
$tpl->assign('annee_recu', $_SESSION['annee_recu']);
$tpl->assign('plugin_css', ['style.css']);
// envoyer au template
$tpl->assign('plugin_config', $plugin->getConfig());
$tpl->display(PLUGIN_ROOT . '/templates/versements_personnes.tpl');