mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-07-18 06:46:11 +00:00
change order of birthdate fields in advanced search
This commit is contained in:
parent
9a29532362
commit
ac88e46a7d
@ -37,6 +37,7 @@ and this project adheres to
|
|||||||
* [activity] activity admin: translations + remove label field for comment on admin activity type (https://gitlab.com/champs-libres/departement-de-la-vendee/chill/-/issues/587)
|
* [activity] activity admin: translations + remove label field for comment on admin activity type (https://gitlab.com/champs-libres/departement-de-la-vendee/chill/-/issues/587)
|
||||||
* [main] admin user_job: improvements (https://gitlab.com/champs-libres/departement-de-la-vendee/chill/-/issues/588)
|
* [main] admin user_job: improvements (https://gitlab.com/champs-libres/departement-de-la-vendee/chill/-/issues/588)
|
||||||
* [address] can add extra address info even if noAddress (https://gitlab.com/champs-libres/departement-de-la-vendee/chill/-/issues/576)
|
* [address] can add extra address info even if noAddress (https://gitlab.com/champs-libres/departement-de-la-vendee/chill/-/issues/576)
|
||||||
|
* [search] Change order of birthdate fields in advanced search
|
||||||
|
|
||||||
|
|
||||||
### 2022-05-06
|
### 2022-05-06
|
||||||
|
@ -82,10 +82,6 @@ class PersonSearch extends AbstractSearch implements HasAdvancedSearchFormInterf
|
|||||||
'label' => 'Last name',
|
'label' => 'Last name',
|
||||||
'required' => false,
|
'required' => false,
|
||||||
])
|
])
|
||||||
->add('birthdate-after', ChillDateType::class, [
|
|
||||||
'label' => 'Birthdate after',
|
|
||||||
'required' => false,
|
|
||||||
])
|
|
||||||
->add('birthdate', ChillDateType::class, [
|
->add('birthdate', ChillDateType::class, [
|
||||||
'label' => 'Birthdate',
|
'label' => 'Birthdate',
|
||||||
'required' => false,
|
'required' => false,
|
||||||
@ -94,6 +90,10 @@ class PersonSearch extends AbstractSearch implements HasAdvancedSearchFormInterf
|
|||||||
'label' => 'Birthdate before',
|
'label' => 'Birthdate before',
|
||||||
'required' => false,
|
'required' => false,
|
||||||
])
|
])
|
||||||
|
->add('birthdate-after', ChillDateType::class, [
|
||||||
|
'label' => 'Birthdate after',
|
||||||
|
'required' => false,
|
||||||
|
])
|
||||||
->add('phonenumber', TelType::class, [
|
->add('phonenumber', TelType::class, [
|
||||||
'required' => false,
|
'required' => false,
|
||||||
'label' => 'Part of the phonenumber',
|
'label' => 'Part of the phonenumber',
|
||||||
|
Loading…
x
Reference in New Issue
Block a user