spoecifying numeric precision so that pbi doesn't go crazy
This commit is contained in:
parent
e1af049400
commit
22e85af8a5
1 changed files with 4 additions and 2 deletions
|
|
@ -88,8 +88,10 @@ select
|
|||
p.payment_status,
|
||||
p.payment_paid_date_utc,
|
||||
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
|
||||
left join int_core__bookings b on vr.id_verification_request = b.id_verification_request
|
||||
left join
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue