我需要创建many2one字段。但它应该需要过滤数据,所以我怎么能这样做这是我的代码: 1-我要过滤的字段是'compte_id'
class AccountMove(models.Model):
_name = 'account.move'
_inherit = 'account.move'
compte_id=fields.Many2one('account.account',string='Compte Budgétaire')
2-我需要字段'compte_id'包含存储在'account_id'中的值,account_id属于表:
class FicheLine(models.Model):
_name = 'm_gov.account.fiche.line'
account_id = fields.Many2one('account.account', string='Rubrique' ,required=False)
请帮帮我