Skip to content

Commit

Permalink
#597 corrige l'état de la personne morale (#1578)
Browse files Browse the repository at this point in the history
  • Loading branch information
stakovicz authored Jan 13, 2025
1 parent cfd4b77 commit 26aceb4
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions htdocs/pages/administration/personnes_morales.php
Original file line number Diff line number Diff line change
Expand Up @@ -96,8 +96,11 @@
$smarty->assign('personnes_physiques_associees', $users);
}
$formulaire->addElement('header' , '' , 'Paramètres');
$formulaire->addElement('select' , 'etat' , 'Etat' , array(AFUP_DROITS_ETAT_ACTIF => 'Actif',
AFUP_DROITS_ETAT_INACTIF => 'Inactif'));
$formulaire->addElement('select' , 'etat' , 'État' , [
AFUP_DROITS_ETAT_NON_FINALISE => 'Non finalisé',
AFUP_DROITS_ETAT_ACTIF => 'Actif',
AFUP_DROITS_ETAT_INACTIF => 'Inactif'
]);
$formulaire->addElement('select' , 'max_members' , 'Membres maximums', array_combine($maxMembers = range(3, 18, 3), $maxMembers));
$formulaire->addElement('static', 'info' , ' ' , 'Nombre de membres rattachés autorisé par la cotisation');

Expand Down

0 comments on commit 26aceb4

Please sign in to comment.