2022-01-29 15:03:41 +01:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace Garradin;
|
|
|
|
|
|
|
|
use Garradin\Plugin\RecusFiscaux\Utils;
|
|
|
|
|
2022-02-07 15:13:22 +01:00
|
|
|
// vérifier si l'année a bien été sélectionnée au préalable
|
2022-02-07 14:32:17 +01:00
|
|
|
$_SESSION['annee_recu'] = f('annee_recu');
|
2022-02-07 15:13:22 +01:00
|
|
|
// error_log("vp.php::annee_recu = (" .$_SESSION['annee_recu'] . ")");
|
|
|
|
if (! isset($_SESSION['annee_recu']) || $_SESSION['annee_recu'] == "") {
|
|
|
|
\Garradin\Utils::redirect(PLUGIN_URL . 'index.php');
|
|
|
|
}
|
|
|
|
// liste des versements totaux par personne
|
2022-01-29 15:03:41 +01:00
|
|
|
$_SESSION['lesVersementsTotaux'] = Utils::getVersementsTotaux($_SESSION['annee_recu']);
|
|
|
|
|
|
|
|
// préparation de l'affichage
|
|
|
|
$tpl->assign('lesVersementsTotaux', $_SESSION['lesVersementsTotaux']);
|
|
|
|
$tpl->assign('plugin_css', ['style.css']);
|
|
|
|
|
|
|
|
// envoyer au template
|
|
|
|
$tpl->display(PLUGIN_ROOT . '/templates/versements_personnes.tpl');
|