encore une amélioration dans la gestion des champs nom

FossilOrigin-Name: 0322812522d5aab61205617cf4e8f85994fd93315f2abaaf205c0f8b784d4fbf
This commit is contained in:
engel 2022-03-26 19:14:18 +00:00
parent 3e53f19453
commit dda2000399
3 changed files with 6 additions and 4 deletions

View File

@ -23,9 +23,11 @@ foreach ($plugin->getConfig('reduction') as $taux)
// idem avec les champs nom/prénom
$nbChamps = 0;
if (null !== $plugin->getConfig('champsNom'))
$champsNom = Utils::getChampsNom($config, $plugin);
if (null !== $champsNom)
{
foreach ($plugin->getConfig('champsNom') as $nom => $champ)
foreach ($champsNom as $nom => $champ)
{
if ($champ->position != 0) { ++$nbChamps; }
}

View File

@ -14,7 +14,7 @@ if (! isset($_SESSION['annee_recu']) || $_SESSION['annee_recu'] == "") {
}
// champs pour le nom et prénom
$confNoms = (array) $plugin->getConfig('champsNom');
$confNoms = Utils::getChampsNom($config, $plugin);
uasort($confNoms, function ($a, $b)
{
return $a->position - $b->position;

View File

@ -13,7 +13,7 @@ if (! isset($_SESSION['annee_recu']) || $_SESSION['annee_recu'] == "") {
$_SESSION['taux_reduction'] = $_POST['taux_reduction'];
// champs pour le nom et prénom
$confNoms = (array) $plugin->getConfig('champsNom');
$confNoms = Utils::getChampsNom($config, $plugin);
uasort($confNoms, function ($a, $b)
{
return $a->position - $b->position;