# Description To be able to compute By Deal KPIs similarly as we do for Main KPIs we need to propagate the "By Deal" dimension first in intermediate. This does not impact reporting since there's a macro that already cuts the dimensions to be displayed, but I modified the name so it's clearer. Changes: * In `int_mtd_vs_previous_year_metrics`, I added a new `dimension_list`. This is applied to all initial CTEs that filter by dimension. Note that I added here the `by_deal` dimension. * Modified the name of `get_kpi_dimensions_for_production` to `get_main_kpis_dimensions_for_production`. Now it's more explicit that this is the configuration for Main KPIs reporting. This affects both `business_kpis_configuration` and it's usage in `mtd_aggregated_metrics`. * Modified the tests in `int_mtd_vs_previous_year_metrics` and `int_mtd_aggregated_metrics` to include the new dimension `by_deal`. * It seems by adding this now autoformatting works again on this model! I'll tag all cases that are just because of autoformatting. MD5 trick has been applied in `reporting.mtd_aggregated_metrics`. # 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: #28998
572 lines
24 KiB
SQL
572 lines
24 KiB
SQL
/*
|
|
This model pivots the data of the different mtd metrics models to get
|
|
previous year for each line & computing relative increment. --
|
|
*/
|
|
{% set dimension_list = (
|
|
"global",
|
|
"by_number_of_listings",
|
|
"by_billing_country",
|
|
"by_business_scope",
|
|
"by_deal",
|
|
) %}
|
|
|
|
{{ config(materialized="table", unique_key=["date", "dimension", "dimension_value"]) }}
|
|
with
|
|
created_bookings as (
|
|
select *
|
|
from {{ ref("int_kpis__agg_mtd_created_bookings") }}
|
|
where dimension in {{ dimension_list }} and dimension_value <> 'UNSET'
|
|
union all
|
|
select *
|
|
from {{ ref("int_kpis__agg_monthly_created_bookings") }}
|
|
where dimension in {{ dimension_list }} and dimension_value <> 'UNSET'
|
|
),
|
|
check_out_bookings as (
|
|
select *
|
|
from {{ ref("int_kpis__agg_mtd_check_out_bookings") }}
|
|
where dimension in {{ dimension_list }} and dimension_value <> 'UNSET'
|
|
union all
|
|
select *
|
|
from {{ ref("int_kpis__agg_monthly_check_out_bookings") }}
|
|
where dimension in {{ dimension_list }} and dimension_value <> 'UNSET'
|
|
),
|
|
billable_bookings as (
|
|
select *
|
|
from {{ ref("int_kpis__agg_mtd_billable_bookings") }}
|
|
where dimension in {{ dimension_list }} and dimension_value <> 'UNSET'
|
|
union all
|
|
select *
|
|
from {{ ref("int_kpis__agg_monthly_billable_bookings") }}
|
|
where dimension in {{ dimension_list }} and dimension_value <> 'UNSET'
|
|
),
|
|
created_guest_journeys as (
|
|
select *
|
|
from {{ ref("int_kpis__agg_mtd_created_guest_journeys") }}
|
|
where dimension in {{ dimension_list }} and dimension_value <> 'UNSET'
|
|
union all
|
|
select *
|
|
from {{ ref("int_kpis__agg_monthly_created_guest_journeys") }}
|
|
where dimension in {{ dimension_list }} and dimension_value <> 'UNSET'
|
|
),
|
|
started_guest_journeys as (
|
|
select *
|
|
from {{ ref("int_kpis__agg_mtd_started_guest_journeys") }}
|
|
where dimension in {{ dimension_list }} and dimension_value <> 'UNSET'
|
|
union all
|
|
select *
|
|
from {{ ref("int_kpis__agg_monthly_started_guest_journeys") }}
|
|
where dimension in {{ dimension_list }} and dimension_value <> 'UNSET'
|
|
),
|
|
completed_guest_journeys as (
|
|
select *
|
|
from {{ ref("int_kpis__agg_mtd_completed_guest_journeys") }}
|
|
where dimension in {{ dimension_list }} and dimension_value <> 'UNSET'
|
|
union all
|
|
select *
|
|
from {{ ref("int_kpis__agg_monthly_completed_guest_journeys") }}
|
|
where dimension in {{ dimension_list }} and dimension_value <> 'UNSET'
|
|
),
|
|
guest_journeys_with_payment as (
|
|
select *
|
|
from {{ ref("int_kpis__agg_mtd_guest_journeys_with_payment") }}
|
|
where dimension in {{ dimension_list }} and dimension_value <> 'UNSET'
|
|
union all
|
|
select *
|
|
from {{ ref("int_kpis__agg_monthly_guest_journeys_with_payment") }}
|
|
where dimension in {{ dimension_list }} and dimension_value <> 'UNSET'
|
|
),
|
|
listings as (
|
|
select *
|
|
from {{ ref("int_kpis__agg_daily_listings") }}
|
|
where
|
|
dimension in {{ dimension_list }}
|
|
and dimension_value <> 'UNSET'
|
|
and (is_month_to_date = true or is_end_of_month = true)
|
|
),
|
|
deals as (
|
|
select *
|
|
from {{ ref("int_kpis__agg_daily_deals") }}
|
|
where
|
|
dimension in {{ dimension_list }}
|
|
and dimension_value <> 'UNSET'
|
|
and (is_month_to_date = true or is_end_of_month = true)
|
|
),
|
|
guest_payments as (
|
|
select *
|
|
from {{ ref("int_kpis__agg_mtd_guest_payments") }}
|
|
where dimension in {{ dimension_list }} and dimension_value <> 'UNSET'
|
|
union all
|
|
select *
|
|
from {{ ref("int_kpis__agg_monthly_guest_payments") }}
|
|
where dimension in {{ dimension_list }} and dimension_value <> 'UNSET'
|
|
),
|
|
invoiced_revenue as (
|
|
select *
|
|
from {{ ref("int_kpis__agg_mtd_invoiced_revenue") }}
|
|
where dimension in {{ dimension_list }} and dimension_value <> 'UNSET'
|
|
union all
|
|
select *
|
|
from {{ ref("int_kpis__agg_monthly_invoiced_revenue") }}
|
|
where dimension in {{ dimension_list }} and dimension_value <> 'UNSET'
|
|
),
|
|
host_resolutions as (
|
|
select *
|
|
from {{ ref("int_kpis__agg_mtd_host_resolutions") }}
|
|
where dimension in {{ dimension_list }} and dimension_value <> 'UNSET'
|
|
union all
|
|
select *
|
|
from {{ ref("int_kpis__agg_monthly_host_resolutions") }}
|
|
where dimension in {{ dimension_list }} and dimension_value <> 'UNSET'
|
|
),
|
|
total_and_retained_revenue as (
|
|
select *
|
|
from {{ ref("int_kpis__agg_mtd_total_and_retained_revenue") }}
|
|
where dimension in {{ dimension_list }} and dimension_value <> 'UNSET'
|
|
union all
|
|
select *
|
|
from {{ ref("int_kpis__agg_monthly_total_and_retained_revenue") }}
|
|
where dimension in {{ dimension_list }} and dimension_value <> 'UNSET'
|
|
),
|
|
int_kpis__agg_monthly_churn_contribution as (
|
|
select * from {{ ref("int_kpis__agg_monthly_churn_contribution") }}
|
|
),
|
|
int_kpis__agg_dates_main_kpis as (
|
|
select *
|
|
from {{ ref("int_kpis__agg_dates_main_kpis") }}
|
|
where dimension in {{ dimension_list }} and dimension_value <> 'UNSET'
|
|
),
|
|
int_kpis__agg_monthly_onboarding_mrr as (
|
|
select * from {{ ref("int_kpis__agg_monthly_onboarding_mrr") }}
|
|
),
|
|
plain_kpi_combination as (
|
|
|
|
select
|
|
d.year,
|
|
d.month,
|
|
d.day,
|
|
d.is_end_of_month,
|
|
d.is_current_month,
|
|
d.is_end_of_month_or_yesterday,
|
|
d.first_day_month,
|
|
d.date,
|
|
d.dimension,
|
|
d.dimension_value,
|
|
|
|
-- CREATED BOOKINGS --
|
|
created_bookings.created_bookings,
|
|
created_bookings.cancelled_created_bookings,
|
|
created_bookings.not_cancelled_created_bookings,
|
|
created_bookings.cancelled_created_bookings_rate,
|
|
|
|
-- CHECK OUT BOOKINGS --
|
|
check_out_bookings.check_out_bookings,
|
|
check_out_bookings.cancelled_check_out_bookings,
|
|
check_out_bookings.not_cancelled_check_out_bookings,
|
|
check_out_bookings.billable_check_out_bookings,
|
|
check_out_bookings.cancelled_check_out_bookings_rate,
|
|
|
|
-- OTHER BOOKINGS --
|
|
billable_bookings.billable_bookings,
|
|
|
|
-- GUEST JOURNEYS --
|
|
created_guest_journeys.created_guest_journeys,
|
|
started_guest_journeys.started_guest_journeys,
|
|
completed_guest_journeys.completed_guest_journeys,
|
|
guest_journeys_with_payment.guest_journeys_with_payment
|
|
as paid_guest_journeys,
|
|
cast(started_guest_journeys.started_guest_journeys as decimal)
|
|
/ created_guest_journeys.created_guest_journeys as start_rate_guest_journey,
|
|
cast(completed_guest_journeys.completed_guest_journeys as decimal)
|
|
/ started_guest_journeys.started_guest_journeys
|
|
as completion_rate_guest_journey,
|
|
1
|
|
- cast(completed_guest_journeys.completed_guest_journeys as decimal)
|
|
/ started_guest_journeys.started_guest_journeys
|
|
as incompletion_rate_guest_journey,
|
|
cast(guest_journeys_with_payment.guest_journeys_with_payment as decimal)
|
|
/ completed_guest_journeys.completed_guest_journeys
|
|
as payment_rate_guest_journey,
|
|
|
|
-- DEALS --
|
|
deals.new_deals,
|
|
deals.never_booked_deals,
|
|
deals.active_deals,
|
|
deals.churning_deals,
|
|
deals.inactive_deals,
|
|
deals.reactivated_deals,
|
|
deals.deals_booked_in_month,
|
|
deals.deals_booked_in_6_months,
|
|
deals.deals_booked_in_12_months,
|
|
deals.live_deals,
|
|
|
|
-- LISTINGS (ACCOMMODATIONS) --
|
|
listings.new_listings,
|
|
listings.never_booked_listings,
|
|
listings.first_time_booked_listings,
|
|
listings.active_listings,
|
|
listings.churning_listings,
|
|
listings.inactive_listings,
|
|
listings.reactivated_listings,
|
|
listings.listings_booked_in_month,
|
|
listings.listings_booked_in_6_months,
|
|
listings.listings_booked_in_12_months,
|
|
|
|
-- HOST (OPERATOR) REVENUE --
|
|
-- OLD DASH --
|
|
invoiced_revenue.xero_old_dashboard_booking_net_fees_in_gbp,
|
|
invoiced_revenue.xero_listing_net_fees_in_gbp,
|
|
invoiced_revenue.xero_verification_net_fees_in_gbp,
|
|
-- NEW DASH --
|
|
invoiced_revenue.xero_basic_protection_net_fees_in_gbp,
|
|
invoiced_revenue.xero_waiver_pro_net_fees_in_gbp,
|
|
invoiced_revenue.xero_id_verification_net_fees_in_gbp,
|
|
invoiced_revenue.xero_protection_plus_net_fees_in_gbp,
|
|
invoiced_revenue.xero_screening_plus_net_fees_in_gbp,
|
|
invoiced_revenue.xero_sex_offenders_check_net_fees_in_gbp,
|
|
invoiced_revenue.xero_protection_pro_net_fees_in_gbp,
|
|
-- GLOBAL --
|
|
invoiced_revenue.xero_booking_net_fees_in_gbp,
|
|
invoiced_revenue.xero_operator_net_fees_in_gbp,
|
|
|
|
-- APIs REVENUE --
|
|
invoiced_revenue.xero_apis_net_fees_in_gbp,
|
|
invoiced_revenue.xero_e_deposit_net_fees_in_gbp,
|
|
invoiced_revenue.xero_guesty_net_fees_in_gbp,
|
|
|
|
-- HOST RESOLUTIONS --
|
|
host_resolutions.xero_host_resolution_amount_paid_in_gbp,
|
|
host_resolutions.xero_host_resolution_payment_count,
|
|
cast(host_resolutions.xero_host_resolution_amount_paid_in_gbp as decimal)
|
|
/ created_bookings.created_bookings
|
|
as host_resolution_amount_paid_per_created_booking,
|
|
{{
|
|
return_capped_value(
|
|
"cast(host_resolutions.xero_host_resolution_payment_count as decimal) / created_bookings.created_bookings",
|
|
-1,
|
|
1,
|
|
)
|
|
}}
|
|
as host_resolution_payment_per_created_booking_ratio,
|
|
|
|
-- GUEST REVENUE AND PAYMENTS --
|
|
guest_payments.deposit_fees_in_gbp,
|
|
guest_payments.waiver_payments_in_gbp,
|
|
invoiced_revenue.xero_waiver_paid_back_to_host_in_gbp,
|
|
nullif(
|
|
coalesce(guest_payments.waiver_payments_in_gbp, 0)
|
|
+ coalesce(invoiced_revenue.xero_waiver_paid_back_to_host_in_gbp, 0),
|
|
0
|
|
) as waiver_net_fees_in_gbp,
|
|
guest_payments.checkin_cover_fees_in_gbp,
|
|
guest_payments.total_guest_payments_in_gbp,
|
|
|
|
-- TOTAL REVENUE --
|
|
total_and_retained_revenue.total_revenue_in_gbp,
|
|
|
|
-- GUEST REVENUE AND PAYMENTS WEIGHTED METRICS --
|
|
guest_payments.total_guest_payments_in_gbp / nullif(
|
|
completed_guest_journeys.completed_guest_journeys, 0
|
|
) as guest_payments_per_completed_guest_journey,
|
|
guest_payments.total_guest_payments_in_gbp / nullif(
|
|
guest_journeys_with_payment.guest_journeys_with_payment, 0
|
|
) as guest_payments_per_paid_guest_journey,
|
|
|
|
-- TOTAL REVENUE WEIGHTED METRICS --
|
|
coalesce(total_and_retained_revenue.total_revenue_in_gbp, 0) / nullif(
|
|
created_bookings.created_bookings, 0
|
|
) as total_revenue_per_created_booking,
|
|
coalesce(total_and_retained_revenue.total_revenue_in_gbp, 0) / nullif(
|
|
created_guest_journeys.created_guest_journeys, 0
|
|
) as total_revenue_per_created_guest_journey,
|
|
coalesce(total_and_retained_revenue.total_revenue_in_gbp, 0) / nullif(
|
|
deals.deals_booked_in_month, 0
|
|
) as total_revenue_per_deals_booked_in_month,
|
|
coalesce(total_and_retained_revenue.total_revenue_in_gbp, 0) / nullif(
|
|
listings.listings_booked_in_month, 0
|
|
) as total_revenue_per_listings_booked_in_month,
|
|
|
|
-- CHURN --
|
|
churn.total_revenue_churn_preceding_12_months,
|
|
churn.total_revenue_global_preceding_12_months,
|
|
churn.total_revenue_churn_average_contribution,
|
|
churn.created_bookings_churn_average_contribution,
|
|
churn.listings_booked_in_month_churn_average_contribution,
|
|
|
|
-- INCOME RETAINED --
|
|
total_and_retained_revenue.revenue_retained_in_gbp,
|
|
{{
|
|
return_capped_value(
|
|
"total_and_retained_revenue.revenue_retained_in_gbp / total_and_retained_revenue.total_revenue_in_gbp",
|
|
-1,
|
|
1,
|
|
)
|
|
}}
|
|
as revenue_retained_ratio,
|
|
|
|
-- INCOME RETAINED POST RESOLUTIONS--
|
|
total_and_retained_revenue.revenue_retained_post_resolutions_in_gbp,
|
|
{{
|
|
return_capped_value(
|
|
"total_and_retained_revenue.revenue_retained_post_resolutions_in_gbp / total_and_retained_revenue.total_revenue_in_gbp",
|
|
-1,
|
|
1,
|
|
)
|
|
}}
|
|
as revenue_retained_post_resolutions_ratio,
|
|
|
|
-- ONBOARDING MRR METRIC --
|
|
onboarding_mrr.onboarding_mrr_per_new_deal_in_gbp as expected_mrr_per_deal,
|
|
onboarding_mrr.total_onboarding_mrr_in_gbp as expected_mrr
|
|
|
|
from int_kpis__agg_dates_main_kpis d
|
|
left join
|
|
created_bookings
|
|
on d.date = created_bookings.end_date
|
|
and d.dimension = created_bookings.dimension
|
|
and d.dimension_value = created_bookings.dimension_value
|
|
left join
|
|
check_out_bookings
|
|
on d.date = check_out_bookings.end_date
|
|
and d.dimension = check_out_bookings.dimension
|
|
and d.dimension_value = check_out_bookings.dimension_value
|
|
left join
|
|
billable_bookings
|
|
on d.date = billable_bookings.end_date
|
|
and d.dimension = billable_bookings.dimension
|
|
and d.dimension_value = billable_bookings.dimension_value
|
|
left join
|
|
created_guest_journeys
|
|
on d.date = created_guest_journeys.end_date
|
|
and d.dimension = created_guest_journeys.dimension
|
|
and d.dimension_value = created_guest_journeys.dimension_value
|
|
left join
|
|
started_guest_journeys
|
|
on d.date = started_guest_journeys.end_date
|
|
and d.dimension = started_guest_journeys.dimension
|
|
and d.dimension_value = started_guest_journeys.dimension_value
|
|
left join
|
|
completed_guest_journeys
|
|
on d.date = completed_guest_journeys.end_date
|
|
and d.dimension = completed_guest_journeys.dimension
|
|
and d.dimension_value = completed_guest_journeys.dimension_value
|
|
left join
|
|
guest_journeys_with_payment
|
|
on d.date = guest_journeys_with_payment.end_date
|
|
and d.dimension = guest_journeys_with_payment.dimension
|
|
and d.dimension_value = guest_journeys_with_payment.dimension_value
|
|
left join
|
|
listings
|
|
on d.date = listings.date
|
|
and d.dimension = listings.dimension
|
|
and d.dimension_value = listings.dimension_value
|
|
left join
|
|
deals
|
|
on d.date = deals.date
|
|
and d.dimension = deals.dimension
|
|
and d.dimension_value = deals.dimension_value
|
|
left join
|
|
guest_payments
|
|
on d.date = guest_payments.end_date
|
|
and d.dimension = guest_payments.dimension
|
|
and d.dimension_value = guest_payments.dimension_value
|
|
left join
|
|
invoiced_revenue
|
|
on d.date = invoiced_revenue.end_date
|
|
and d.dimension = invoiced_revenue.dimension
|
|
and d.dimension_value = invoiced_revenue.dimension_value
|
|
left join
|
|
host_resolutions
|
|
on d.date = host_resolutions.end_date
|
|
and d.dimension = host_resolutions.dimension
|
|
and d.dimension_value = host_resolutions.dimension_value
|
|
left join
|
|
int_kpis__agg_monthly_churn_contribution churn
|
|
on d.date = churn.date
|
|
and d.dimension = churn.dimension
|
|
and d.dimension_value = churn.dimension_value
|
|
left join
|
|
int_kpis__agg_monthly_onboarding_mrr onboarding_mrr
|
|
on d.date = onboarding_mrr.date
|
|
and d.dimension = onboarding_mrr.dimension
|
|
and d.dimension_value = onboarding_mrr.dimension_value
|
|
left join
|
|
total_and_retained_revenue
|
|
on d.date = total_and_retained_revenue.end_date
|
|
and d.dimension = total_and_retained_revenue.dimension
|
|
and d.dimension_value = total_and_retained_revenue.dimension_value
|
|
)
|
|
|
|
select
|
|
current.year,
|
|
current.month,
|
|
current.day,
|
|
current.is_end_of_month,
|
|
current.is_current_month,
|
|
current.is_end_of_month_or_yesterday,
|
|
current.first_day_month,
|
|
current.date,
|
|
current.dimension,
|
|
current.dimension_value,
|
|
previous_year.date as previous_year_date,
|
|
|
|
-- CREATED BOOKINGS --
|
|
{{ calculate_safe_relative_increment("created_bookings") }},
|
|
{{ calculate_safe_relative_increment("cancelled_created_bookings") }},
|
|
{{ calculate_safe_relative_increment("not_cancelled_created_bookings") }},
|
|
{{ calculate_safe_relative_increment("cancelled_created_bookings_rate") }},
|
|
|
|
-- CHECK OUT BOOKINGS --
|
|
{{ calculate_safe_relative_increment("check_out_bookings") }},
|
|
{{ calculate_safe_relative_increment("cancelled_check_out_bookings") }},
|
|
{{ calculate_safe_relative_increment("not_cancelled_check_out_bookings") }},
|
|
{{ calculate_safe_relative_increment("billable_check_out_bookings") }},
|
|
{{ calculate_safe_relative_increment("cancelled_check_out_bookings_rate") }},
|
|
|
|
-- OTHER BOOKINGS --
|
|
{{ calculate_safe_relative_increment("billable_bookings") }},
|
|
|
|
-- GUEST JOURNEYS --
|
|
{{ calculate_safe_relative_increment("created_guest_journeys") }},
|
|
{{ calculate_safe_relative_increment("started_guest_journeys") }},
|
|
{{ calculate_safe_relative_increment("completed_guest_journeys") }},
|
|
{{ calculate_safe_relative_increment("paid_guest_journeys") }},
|
|
{{ calculate_safe_relative_increment("start_rate_guest_journey") }},
|
|
{{ calculate_safe_relative_increment("completion_rate_guest_journey") }},
|
|
{{ calculate_safe_relative_increment("incompletion_rate_guest_journey") }},
|
|
{{ calculate_safe_relative_increment("payment_rate_guest_journey") }},
|
|
|
|
-- DEALS --
|
|
{{ calculate_safe_relative_increment("new_deals") }},
|
|
{{ calculate_safe_relative_increment("never_booked_deals") }},
|
|
{{ calculate_safe_relative_increment("active_deals") }},
|
|
{{ calculate_safe_relative_increment("churning_deals") }},
|
|
{{ calculate_safe_relative_increment("inactive_deals") }},
|
|
{{ calculate_safe_relative_increment("reactivated_deals") }},
|
|
{{ calculate_safe_relative_increment("deals_booked_in_month") }},
|
|
{{ calculate_safe_relative_increment("deals_booked_in_6_months") }},
|
|
{{ calculate_safe_relative_increment("deals_booked_in_12_months") }},
|
|
{{ calculate_safe_relative_increment("live_deals") }},
|
|
|
|
-- LISTINGS --
|
|
{{ calculate_safe_relative_increment("new_listings") }},
|
|
{{ calculate_safe_relative_increment("never_booked_listings") }},
|
|
{{ calculate_safe_relative_increment("first_time_booked_listings") }},
|
|
{{ calculate_safe_relative_increment("active_listings") }},
|
|
{{ calculate_safe_relative_increment("churning_listings") }},
|
|
{{ calculate_safe_relative_increment("inactive_listings") }},
|
|
{{ calculate_safe_relative_increment("reactivated_listings") }},
|
|
{{ calculate_safe_relative_increment("listings_booked_in_month") }},
|
|
{{ calculate_safe_relative_increment("listings_booked_in_6_months") }},
|
|
{{ calculate_safe_relative_increment("listings_booked_in_12_months") }},
|
|
|
|
-- HOST (OPERATOR) REVENUE --
|
|
-- OLD DASH --
|
|
{{
|
|
calculate_safe_relative_increment(
|
|
"xero_old_dashboard_booking_net_fees_in_gbp"
|
|
)
|
|
}},
|
|
{{ calculate_safe_relative_increment("xero_listing_net_fees_in_gbp") }},
|
|
{{ calculate_safe_relative_increment("xero_verification_net_fees_in_gbp") }},
|
|
-- NEW DASH --
|
|
{{ calculate_safe_relative_increment("xero_basic_protection_net_fees_in_gbp") }},
|
|
{{ calculate_safe_relative_increment("xero_waiver_pro_net_fees_in_gbp") }},
|
|
{{ calculate_safe_relative_increment("xero_id_verification_net_fees_in_gbp") }},
|
|
{{ calculate_safe_relative_increment("xero_protection_plus_net_fees_in_gbp") }},
|
|
{{ calculate_safe_relative_increment("xero_screening_plus_net_fees_in_gbp") }},
|
|
{{ calculate_safe_relative_increment("xero_sex_offenders_check_net_fees_in_gbp") }},
|
|
{{ calculate_safe_relative_increment("xero_protection_pro_net_fees_in_gbp") }},
|
|
-- GLOBAL --
|
|
{{ calculate_safe_relative_increment("xero_booking_net_fees_in_gbp") }},
|
|
{{ calculate_safe_relative_increment("xero_operator_net_fees_in_gbp") }},
|
|
|
|
-- APIs REVENUE --
|
|
{{ calculate_safe_relative_increment("xero_apis_net_fees_in_gbp") }},
|
|
{{ calculate_safe_relative_increment("xero_e_deposit_net_fees_in_gbp") }},
|
|
{{ calculate_safe_relative_increment("xero_guesty_net_fees_in_gbp") }},
|
|
|
|
-- HOST RESOLUTIONS --
|
|
{{ calculate_safe_relative_increment("xero_host_resolution_amount_paid_in_gbp") }},
|
|
{{ calculate_safe_relative_increment("xero_host_resolution_payment_count") }},
|
|
{{
|
|
calculate_safe_relative_increment(
|
|
"host_resolution_amount_paid_per_created_booking"
|
|
)
|
|
}},
|
|
{{
|
|
calculate_safe_relative_increment(
|
|
"host_resolution_payment_per_created_booking_ratio"
|
|
)
|
|
}},
|
|
|
|
-- GUEST REVENUE --
|
|
{{ calculate_safe_relative_increment("deposit_fees_in_gbp") }},
|
|
{{ calculate_safe_relative_increment("waiver_payments_in_gbp") }},
|
|
{{ calculate_safe_relative_increment("xero_waiver_paid_back_to_host_in_gbp") }},
|
|
{{ calculate_safe_relative_increment("waiver_net_fees_in_gbp") }},
|
|
{{ calculate_safe_relative_increment("checkin_cover_fees_in_gbp") }},
|
|
{{ calculate_safe_relative_increment("total_guest_payments_in_gbp") }},
|
|
|
|
-- TOTAL REVENUE --
|
|
{{ calculate_safe_relative_increment("total_revenue_in_gbp") }},
|
|
|
|
-- GUEST REVENUE WEIGHTED METRICS --
|
|
{{
|
|
calculate_safe_relative_increment(
|
|
"guest_payments_per_completed_guest_journey"
|
|
)
|
|
}},
|
|
{{ calculate_safe_relative_increment("guest_payments_per_paid_guest_journey") }},
|
|
|
|
-- TOTAL REVENUE WEIGHTED METRICS --
|
|
{{ calculate_safe_relative_increment("total_revenue_per_created_booking") }},
|
|
{{ calculate_safe_relative_increment("total_revenue_per_created_guest_journey") }},
|
|
{{ calculate_safe_relative_increment("total_revenue_per_deals_booked_in_month") }},
|
|
{{
|
|
calculate_safe_relative_increment(
|
|
"total_revenue_per_listings_booked_in_month"
|
|
)
|
|
}},
|
|
|
|
-- CHURN --
|
|
{{ calculate_safe_relative_increment("total_revenue_churn_preceding_12_months") }},
|
|
{{ calculate_safe_relative_increment("total_revenue_global_preceding_12_months") }},
|
|
{{ calculate_safe_relative_increment("total_revenue_churn_average_contribution") }},
|
|
{{
|
|
calculate_safe_relative_increment(
|
|
"created_bookings_churn_average_contribution"
|
|
)
|
|
}},
|
|
{{
|
|
calculate_safe_relative_increment(
|
|
"listings_booked_in_month_churn_average_contribution"
|
|
)
|
|
}},
|
|
|
|
-- INCOME RETAINED --
|
|
{{ calculate_safe_relative_increment("revenue_retained_in_gbp") }},
|
|
{{ calculate_safe_relative_increment("revenue_retained_ratio") }},
|
|
|
|
-- INCOME RETAINED POST RESOLUTIONS--
|
|
{{ calculate_safe_relative_increment("revenue_retained_post_resolutions_in_gbp") }},
|
|
{{ calculate_safe_relative_increment("revenue_retained_post_resolutions_ratio") }},
|
|
|
|
-- ONBOARDING MRR METRIC --
|
|
{{ calculate_safe_relative_increment("expected_mrr_per_deal") }},
|
|
{{ calculate_safe_relative_increment("expected_mrr") }}
|
|
|
|
from plain_kpi_combination current
|
|
left join
|
|
plain_kpi_combination previous_year
|
|
on current.dimension = previous_year.dimension
|
|
and current.dimension_value = previous_year.dimension_value
|
|
and current.month = previous_year.month
|
|
and current.year = previous_year.year + 1
|
|
where
|
|
(
|
|
current.is_end_of_month = true
|
|
or (
|
|
current.is_current_month = true
|
|
and (current.day = previous_year.day or previous_year.day is null)
|
|
)
|
|
)
|