Committing for testing

This commit is contained in:
Joaquin 2025-03-26 15:10:50 +01:00
parent f7504393c4
commit 18988eadde
3 changed files with 83 additions and 2 deletions

View file

@ -134,7 +134,7 @@ Provides a general assignement for the Dimensions available for each KPI
{% set additional_dimensions = [] %}
{# Adds Deal dimension to all models except DEAL metrics #}
{% if entity_name != "DEALS" %}
{% if entity_name not in ["DEALS", "NEW_DASH_DEALS_OFFERED_SERVICES"] %}
{% set additional_dimensions = additional_dimensions + [dim_deal()] %}
{% endif %}
@ -188,6 +188,15 @@ Provides a general assignement for the Dimensions available for each KPI
] %}
{% endif %}
{% if entity_name == "NEW_DASH_DEALS_OFFERED_SERVICES" %}
{% 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) }}