Feature: Add a list export for evaluation, actions and household

This commit is contained in:
2023-01-26 14:22:30 +00:00
committed by Julien Fastré
parent 9ada19ef23
commit e54c2ca712
24 changed files with 1323 additions and 50 deletions

View File

@@ -8,6 +8,12 @@ services:
tags:
- { name: chill.export, alias: count_evaluation }
Chill\PersonBundle\Export\Export\ListEvaluation:
autowire: true
autoconfigure: true
tags:
- { name: chill.export, alias: list_evaluation }
## Filters
chill.person.export.filter_evaluationtype:
class: Chill\PersonBundle\Export\Filter\EvaluationFilters\EvaluationTypeFilter

View File

@@ -8,6 +8,12 @@ services:
tags:
- { name: chill.export, alias: count_household }
Chill\PersonBundle\Export\Export\ListHouseholdInPeriod:
autowire: true
autoconfigure: true
tags:
- { name: chill.export, alias: list_household_in_period }
## Filters
chill.person.export.filter_household_composition:
class: Chill\PersonBundle\Export\Filter\HouseholdFilters\CompositionFilter

View File

@@ -1,14 +1,19 @@
services:
chill.person.export.count_social_work_actions:
class: Chill\PersonBundle\Export\Export\CountSocialWorkActions
## Indicators
Chill\PersonBundle\Export\Export\CountAccompanyingPeriodWork:
autowire: true
autoconfigure: true
tags:
- { name: chill.export, alias: count_social_work_actions }
## FILTERS
Chill\PersonBundle\Export\Export\ListAccompanyingPeriodWork:
autowire: true
autoconfigure: true
tags:
- { name: chill.export, alias: list_social_work_actions }
## FILTERS
chill.person.export.filter_social_work_type:
class: Chill\PersonBundle\Export\Filter\SocialWorkFilters\SocialWorkTypeFilter
autowire: true