Merged PR 1863: specifying numeric precision so that pbi doesn't go crazy
specifying numeric precision so that pbi doesn't go crazy
This commit is contained in:
commit
79521d723d
1 changed files with 4 additions and 2 deletions
|
|
@ -88,8 +88,10 @@ select
|
||||||
p.payment_status,
|
p.payment_status,
|
||||||
p.payment_paid_date_utc,
|
p.payment_paid_date_utc,
|
||||||
ccp.checkin_cover_limit_amount_local_curr,
|
ccp.checkin_cover_limit_amount_local_curr,
|
||||||
ccp.checkin_cover_limit_amount_local_curr
|
(
|
||||||
* (p.amount_in_gbp / p.amount_in_txn_currency) as checkin_cover_limit_amount_in_gbp
|
ccp.checkin_cover_limit_amount_local_curr
|
||||||
|
* (p.amount_in_gbp / p.amount_in_txn_currency)
|
||||||
|
)::numeric(18, 4) as checkin_cover_limit_amount_in_gbp
|
||||||
from int_core__verification_requests vr
|
from int_core__verification_requests vr
|
||||||
left join int_core__bookings b on vr.id_verification_request = b.id_verification_request
|
left join int_core__bookings b on vr.id_verification_request = b.id_verification_request
|
||||||
left join
|
left join
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue