如何在Recurly退款交易中获得original_transaction_id

时间:2016-03-16 16:45:38

标签: php recurly

在PHP中使用reurly API时

$transaction = Recurly_Transaction::get($uuid);

$ transaction变量没有original_transaction_id字段,就像在事务的导出csv中一样:

https://yoursubdomain.recurly.com/exports/new#transactions

有人如何通过API获取original_transaction_id?

Github问题开启了: https://github.com/recurly/recurly-client-php/issues/216

2 个答案:

答案 0 :(得分:0)

答案 1 :(得分:0)

::更新8.2.2016 ::
他们在PHP客户端的2.6.0版中添加了original_transaction_id:

问题:https://github.com/recurly/recurly-client-php/issues/216#issuecomment-197558757

拉:https://github.com/recurly/recurly-client-php/pull/238

:: END UPDATE 8.2.2016 ::

//::HACK:: Only works when there is 1 purchase transaction.
$all_account_transactions = Recurly_TransactionList::getForAccount($refund_transaction->details[0]->account_code);
foreach ($all_account_transactions as $account_transaction) 
{
    if($account_transaction->action=="purchase" && 
       $account_transaction->subscription->get()->uuid == $refund_transaction->subscription->get()->uuid )
    {
        //This is a purchase transaction and its from the same subscription as the $refund_transaction.
        //If there's only 1 purchase transaction then this is your transaction that was refunded.
        //If there's multiple purchase transactions you'll have to figure out which one you want to apply the refund to
    }
}