如何过滤many2one字段
module1:
class one_one:
_name='one.one'
'f1':fields.char('one')
module2:
class two_two:
_name="two.two'
'f1':fields.many2one('one.one','one'),
'f2':fields.char('two')
module3:
class three_three:
_name='three.three'
'f1':fields.many2one('one.one','one'),
'f2':fields.many2one('two.two','two'),
有 class one_one我将创建:1,2,3 class two_two我将创建:(1,abc),(2,def),(3,ghi)
我想在方法3中使用以下方法,即类three_three
如果我选择f1为'1',则下一个字段f2我必须以'2','3'的方式获得'abc'。 我曾使用域过滤器,但我得到'叶'错误请任何人回答我这个问题,举个例子