lot of things, should have committed way earlier
This commit is contained in:
parent
8b2dca174f
commit
89aed285db
8 changed files with 52 additions and 21 deletions
|
|
@ -7,10 +7,14 @@ with
|
|||
{{ adapter.quote("PaymentId") }} as id_payment,
|
||||
{{ adapter.quote("PaymentRef") }} as payment_reference,
|
||||
{{ adapter.quote("RefundDate") }} as refunded_at_utc,
|
||||
cast({{ adapter.quote("RefundDate") }} as date) as refunded_date_utc,
|
||||
{{ adapter.quote("CreatedDate") }} as created_at_utc,
|
||||
cast({{ adapter.quote("CreatedDate") }} as date) as created_date_utc,
|
||||
{{ adapter.quote("CurrencyIso") }} as currency,
|
||||
{{ adapter.quote("PaymentDate") }} as paid_at_utc,
|
||||
cast({{ adapter.quote("PaymentDate") }} as date) as paid_date_utc,
|
||||
{{ adapter.quote("UpdatedDate") }} as updated_at_utc,
|
||||
cast({{ adapter.quote("UpdatedDate") }} as date) as updated_date_utc,
|
||||
{{ adapter.quote("PaymentStatusId") }} as id_payment_status,
|
||||
{{ adapter.quote("RefundPaymentRef") }} as refund_payment_reference,
|
||||
{{ adapter.quote("PaymentProviderId") }} as id_payment_provider,
|
||||
|
|
|
|||
|
|
@ -8,9 +8,13 @@ with
|
|||
{{ adapter.quote("PaymentId") }} as id_payment,
|
||||
{{ adapter.quote("Refundable") }} as is_refundable,
|
||||
{{ adapter.quote("CreatedDate") }} as created_at_utc,
|
||||
cast({{ adapter.quote("CreatedDate") }} as date) as created_date_utc,
|
||||
{{ adapter.quote("UpdatedDate") }} as updated_at_utc,
|
||||
cast({{ adapter.quote("UpdatedDate") }} as date) as updated_date_utc,
|
||||
{{ adapter.quote("RefundDueDate") }} as refund_due_at_utc,
|
||||
cast({{ adapter.quote("RefundDueDate") }} as date) as refund_due_date_utc,
|
||||
{{ adapter.quote("PaymentDueDate") }} as payment_due_at_utc,
|
||||
cast({{ adapter.quote("PaymentDueDate") }} as date) as payment_due_date_utc,
|
||||
{{ adapter.quote("SuperhogUserId") }} as id_guest_user,
|
||||
{{ adapter.quote("VerificationId") }} as id_verification,
|
||||
{{ adapter.quote("VerificationPaymentTypeId") }}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue