0
我按照此包使用Quickbooks V3。 https://github.com/consolibyte/quickbooks-php如何在quickbooks中創建項目以顯示銷售和購買API PHP
我創建項目類似這樣的
$ItemService = new QuickBooks_IPP_Service_Item();
$Item = new QuickBooks_IPP_Object_Item();
$Item->setName('My Item');
$Item->setType('Inventory');
$Item->setIncomeAccountRef('121');
if ($resp = $ItemService->add($this->context, $this->realm, $Item)) {
print('Our new Item ID is: [' . $resp . ']');
} else {
print($ItemService->lastError($this->context));
}
它顯示在銷售而已,但不是在購買啓用的項目。如何創建項目以在所有類別中使用?
同時創造項目我加入這個代碼。它只是增加銷售量而不是購買。 $ Item-> setName('My Item111'); $ Item-> setType('Inventory'); $ Item-> setIncomeAccountRef('121'); $ Item-> setPurchaseCost(0); $ Item-> setAssetAccountRef('121'); –
請確定您正在指定我上面指出的所有字段。 –
謝謝,它正在工作.. –