Hi, i'm trying to set the possibility for my internal users to create anonymous claims, but I can always see who created the record through metadatas with the developers mode activated.
How can I hide this fields? Or how can I override these?
I tried with this code, I override the create method, but it's not working:
@api.model
defcreate(self, vals):
res = super(HrComplaint, self).create(vals)
res.write({'create_uid': 13})
return res
any suggestion would be really appreciated, thanks in advance!