在Quickbook中与客户一起添加日记帐分录时出现问题-消息:构造ReferenceType时,传递的数组没有“值”的键

时间:2019-02-12 04:58:34

标签: php quickbooks

我仔细阅读了本文档“ https://developer.intuit.com/app/developer/qbo/docs/api/accounting/all-entities/journalentry

并尝试添加具有客户行的日记帐分录,如以下代码所示:

$journal_entry_create['TxnDate'] = date('Y-m-d');
$journal_entry_line = array(
                        'Amount' => $amount,
                        'DetailType' => 'JournalEntryLineDetail',


                        'JournalEntryLineDetail' => array(
                            'PostingType' => Credit,
                            'Entity' => array(
                                'Type' => 'Customer',
                                'EntityRef' => array(
                                    'type' => 'Customer',
                                    'value' => "2",
                                    'name' => 'Abc'
                                )
                            ),
                            'AccountRef' => array(
                                'name' => 'Account Name',
                                'value' => '1'
                                ),

                        )
                    );
$journal_entry_lines[] = $journal_entry_line;
$journal_entry_create['Line'] = $journal_entry_lines;
$journal_entry_receipt_create = QBJournalEntry::create($journal_entry_create);
$journal_entry_receipt_create_result = $dataService->Add($journal_entry_receipt_create);

没有EntityRef,它的工作正常,但是当我添加EntityRef时,给我错误:“消息:构造ReferenceType时,传递的数组没有'Value'键”

1 个答案:

答案 0 :(得分:0)

我自己只是遇到了这个问题。他们确实解决了此问题,但似乎根本没有记录下来或告诉任何人。在source code中找到了修复程序。您需要在“ JournalEntryLineDetail”下使用“ JournalEntryEntity”而不是“ Entity”,就像这样:

'JournalEntryLineDetail' => array(
                            'PostingType' => "Credit",
                            'JournalEntryEntity' => array(
                                'Type' => 'Customer',
                                'EntityRef' => array(
                                    'value' => "2"
                                )
                            ),
                            'AccountRef' => array(
                                'name' => 'Account Name',
                                'value' => '1'
                                ),
                            )

我还使用了PHP SDK V3中的FacadeHelper(我不确定它是否可以与您使用的方法一起使用):

use QuickBooksOnline\API\Facades\FacadeHelper;

...

$journal_entry_receipt_create = FacadeHelper::reflectArrayToObject('JournalEntry', $journal_entry_create);
$journal_entry_receipt_create_result = $dataService->Add($journal_entry_receipt_create);

我知道这对您来说可能为时已晚,但希望对您有所帮助!