I have a field many2one
state = fields.Many2one ("ags.traffic.operation.state")
state has the following fields (name = fields.Char, sequence = fields.Integer, type = fields.Selection)
if I write from sight <field name = "state" widget = "statusbar" clickable = "True" attrs = "{'invisible': [('state.type', '=', 'notification')]}" / >
does not work and gives the error "Error: Unknown field state.type domain [[" state.type "," = "," notification "]]"
I can accessed as fields (name, sequence or type) from the view ??
Thanks