Commit 9cba477a by Yvon

6012 bug fix : fix values misleading autocompletion in some cases in adherent cotisation section

parent c61660c3
...@@ -252,7 +252,10 @@ class AdherentAdmin extends AbstractAdmin ...@@ -252,7 +252,10 @@ class AdherentAdmin extends AbstractAdmin
} }
return $choice->__toString(); return $choice->__toString();
} },
'attr' => [
'autocomplete' => 'off'
]
]) ])
->end() ->end()
->end(); ->end();
...@@ -271,25 +274,37 @@ class AdherentAdmin extends AbstractAdmin ...@@ -271,25 +274,37 @@ class AdherentAdmin extends AbstractAdmin
"prélèvement" => "prélèvement" "prélèvement" => "prélèvement"
], ],
'empty_data' => null, 'empty_data' => null,
'placeholder' => 'Choisir un moyen de paiement' 'placeholder' => 'Choisir un moyen de paiement',
'attr' => [
'autocomplete' => 'off'
]
]) ])
->add('jourPrelevement', ChoiceType::class, [ ->add('jourPrelevement', ChoiceType::class, [
'required' => false, 'required' => false,
'label' => 'Jour de prélèvement :', 'label' => 'Jour de prélèvement :',
'choices' => $this->daysOfMonth(), 'choices' => $this->daysOfMonth(),
'empty_data' => null, 'empty_data' => null,
'placeholder' => 'Choisir un jour de prélèvement' 'placeholder' => 'Choisir un jour de prélèvement',
'attr' => [
'autocomplete' => 'off'
]
]) ])
->add('mailRappelCotisation', CheckboxType::class, [ ->add('mailRappelCotisation', CheckboxType::class, [
'required' => false, 'required' => false,
'label' => 'Recevoir un rappel du paiement de ma cotisation par mail', 'label' => 'Recevoir un rappel du paiement de ma cotisation par mail',
'attr' => [
'autocomplete' => 'off'
]
]) ])
->add('jourMailRappelCotisation', ChoiceType::class, [ ->add('jourMailRappelCotisation', ChoiceType::class, [
'required' => false, 'required' => false,
'label' => 'Jour de l\'envoi du mail de rappel :', 'label' => 'Jour de l\'envoi du mail de rappel :',
'choices' => $this->daysOfMonth(), 'choices' => $this->daysOfMonth(),
'empty_data' => null, 'empty_data' => null,
'placeholder' => 'Choisir un jour pour l\'envoi du mail de rappel' 'placeholder' => 'Choisir un jour pour l\'envoi du mail de rappel',
'attr' => [
'autocomplete' => 'off'
]
]) ])
->end() ->end()
->end(); ->end();
...@@ -305,7 +320,10 @@ class AdherentAdmin extends AbstractAdmin ...@@ -305,7 +320,10 @@ class AdherentAdmin extends AbstractAdmin
'disabled' => true, 'disabled' => true,
'required' => false, 'required' => false,
'label' => 'Solde e-' . $mlc . ' :', 'label' => 'Solde e-' . $mlc . ' :',
'data' => $balance . ' ' . $mlc 'data' => $balance . ' ' . $mlc,
'attr' => [
'autocomplete' => 'off'
]
]) ])
->end() ->end()
->end(); ->end();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment