我们可以使用active-merchant authorized.net CIM API从网关检索交易详情吗?

时间:2016-04-16 06:57:46

标签: ruby-on-rails activemerchant authorize.net-cim

Active-Merchant没有任何API可以从authorized.net检索任何现有交易的详细信息。我看到authorized.net为此提供了一个API getTransactionDetailsRequest,但是活跃商家没有。

1 个答案:

答案 0 :(得分:1)

  

你可以使用这个分叉版本

select acc.custaccount, acc.product, acc.invoicedate
from account acc
join title t
on acc.custaccount = t.custaccount
***group by here***
Cross apply (select number, date
from invoice inv where 
custaccount = acc.custaccount
group by number, date) inv

left join invoicedetail invdet
on inv.number = invdet.number

out apply(select invdet.number, invdet.units, invdet.value
group by invdet.number, invdet.units, invdet.value)
from

etc.....