diff --git a/templates/index.tpl b/templates/index.tpl
index 77c1c06..c7df99a 100644
--- a/templates/index.tpl
+++ b/templates/index.tpl
@@ -47,6 +47,20 @@
+
+
+
Choisir le taux de réduction
+
+
+
{csrf_field key="generer_tous_recus"}
@@ -56,6 +70,7 @@
Choisir les activités et tarifs concernés par les reçus ainsi que le taux de réduction
+
diff --git a/www/admin/versements_activites.php b/www/admin/versements_activites.php
index aa24707..92643dd 100644
--- a/www/admin/versements_activites.php
+++ b/www/admin/versements_activites.php
@@ -20,7 +20,7 @@ $tauxSelectionnes = array();
foreach ($tarifsSelectionnes as $idTarif) {
$nomRadio = "taux_reduction_" . $idTarif;
$valRadio = f("$nomRadio");
- $tauxSelectionnes[] = $valRadio ? $valRadio: $plugin->getConfig()->reduction[0]->taux;
+ $tauxSelectionnes[] = $valRadio ? $valRadio: $plugin->getConfig('reduction')[0]->taux;
}
// obtenir les instances de tarifs correspondant à la sélection
$lesTarifs = array();