recusfiscaux/admin/versements_personnes.php
engel b2885f3c01 Changement namespace Garradin => Paheko
FossilOrigin-Name: 05bd9b85d91af38c15952ea00891080a67e21c8e00ce3acf16c7b8263dc55d2c
2023-09-28 11:20:36 +00:00

35 lines
889 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(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');