Added booking id to payments model
This commit is contained in:
parent
78ae3e0119
commit
533baa76c4
4 changed files with 12 additions and 0 deletions
|
|
@ -38,6 +38,7 @@ select
|
||||||
vp.superhog_fee_without_taxes_in_gbp,
|
vp.superhog_fee_without_taxes_in_gbp,
|
||||||
vp.currency,
|
vp.currency,
|
||||||
der.rate as exchange_rate_to_gbp,
|
der.rate as exchange_rate_to_gbp,
|
||||||
|
b.id_booking,
|
||||||
uh.id_user_host,
|
uh.id_user_host,
|
||||||
uh.id_deal,
|
uh.id_deal,
|
||||||
uh.first_name as host_first_name,
|
uh.first_name as host_first_name,
|
||||||
|
|
|
||||||
|
|
@ -5580,6 +5580,11 @@ models:
|
||||||
The exchange rate used to convert the payment amount from local currency
|
The exchange rate used to convert the payment amount from local currency
|
||||||
to GBP.
|
to GBP.
|
||||||
|
|
||||||
|
- name: id_booking
|
||||||
|
data_type: bigint
|
||||||
|
description: The unique, Superhog generated id for this booking.
|
||||||
|
Can be null for verification request not related to a booking.
|
||||||
|
|
||||||
- name: id_user_host
|
- name: id_user_host
|
||||||
data_type: character varying
|
data_type: character varying
|
||||||
description: |
|
description: |
|
||||||
|
|
|
||||||
|
|
@ -30,6 +30,7 @@ select
|
||||||
superhog_fee_without_taxes_in_gbp as superhog_fee_without_taxes_in_gbp,
|
superhog_fee_without_taxes_in_gbp as superhog_fee_without_taxes_in_gbp,
|
||||||
currency as currency,
|
currency as currency,
|
||||||
exchange_rate_to_gbp as exchange_rate_to_gbp,
|
exchange_rate_to_gbp as exchange_rate_to_gbp,
|
||||||
|
id_booking as id_booking,
|
||||||
id_user_host as id_user_host,
|
id_user_host as id_user_host,
|
||||||
id_deal as id_deal,
|
id_deal as id_deal,
|
||||||
host_first_name as host_first_name,
|
host_first_name as host_first_name,
|
||||||
|
|
|
||||||
|
|
@ -1841,6 +1841,11 @@ models:
|
||||||
The exchange rate used to convert the payment amount from local currency
|
The exchange rate used to convert the payment amount from local currency
|
||||||
to GBP.
|
to GBP.
|
||||||
|
|
||||||
|
- name: id_booking
|
||||||
|
data_type: bigint
|
||||||
|
description: The unique, Superhog generated id for this booking.
|
||||||
|
Can be null for verification request not related to a booking.
|
||||||
|
|
||||||
- name: id_user_host
|
- name: id_user_host
|
||||||
data_type: character varying
|
data_type: character varying
|
||||||
description: |
|
description: |
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue