add filtering on accompanying period + fix problems in gender filter

This commit is contained in:
2019-01-11 16:45:31 +01:00
parent 5591a9cfcc
commit f7ac607ff0
12 changed files with 485 additions and 10 deletions

View File

@@ -18,6 +18,8 @@ services:
chill.person.export.filter_gender:
class: Chill\PersonBundle\Export\Filter\GenderFilter
arguments:
$translator: '@translator'
tags:
- { name: chill.export_filter, alias: person_gender_filter }

View File

@@ -0,0 +1,15 @@
services:
chill.person.export.filter_accompanying_period:
class: Chill\PersonBundle\Export\Filter\AccompanyingPeriodFilter
tags:
- { name: chill.export_filter, alias: person_accc_period_filter }
chill.person.export.filter_accompanying_period_opening:
class: Chill\PersonBundle\Export\Filter\AccompanyingPeriodOpeningFilter
tags:
- { name: chill.export_filter, alias: person_acc_pe_op_filter }
chill.person.export.filter_accompanying_period_closing:
class: Chill\PersonBundle\Export\Filter\AccompanyingPeriodClosingFilter
tags:
- { name: chill.export_filter, alias: person_acc_pe_cl_filter }