Invoice lines do not have taxes #91
Unanswered
FernandoCorek
asked this question in
Q&A
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I am creating invoices with Odoo, but the lines appear without taxes even though I pass values in "InvoiceLineTaxIds"
Dim newinvoiceLine = OdooDictionaryModel.Create(Of AccountInvoiceLineOdooModel)(Function() New AccountInvoiceLineOdooModel() With {
.Origin = il.ToStringOrigin,
.PriceUnit = 10,
.Quantity = 10,
.CreateDate = Now,
.Sequence = 1,
.Name = "Item 1",
.ProductId = itemIdOdoo,
.InvoiceId = invoice_IdOdoo,
.AccountId = idacc,
.InvoiceLineTaxIds = {4},
.PriceSubtotal = 100})
Beta Was this translation helpful? Give feedback.
All reactions