I'm trying to extend super class field domain with "or" or "and" condition, so for "and" condition I'm trying to do something like this:
class MyClass (models.Model):
_inherit = 'super_class'
super_class_field = fields.Many2one(domain.append('type', '=','my_type'))
but it doesn't work. I've tried to find solution for "or" condition but I can't find a way to get existing field domain.