Finished adding address_validation to reporting
This commit is contained in:
parent
db9f9a6c25
commit
bf9652f258
2 changed files with 12 additions and 0 deletions
|
|
@ -10,6 +10,8 @@ select
|
||||||
is_past_check_in as is_past_check_in,
|
is_past_check_in as is_past_check_in,
|
||||||
is_awaiting_check_in as is_awaiting_check_in,
|
is_awaiting_check_in as is_awaiting_check_in,
|
||||||
cover_was_purchased as cover_was_purchased,
|
cover_was_purchased as cover_was_purchased,
|
||||||
|
address_validation_passed as address_validation_passed,
|
||||||
|
address_validation_notes as address_validation_notes,
|
||||||
cover_was_rejected as cover_was_rejected,
|
cover_was_rejected as cover_was_rejected,
|
||||||
guest_email as guest_email,
|
guest_email as guest_email,
|
||||||
last_name as last_name,
|
last_name as last_name,
|
||||||
|
|
|
||||||
|
|
@ -244,6 +244,16 @@ models:
|
||||||
This is identified by the fact that there is a payment of type
|
This is identified by the fact that there is a payment of type
|
||||||
check-in cover associated with this guest journey.
|
check-in cover associated with this guest journey.
|
||||||
|
|
||||||
|
- name: address_validation_passed
|
||||||
|
data_type: boolean
|
||||||
|
description:
|
||||||
|
"Boolean to indicate if the validation was approved or not.
|
||||||
|
In case there was a problem with the validation it will be Null"
|
||||||
|
|
||||||
|
- name: address_validation_notes
|
||||||
|
data_type: character varying
|
||||||
|
description: "Notes in case there was some problem with the validation."
|
||||||
|
|
||||||
- name: cover_was_rejected
|
- name: cover_was_rejected
|
||||||
data_type: boolean
|
data_type: boolean
|
||||||
description: |
|
description: |
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue