How to create an invoice #68
Replies: 1 comment
|
I discovered that you need to do these things:
OdooInvoice = OdooDictionaryModel.Create(() => new AccountMoveOdooModel 2.) set the move_id in each lines model to the ID of the invoice you just created, then create all this lines. I created the lines into a list of dictionaries: List<OdooDictionaryModel> lines If you want a line not to be taxed, set the tax_ids to null. If you want them to be set to the default, leave the definition out. Otherwise set the tax_ids to the rates you want... |
Uh oh!
There was an error while loading. Please reload this page.
Hello, I'm trying to integrate the creation of an invoice in Odoo from my net core 5 app. I managed to create the invoice and the lines , but the invoice does not appear in the list of invoices. Please does anyone have the solution or suggestions for this implementation?
Thanks in advance
All reactions