recusfiscaux/www/admin/versements_personnes.php
engel c1a4602684 mutualisation opérations
FossilOrigin-Name: 0924dd35726cee498510b3e8a5f23228deef491c3c25fb2fae86240461542f6b
2022-03-31 08:27:31 +00:00

20 lines
578 B
PHP

<?php
namespace Garradin;
use Garradin\Plugin\RecusFiscaux\Personne;
use Garradin\Plugin\RecusFiscaux\Utils;
$_SESSION['taux_reduction'] = $_POST['taux_reduction'];
// versements par personne
$_SESSION['lesVersements'] = Utils::getVersementsPersonnes($_SESSION['annee_recu'],
$champsNom);
// préparation de l'affichage
$tpl->assign('lesVersements', $_SESSION['lesVersements']);
$tpl->assign('plugin_css', ['style.css']);
// envoyer au template
$tpl->display(PLUGIN_ROOT . '/templates/versements_personnes.tpl');