Merged PR 4757: Creates a Total Booking Fees metric (Old dash + New dash)
# Description Main Changes: * Computes the total booking fees in `int_kpis__metric_daily_invoiced_revenue` * Propagates within KPIs, including schema and tests * Propagates within cross in both "by deal" and "by dimension/global" * Propagates to main kpis tests Small fix: * In `int_mtd_vs_previous_year_metrics`, manual formatting because sqlfmt is broken on this model... # 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: #28560
This commit is contained in:
parent
93b31854f7
commit
098ab51439
12 changed files with 101 additions and 8 deletions
|
|
@ -41,6 +41,7 @@ select
|
|||
sum(
|
||||
ir.xero_old_dashboard_booking_net_fees_in_gbp
|
||||
) as xero_old_dashboard_booking_net_fees_in_gbp,
|
||||
sum(ir.xero_booking_net_fees_in_gbp) as xero_booking_net_fees_in_gbp,
|
||||
sum(ir.xero_listing_net_fees_in_gbp) as xero_listing_net_fees_in_gbp,
|
||||
sum(ir.xero_verification_net_fees_in_gbp) as xero_verification_net_fees_in_gbp,
|
||||
sum(ir.xero_operator_net_fees_in_gbp) as xero_operator_net_fees_in_gbp,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue