Pavan Kumbhar

Results 6 comments of Pavan Kumbhar

No. Single language, testing on a fresh Odoo 16 instance.

I just tested again and found that not only with the bulk import, if you update the product directly in the Odoo we can see the same issue. This means...

``` namespace Odoo.Models { [OdooTableName("product.template")] [JsonConverter(typeof(OdooModelConverter))] public class ProductTemplate : IOdooModel { [JsonProperty("id")] public long Id { get; set; } [JsonProperty("name")] public string Name { get; set; } [JsonProperty("__last_update")] public...

Yes. I can see the LastUpdated value changed but not other field values. To simplify the testing, you can create a new product.template. Use the newly created ID in the...

I have tried reading another field and it gives me the updated values. I think the only issue is with the name field.

It is name property for sure. When I hover over the value in Odoo, I see the field name. I also tried reading the display_name field, but I got the...