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