Merged PR 4336: MTD and Monthly Verification Requests dependant KPIs for Dash Source

# Description

Changes:
* Adds Dash Source in Monthly and MTD Metric models for Verification Request dependant KPIs
* Propagates to Aggregated Monthly and MTD models for VR dependant KPIs
* Eliminates unused Weekly Guest Payment models.

# Checklist

- [X] The edited models and dependants run properly with production data.
- [X] The edited models are sufficiently documented.
- [X] The edited models contain PK tests, and I've ran and passed them.
- [X] I have checked for DRY opportunities with other models and docs.
- [X] I've picked the right materialization for the affected models.

# Other

- [ ] Check if a full-refresh is required after this PR is merged.

Related work items: #27356
This commit is contained in:
Oriol Roqué Paniagua 2025-02-11 08:47:48 +00:00
parent b471b64d9c
commit dffb1d5a1e
14 changed files with 169 additions and 256 deletions

View file

@ -131,7 +131,15 @@ Provides a general assignement for the Dimensions available for each KPI
{% endif %}
{# Add entity-specific dimensions #}
{% if entity_name in ["CREATED_BOOKINGS", "CHECK_OUT_BOOKINGS"] %}
{% if entity_name in [
"CHECK_OUT_BOOKINGS",
"COMPLETED_GUEST_JOURNEYS",
"CREATED_BOOKINGS",
"CREATED_GUEST_JOURNEYS",
"GUEST_JOURNEYS_WITH_PAYMENT",
"GUEST_PAYMENTS",
"STARTED_GUEST_JOURNEYS",
] %}
{% set additional_dimensions = additional_dimensions + [dim_dash()] %}
{% endif %}