Hello everyone,
I have an issue and i couldn't find any thing about it.
I inherited the fields_get methode to hide a field from the filters list in sale.order as recommended in multiple posts
def fields_get(self, fields=None):
hide = ['tag_ids_forced']
res = super(SaleOrder, self).fields_get()
for field in hide:
res[field]['searchable'] = False
return res
The field was seccussfully removed from the filter's list but i noticed that every time i open a sale order , a new log note is addes with the values for fields" write_date" and "__last_update" changing to the current date.
The field that i'm trying to hide is not tracked in odoo, but i don't understand why odoo behavious in such way.
Any ideas please ?
Thanks