This commit is contained in:
Joaquin Ossa 2025-02-05 16:06:29 +01:00
parent 083976b6f6
commit 45dc52a657
4 changed files with 9 additions and 9 deletions

View file

@ -87,14 +87,14 @@ select
then
vr.verification_estimated_completed_date_utc
- vr.verification_estimated_started_date_utc
end as days_complete_verification,
end as days_to_complete_verification,
vr.link_used_date_utc,
b.verification_request_booking_source,
pv.chose_deposit,
pv.chose_fee,
pv.chose_waiver,
pv.chose_no_cover,
p.chose_checkin_cover
coalesce(pv.chose_deposit, false) as chose_deposit,
coalesce(pv.chose_fee, false) as chose_fee,
coalesce(pv.chose_waiver, false) as chose_waiver,
coalesce(pv.chose_no_cover, false) as chose_no_cover,
coalesce(p.chose_checkin_cover, false) as chose_checkin_cover
from int_core__bookings b
left join int_core__accommodation a on a.id_accommodation = b.id_accommodation
left join

View file

@ -5125,7 +5125,7 @@ models:
data_type: date
description: "The estimated date on which the guest finished the guest journey."
- name: days_complete_verification
- name: days_to_complete_verification
data_type: numeric
description: "Number of days it took to complete the verification."

View file

@ -29,7 +29,7 @@ select
verification_estimated_started_date_utc as verification_estimated_started_date_utc,
verification_estimated_completed_date_utc
as verification_estimated_completed_date_utc,
days_complete_verification as days_complete_verification,
days_to_complete_verification as days_to_complete_verification,
link_used_date_utc as link_used_date_utc,
verification_request_booking_source as verification_request_booking_source,
chose_deposit as chose_deposit,

View file

@ -1527,7 +1527,7 @@ models:
data_type: date
description: "The estimated date on which the guest finished the guest journey."
- name: days_complete_verification
- name: days_to_complete_verification
data_type: numeric
description: "Number of days it took to complete the verification."