comment out exports that are not yet ready

This commit is contained in:
Julie Lenaerts 2022-09-07 10:37:01 +02:00
parent e42d6c2d77
commit 674629e2bf
2 changed files with 110 additions and 110 deletions

View File

@ -1,104 +1,104 @@
services:
## Indicators
chill.calendar.export.count_appointments:
class: Chill\CalendarBundle\Export\Export\CountAppointments
autowire: true
autoconfigure: true
tags:
- { name: chill.export, alias: count_appointments }
chill.calendar.export.average_duration_appointments:
class: Chill\CalendarBundle\Export\Export\StatAppointmentAvgDuration
autowire: true
autoconfigure: true
tags:
- { name: chill.export, alias: average_duration_appointments }
chill.calendar.export.sum_duration_appointments:
class: Chill\CalendarBundle\Export\Export\StatAppointmentSumDuration
autowire: true
autoconfigure: true
tags:
- { name: chill.export, alias: sum_duration_appointments }
## Filters
chill.calendar.export.agent_filter:
class: Chill\CalendarBundle\Export\Filter\AgentFilter
autowire: true
autoconfigure: true
tags:
- { name: chill.export_filter, alias: agent_filter }
chill.calendar.export.job_filter:
class: Chill\CalendarBundle\Export\Filter\JobFilter
autowire: true
autoconfigure: true
tags:
- { name: chill.export_filter, alias: job_filter }
chill.calendar.export.scope_filter:
class: Chill\CalendarBundle\Export\Filter\ScopeFilter
autowire: true
autoconfigure: true
tags:
- { name: chill.export_filter, alias: scope_filter }
chill.calendar.export.between_dates_filter:
class: Chill\CalendarBundle\Export\Filter\BetweenDatesFilter
autowire: true
autoconfigure: true
tags:
- { name: chill.export_filter, alias: between_dates_filter }
## Aggregator
chill.calendar.export.agent_aggregator:
class: Chill\CalendarBundle\Export\Aggregator\AgentAggregator
autowire: true
autoconfigure: true
tags:
- { name: chill.export_aggregator, alias: agent_aggregator }
chill.calendar.export.job_aggregator:
class: Chill\CalendarBundle\Export\Aggregator\JobAggregator
autowire: true
autoconfigure: true
tags:
- { name: chill.export_aggregator, alias: job_aggregator }
chill.calendar.export.scope_aggregator:
class: Chill\CalendarBundle\Export\Aggregator\ScopeAggregator
autowire: true
autoconfigure: true
tags:
- { name: chill.export_aggregator, alias: scope_aggregator }
chill.calendar.export.location_type_aggregator:
class: Chill\CalendarBundle\Export\Aggregator\LocationTypeAggregator
autowire: true
autoconfigure: true
tags:
- { name: chill.export_aggregator, alias: location_type_aggregator }
chill.calendar.export.location_aggregator:
class: Chill\CalendarBundle\Export\Aggregator\LocationAggregator
autowire: true
autoconfigure: true
tags:
- { name: chill.export_aggregator, alias: location_aggregator }
chill.calendar.export.cancel_reason_aggregator:
class: Chill\CalendarBundle\Export\Aggregator\CancelReasonAggregator
autowire: true
autoconfigure: true
tags:
- { name: chill.export_aggregator, alias: cancel_reason_aggregator }
chill.calendar.export.month_aggregator:
class: Chill\CalendarBundle\Export\Aggregator\MonthYearAggregator
autowire: true
autoconfigure: true
tags:
- { name: chill.export_aggregator, alias: month_aggregator }
#services:
#
# Indicators
# chill.calendar.export.count_appointments:
# class: Chill\CalendarBundle\Export\Export\CountAppointments
# autowire: true
# autoconfigure: true
# tags:
# - { name: chill.export, alias: count_appointments }
#
# chill.calendar.export.average_duration_appointments:
# class: Chill\CalendarBundle\Export\Export\StatAppointmentAvgDuration
# autowire: true
# autoconfigure: true
# tags:
# - { name: chill.export, alias: average_duration_appointments }
#
# chill.calendar.export.sum_duration_appointments:
# class: Chill\CalendarBundle\Export\Export\StatAppointmentSumDuration
# autowire: true
# autoconfigure: true
# tags:
# - { name: chill.export, alias: sum_duration_appointments }
#
# Filters
#
# chill.calendar.export.agent_filter:
# class: Chill\CalendarBundle\Export\Filter\AgentFilter
# autowire: true
# autoconfigure: true
# tags:
# - { name: chill.export_filter, alias: agent_filter }
#
# chill.calendar.export.job_filter:
# class: Chill\CalendarBundle\Export\Filter\JobFilter
# autowire: true
# autoconfigure: true
# tags:
# - { name: chill.export_filter, alias: job_filter }
#
# chill.calendar.export.scope_filter:
# class: Chill\CalendarBundle\Export\Filter\ScopeFilter
# autowire: true
# autoconfigure: true
# tags:
# - { name: chill.export_filter, alias: scope_filter }
#
# chill.calendar.export.between_dates_filter:
# class: Chill\CalendarBundle\Export\Filter\BetweenDatesFilter
# autowire: true
# autoconfigure: true
# tags:
# - { name: chill.export_filter, alias: between_dates_filter }
#
# Aggregator
#
# chill.calendar.export.agent_aggregator:
# class: Chill\CalendarBundle\Export\Aggregator\AgentAggregator
# autowire: true
# autoconfigure: true
# tags:
# - { name: chill.export_aggregator, alias: agent_aggregator }
#
# chill.calendar.export.job_aggregator:
# class: Chill\CalendarBundle\Export\Aggregator\JobAggregator
# autowire: true
# autoconfigure: true
# tags:
# - { name: chill.export_aggregator, alias: job_aggregator }
#
# chill.calendar.export.scope_aggregator:
# class: Chill\CalendarBundle\Export\Aggregator\ScopeAggregator
# autowire: true
# autoconfigure: true
# tags:
# - { name: chill.export_aggregator, alias: scope_aggregator }
#
# chill.calendar.export.location_type_aggregator:
# class: Chill\CalendarBundle\Export\Aggregator\LocationTypeAggregator
# autowire: true
# autoconfigure: true
# tags:
# - { name: chill.export_aggregator, alias: location_type_aggregator }
#
# chill.calendar.export.location_aggregator:
# class: Chill\CalendarBundle\Export\Aggregator\LocationAggregator
# autowire: true
# autoconfigure: true
# tags:
# - { name: chill.export_aggregator, alias: location_aggregator }
#
# chill.calendar.export.cancel_reason_aggregator:
# class: Chill\CalendarBundle\Export\Aggregator\CancelReasonAggregator
# autowire: true
# autoconfigure: true
# tags:
# - { name: chill.export_aggregator, alias: cancel_reason_aggregator }
#
# chill.calendar.export.month_aggregator:
# class: Chill\CalendarBundle\Export\Aggregator\MonthYearAggregator
# autowire: true
# autoconfigure: true
# tags:
# - { name: chill.export_aggregator, alias: month_aggregator }

View File

@ -9,12 +9,12 @@ services:
## FILTERS
chill.person.export.filter_social_work_type:
class: Chill\PersonBundle\Export\Filter\SocialWorkFilters\SocialWorkTypeFilter
autowire: true
autoconfigure: true
tags:
- { name: chill.export_filter, alias: social_work_type_filter }
# chill.person.export.filter_social_work_type:
# class: Chill\PersonBundle\Export\Filter\SocialWorkFilters\SocialWorkTypeFilter
# autowire: true
# autoconfigure: true
# tags:
# - { name: chill.export_filter, alias: social_work_type_filter }
chill.person.export.filter_scope:
class: Chill\PersonBundle\Export\Filter\SocialWorkFilters\ScopeFilter