Updated model

This commit is contained in:
Joaquin Ossa 2025-02-11 10:44:19 +01:00
parent bc17ee7b4b
commit 125325fcf2
6 changed files with 101 additions and 37 deletions

View file

@ -20,8 +20,14 @@ select
tax_amount_in_gbp as tax_amount_in_gbp,
amount_due_to_host_in_txn_currency as amount_due_to_host_in_txn_currency,
amount_due_to_host_in_gbp as amount_due_to_host_in_gbp,
amount_due_to_host_without_taxes_in_txn_currency
as amount_due_to_host_without_taxes_in_txn_currency,
amount_due_to_host_without_taxes_in_gbp as amount_due_to_host_without_taxes_in_gbp,
superhog_fee_in_txn_currency as superhog_fee_in_txn_currency,
superhog_fee_in_gbp as superhog_fee_in_gbp,
superhog_fee_without_taxes_in_txn_currency
as superhog_fee_without_taxes_in_txn_currency,
superhog_fee_without_taxes_in_gbp as superhog_fee_without_taxes_in_gbp,
currency as currency,
exchange_rate_to_gbp as exchange_rate_to_gbp,
id_user_host as id_user_host,

View file

@ -1753,22 +1753,42 @@ models:
- name: amount_due_to_host_in_txn_currency
data_type: numeric
description: |
The amount payable to the host, in local currency.
The amount payable to the host with taxes, in local currency.
- name: amount_due_to_host_in_gbp
data_type: numeric
description: |
The amount payable to the host, in GBP.
The amount payable to the host with taxes, in GBP.
- name: amount_due_to_host_without_taxes_in_txn_currency
data_type: numeric
description: |
The amount payable to the host without taxes, in local currency.
- name: amount_due_to_host_without_taxes_in_gbp
data_type: numeric
description: |
The amount payable to the host without taxes, in GBP.
- name: superhog_fee_in_txn_currency
data_type: numeric
description: |
The service fee charged by Superhog, in local currency.
The service fee charged by Superhog with taxes, in local currency.
- name: superhog_fee_in_gbp
data_type: numeric
description: |
The service fee charged by Superhog, in GBP.
The service fee charged by Superhog with taxes, in GBP.
- name: superhog_fee_without_taxes_in_txn_currency
data_type: numeric
description: |
The service fee charged by Superhog without taxes, in local currency.
- name: superhog_fee_without_taxes_in_gbp
data_type: numeric
description: |
The service fee charged by Superhog without taxes, in GBP.
- name: currency
data_type: text