PMS data to reporting

This commit is contained in:
Joaquin Ossa 2025-01-10 09:51:29 +01:00
parent f8a1742dd7
commit 13bb35ec70
2 changed files with 15 additions and 0 deletions

View file

@ -7,6 +7,8 @@ select
id_deal as id_deal,
main_deal_name as main_deal_name,
has_active_pms as has_active_pms,
active_pms_list as active_pms_list,
main_billing_country_iso_3_per_deal as main_billing_country_iso_3_per_deal,
deal_lifecycle_state as deal_lifecycle_state,
deal_hubspot_stage as deal_hubspot_stage,

View file

@ -593,6 +593,19 @@ models:
tests:
- not_null
- name: has_active_pms
data_type: boolean
description: |
Does the deal have an active associated PMS.
tests:
- not_null
- name: active_pms_list
data_type: string
description: |
Name of the active PMS associated with the deal. It can have more than
one PMS associated with it. It can be null if it doesn't have any PMS associated.
- name: main_billing_country_iso_3_per_deal
data_type: string
description: |