mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-06-07 18:44:08 +00:00
order of birthdate fields changed in advanced search
This commit is contained in:
parent
149d4c3846
commit
ceb0f741ef
@ -13,7 +13,8 @@ and this project adheres to
|
|||||||
<!-- write down unreleased development here -->
|
<!-- write down unreleased development here -->
|
||||||
* [workflow]: added pagination to workflow list page
|
* [workflow]: added pagination to workflow list page
|
||||||
* [homepage_widget]: null error on tasks widget fixed
|
* [homepage_widget]: null error on tasks widget fixed
|
||||||
* [person-thirdparty]: fix quick-add of names that consist of multiple parts (eg. De Vlieger) within onthefly modal person/thirdparty
|
* [person-thirdparty]: fix quick-add of names that consist of multiple parts (eg. De Vlieger) within onthefly modal person/thirdparty
|
||||||
|
* [search]: Order of birthdate fields changed in advanced search to avoid confusion.
|
||||||
|
|
||||||
## Test releases
|
## Test releases
|
||||||
|
|
||||||
|
@ -82,14 +82,14 @@ 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,
|
||||||
])
|
])
|
||||||
|
->add('birthdate-after', ChillDateType::class, [
|
||||||
|
'label' => 'Birthdate after',
|
||||||
|
'required' => false,
|
||||||
|
])
|
||||||
->add('birthdate-before', ChillDateType::class, [
|
->add('birthdate-before', ChillDateType::class, [
|
||||||
'label' => 'Birthdate before',
|
'label' => 'Birthdate before',
|
||||||
'required' => false,
|
'required' => false,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user