2022-01-14 09:04:45 +01:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace Garradin;
|
|
|
|
|
2022-01-27 09:10:00 +01:00
|
|
|
use Garradin\Plugin\RecusFiscaux\Utils;
|
2022-01-14 09:04:45 +01:00
|
|
|
|
2022-01-28 15:40:21 +01:00
|
|
|
// première année d'exercice
|
|
|
|
$anneeCourante = date("Y");
|
|
|
|
$anneesFiscales = Utils::getAnneesFiscales();
|
|
|
|
if ($anneesFiscales[0] < $anneeCourante) {
|
|
|
|
array_unshift($anneesFiscales, $anneeCourante);
|
|
|
|
}
|
|
|
|
|
2022-02-18 12:51:13 +01:00
|
|
|
// libellés pour les taux de réduction
|
|
|
|
$_SESSION['ligneReduction'] = Utils::getLignesReduction($plugin->getConfig('reduction'));
|
|
|
|
|
2022-01-27 09:02:23 +01:00
|
|
|
// liste des activités, cotisations et comptes associés
|
2022-01-27 09:10:00 +01:00
|
|
|
$activitesTarifsComptes = Utils::getActivitesTarifsEtComptes();
|
2022-01-14 09:04:45 +01:00
|
|
|
|
|
|
|
// préparation de l'affichage
|
2022-01-28 15:40:21 +01:00
|
|
|
$tpl->assign('anneesFiscales', $anneesFiscales);
|
|
|
|
$tpl->assign('anneeCourante', $anneeCourante);
|
2022-01-27 09:02:23 +01:00
|
|
|
$tpl->assign('activitesTarifsComptes', $activitesTarifsComptes);
|
2022-02-07 14:32:17 +01:00
|
|
|
$tpl->assign('plugin_config', $plugin->getConfig());
|
2022-01-28 15:40:21 +01:00
|
|
|
$tpl->assign('plugin_css', ['style.css']);
|
2022-01-14 09:04:45 +01:00
|
|
|
|
|
|
|
// envoyer au template
|
|
|
|
$tpl->display(PLUGIN_ROOT . '/templates/index.tpl');
|