Merged PR 2178: New model for guests satisfaction report
New model for guests satisfaction report, I included columns to check what is the guest paying for that might be helpful for analysis as well Related work items: #16947
This commit is contained in:
commit
2efc1d8b65
5 changed files with 278 additions and 3 deletions
|
|
@ -935,4 +935,83 @@ models:
|
|||
|
||||
- name: company_name
|
||||
data_type: character varying
|
||||
description: ""
|
||||
description: ""
|
||||
|
||||
- name: core__guest_satisfaction_responses
|
||||
description:
|
||||
This model contains information on guests satisfaction survey responses,
|
||||
it contains some basic information on the guests, a rating of their experience
|
||||
and some comments on it.
|
||||
It also includes information on the services provided by Superhog that they payed for.
|
||||
columns:
|
||||
- name: id_verification_request
|
||||
data_type: bigint
|
||||
description: Unique id value for the verification request
|
||||
tests:
|
||||
- not_null
|
||||
- unique
|
||||
|
||||
- name: id_user_guest
|
||||
data_type: character varying
|
||||
description: Unique id value for the guest
|
||||
|
||||
- name: guest_email
|
||||
data_type: character varying
|
||||
description: Guest email
|
||||
|
||||
- name: experience_rating
|
||||
data_type: bigint
|
||||
description:
|
||||
Guest rating of their experience with Superhog from 1 to 5
|
||||
|
||||
- name: guest_comments
|
||||
data_type: character varying
|
||||
description:
|
||||
Guest comments on their experience with Superhog
|
||||
|
||||
- name: is_contactable
|
||||
data_type: boolean
|
||||
description: |
|
||||
True if the guest allows to be contacted for more feedback
|
||||
|
||||
- name: created_at_utc
|
||||
data_type: timestamp without time zone
|
||||
description:
|
||||
Date and time of response creation
|
||||
|
||||
- name: updated_at_utc
|
||||
data_type: timestamp without time zone
|
||||
description:
|
||||
Date and time of last update of response
|
||||
|
||||
- name: selected_payment_option
|
||||
data_type: character varying
|
||||
description: ""
|
||||
|
||||
- name: date_of_birth
|
||||
data_type: numeric
|
||||
description: ""
|
||||
|
||||
- name: age_of_guest
|
||||
data_type: numeric
|
||||
description: ""
|
||||
|
||||
- name: has_check_in_cover_payment
|
||||
data_type: boolean
|
||||
description: |
|
||||
True if guest payed for check-in cover
|
||||
|
||||
- name: has_waiver_payment
|
||||
data_type: boolean
|
||||
description: |
|
||||
True if guest payed the waiver
|
||||
|
||||
- name: has_deposit_payment
|
||||
data_type: boolean
|
||||
description: |
|
||||
True if guest payed the deposit
|
||||
|
||||
- name: has_fee_payment
|
||||
data_type: boolean
|
||||
description: |
|
||||
True if guest payed the fee
|
||||
Loading…
Add table
Add a link
Reference in a new issue