19 lines
731 B
MySQL
19 lines
731 B
MySQL
|
|
with
|
||
|
|
int_edeposit__verification_fees as (
|
||
|
|
select * from {{ ref("int_edeposit__verification_fees") }}
|
||
|
|
)
|
||
|
|
|
||
|
|
select
|
||
|
|
vf.id_verification as id_verification,
|
||
|
|
vf.id_booking as id_booking,
|
||
|
|
vf.currency as currency,
|
||
|
|
vf.ok_status_fee_in_txn_currency as ok_status_fee_in_txn_currency,
|
||
|
|
vf.ok_status_fee_in_gbp as ok_status_fee_in_gbp,
|
||
|
|
vf.rejected_fee_in_txn_currency as rejected_fee_in_txn_currency,
|
||
|
|
vf.rejected_fee_in_gbp as rejected_fee_in_gbp,
|
||
|
|
vf.cancelled_fee_in_gbp as cancelled_fee_in_gbp,
|
||
|
|
vf.cancelled_fee_in_txn_currency as cancelled_fee_in_txn_currency,
|
||
|
|
vf.created_date_utc as created_date_utc,
|
||
|
|
vf.checkout_date_utc as checkout_date_utc
|
||
|
|
from int_edeposit__verification_fees vf
|