Hello, I would like to limit some res.partner records visibility based on its value. For example I added `partner_type` field (selection string) to res.partner and I would like some group (for example sales_team.group_sale_salesman) to be able to see res.partner with value "partner_type = 'vendor'" only. but the limitation is only at the contacts module. How can I achieve this?
I've tried adding rules like
View vendor rule
[('partner_type','=','vendor')]
But it doesn't seem to work.