New Dash bug fix

This commit is contained in:
Joaquin Ossa 2025-03-06 08:16:40 +01:00
parent 39fc6a7d13
commit d065d4beb6

View file

@ -30,6 +30,7 @@ with
int_core__booking_service_detail as (
select * from {{ ref("int_core__booking_service_detail") }}
),
int_core__booking_summary as (select * from {{ ref("int_core__booking_summary") }}),
bundle_services as (
select
bs.id_user_product_bundle,
@ -201,6 +202,8 @@ with
end
) as number_bookings_with_service_status_flagged
from int_core__booking_service_detail sd
left join int_core__booking_summary bs on sd.id_booking = bs.id_booking
where bs.is_user_in_new_dash = true and bs.is_missing_id_deal = false
group by 1
)
select