2024-08-29 11:09:09 +02:00
|
|
|
with
|
|
|
|
|
int_edeposit__agg_fee_per_user as (
|
|
|
|
|
select * from {{ ref("int_edeposit__agg_fee_per_user") }}
|
|
|
|
|
)
|
|
|
|
|
select
|
|
|
|
|
year_month_created as year_month_created,
|
|
|
|
|
year_month_checkout as year_month_checkout,
|
2024-08-29 14:25:00 +02:00
|
|
|
id_user_partner as id_user_partner,
|
2024-08-29 11:09:09 +02:00
|
|
|
bookings_per_month as bookings_per_month,
|
|
|
|
|
cancelled_per_month as cancelled_per_month,
|
|
|
|
|
cancelled_ratio as cancelled_ratio,
|
2024-08-29 14:25:00 +02:00
|
|
|
is_cancellation_threshold_surpassed as is_cancellation_threshold_surpassed,
|
2024-08-29 11:09:09 +02:00
|
|
|
sum_cancelled_fee as sum_cancelled_fee,
|
|
|
|
|
sum_ok_status_fee as sum_ok_status_fee,
|
|
|
|
|
sum_rejected_fee as sum_rejected_fee,
|
|
|
|
|
total_revenue as total_revenue
|
|
|
|
|
from int_edeposit__agg_fee_per_user
|