Reference类型字段(如下),通过selection属性的方法可以添加model进行选择项。(_selection_target_model方法筛选出所有的model)
ref = fields.Reference(string='Reference', selection='_selection_target_model')
问题:
怎么可以更灵活选择,比如我通过一个boolean
类型的字段show_all
进行判断,为True
就显示所有的model
,为False
就只显示特定的几个model
。或者是能更方便的选择需要显示的model
?