Lucas Vargas

Results 4 comments of Lucas Vargas

Hi devs, I need to call methods too I show you an example: I have a Invoice (in ODOO V12) with Draft State ![image](https://user-images.githubusercontent.com/1220217/159786273-7cb3051a-77ff-49ff-ac2a-5d284b27002e.png) and need call the method "action_invoice_open"...

> I created my own OdooMethod class > > ``` > public class OdooMethod > { > protected readonly OdooConfig config; > protected readonly OdooClient odooClient; > protected readonly string...

> Hi, I think I had once a similar issue and as I remember, you should use a different column for this, or add this tax to the product at...

@patricoos I have a solution for this! Here is my solution https://github.com/luke92/OdooNetFramework/blob/main/OdooIntegration/OdooIntegration.ConsoleApp/Many2ManyHelpers/OdooMany2ManyService.cs Basicallly i authenticate with {baseUrl}/web/session/authenticate Sending a json for authenticate and get session_id `{"jsonrpc":"2.0","params":{"db":"database","login":"username","password":"pass"}}` And then send a...