我編寫了一個程序,用於從網站下載訂單並使用SDK創建發票。 有些產品在QuickBooks中被列爲組,因此將它們添加到發票時,我無法列出價格。InvoiceAddGroup QuickBooks SDK錯誤價格
If IList.Item(x).Type = 2 Then
Dim ORInvoiceLineAddListElement2 As IORInvoiceLineAdd
ORInvoiceLineAddListElement2 = newInvoice.ORInvoiceLineAddList.Append()
ORInvoiceLineAddListElement2.InvoiceLineGroupAdd.ItemGroupRef.FullName.SetValue(IList.Item(x).FullName)
ORInvoiceLineAddListElement2.InvoiceLineGroupAdd.Quantity.SetValue(IList.Item(x).Quantity)
'ORInvoiceLineAddListElement2.InvoiceLineGroupAdd.Desc.SetValue(IList.Item(x).DESC)
End If
這將輸入QuickBooks很好,但是,價格將基於零售客戶,即使客戶類別設置爲批發。我知道客戶類是正確的,因爲所有其他內容在生成的發票中都正確顯示。
有什麼建議我可以嘗試讓這個組合物品的價格正確嗎?
感謝您的幫助!