ajout vérification sélection année reçu
FossilOrigin-Name: 2ce14b6d56ad130d5ee4521f616d694a5855aaf638aac97d80aed46302c2fa38
This commit is contained in:
parent
3e02319484
commit
a787c1dacb
@ -3,7 +3,7 @@
|
|||||||
namespace Garradin;
|
namespace Garradin;
|
||||||
|
|
||||||
$session->requireAccess($session::SECTION_CONFIG, $session::ACCESS_ADMIN);
|
$session->requireAccess($session::SECTION_CONFIG, $session::ACCESS_ADMIN);
|
||||||
$art_sel=f('articlesCGI');
|
$art_sel=f('articlesCGI') ? : [];
|
||||||
error_log("art sel=" . print_r($art_sel, true) . "\n");
|
error_log("art sel=" . print_r($art_sel, true) . "\n");
|
||||||
if (f('save') && $form->check('recusfiscaux_config'))
|
if (f('save') && $form->check('recusfiscaux_config'))
|
||||||
{
|
{
|
||||||
|
@ -4,9 +4,14 @@ namespace Garradin;
|
|||||||
|
|
||||||
use Garradin\Plugin\RecusFiscaux\Utils;
|
use Garradin\Plugin\RecusFiscaux\Utils;
|
||||||
|
|
||||||
// récupérer les infos du formulaire
|
// vérifier si l'année a bien été sélectionnée au préalable
|
||||||
$lesTarifs = f('tarifs');
|
|
||||||
$_SESSION['annee_recu'] = f('annee_recu');
|
$_SESSION['annee_recu'] = f('annee_recu');
|
||||||
|
// error_log("va.php::annee_recu = (" .$_SESSION['annee_recu'] . ")");
|
||||||
|
if (! isset($_SESSION['annee_recu']) || $_SESSION['annee_recu'] == "") {
|
||||||
|
\Garradin\Utils::redirect(PLUGIN_URL . 'index.php');
|
||||||
|
}
|
||||||
|
// récupérer les infos du formulaire
|
||||||
|
$lesTarifs = f('tarifs') ?: [];
|
||||||
|
|
||||||
// taux de réduction associés
|
// taux de réduction associés
|
||||||
$lesTaux = array();
|
$lesTaux = array();
|
||||||
|
@ -4,8 +4,13 @@ namespace Garradin;
|
|||||||
|
|
||||||
use Garradin\Plugin\RecusFiscaux\Utils;
|
use Garradin\Plugin\RecusFiscaux\Utils;
|
||||||
|
|
||||||
// liste des versements totaux par personne
|
// vérifier si l'année a bien été sélectionnée au préalable
|
||||||
$_SESSION['annee_recu'] = f('annee_recu');
|
$_SESSION['annee_recu'] = f('annee_recu');
|
||||||
|
// 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
|
||||||
$_SESSION['lesVersementsTotaux'] = Utils::getVersementsTotaux($_SESSION['annee_recu']);
|
$_SESSION['lesVersementsTotaux'] = Utils::getVersementsTotaux($_SESSION['annee_recu']);
|
||||||
|
|
||||||
// préparation de l'affichage
|
// préparation de l'affichage
|
||||||
|
Loading…
Reference in New Issue
Block a user