OdooJsonRpcClient
OdooJsonRpcClient copied to clipboard
Odoo Client Json Rpc
With this VB code you get an execution error with Odoo V17 Obviously, AccountMoveOdooModel have been pasted from GetDotNetModel result Testing code : Dim tableName = "account.move" Dim modelResult =...
With this VB code you get same result for AllRecordList and FilteredRecordList (ie all records in both cases) with Odoo 17. This was working fine with Odoo 16 Obviously, ResPartnerOdooModel...
### Key Changes: The primary change involves extracting the HTTP client initialization from the Odoo class and facilitating the creation of an HTTP client from a custom HTTP client factory....
Hello, I get an exception when reading sale orders. The type not implemented is JTokenType.Object. The model is sale.order. When I implement it, and return true, I can read the...
System.Exception HResult=0x80131500 Message=Cannot unmarshal Enum 'OdooValueTypeEnum' - 'properties_definition' Source=PortaCapena.OdooJsonRpcClient StackTrace: at PortaCapena.OdooJsonRpcClient.Models.OdooPropertyInfo.ToOdooValueTypeEnum(String value) at PortaCapena.OdooJsonRpcClient.Models.OdooPropertyInfo.get_PropertyValueType() at PortaCapena.OdooJsonRpcClient.Converters.OdooModelMapper.ConvertToDotNetPropertyTypeName(KeyValuePair`2 property, String tableName) at PortaCapena.OdooJsonRpcClient.Converters.OdooModelMapper.GetDotNetModel(String tableName, Dictionary`2 properties, Boolean addSummary) at Program.d__0.MoveNext() in
Odoo Version : 16 Model: account.move.line Field: analytic_distribution Property in class (generated by odooClient.GetModelAsync): `/// /// analytic_distribution - json /// Required: False, Readonly: False, Store: True, Sortable: True /// [JsonProperty("analytic_distribution")]...
I try to create a new line of account.move.line but I get that error, I was testing but it won't let me create it, I investigated the error but they...
I am getting the following error on login Am expecting failed log-in var loginResult = await odooClient.LoginAsync(); Newtonsoft.Json.JsonReaderException: Unexpected character encountered while parsing value:
Hi, When latest main branch commits can be released to nuget? https://github.com/Intechnity-com/OdooJsonRpcClient/commit/8d13b13b6d17a808a30149f4edea0ef5f4c186dd specifically
With this code im trying to get data of model account.payment: `var repository = new OdooRepository(client.Config); var res = await repository.Query().ToListAsync();` I got AccountPaymentOdooModel object from: `OdooModelMapper.GetDotNetModel` I have the...