Skip to content

Commit

Permalink
afup#597 corrige l'état de la personne morale
Browse files Browse the repository at this point in the history
  • Loading branch information
stakovicz committed Dec 30, 2024
1 parent 12c0ec8 commit 0cb72f7
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 0cb72f7

Please sign in to comment.