New dash bookings agg models

This commit is contained in:
Joaquin 2025-04-01 09:14:30 +02:00
parent fb2b2def52
commit 2a797ce0e8
10 changed files with 236 additions and 73 deletions

View file

@ -207,6 +207,15 @@ Provides a general assignement for the Dimensions available for each KPI
] %}
{% endif %}
{% if entity_name == "NEW_DASH_CREATED_BOOKINGS" %}
{% set additional_dimensions = additional_dimensions + [
dim_has_upgraded_service(),
dim_new_dash_version(),
dim_pricing_service(),
dim_pricing_business_type(),
] %}
{% endif %}
{# Combine base dimensions with additional dimensions for the specific model #}
{% set dimensions = base_dimensions + additional_dimensions %}
{{ return(dimensions) }}