# -*- coding: utf-8 -*- from odoo import models, fields, api, _, Command from odoo.exceptions import UserError, ValidationError from odoo.tools.misc import format_date, formatLang class AccountReconcileModelLine(models.Model): _inherit = 'account.reconcile.model.line' # _inherit = 'analytic.mixin' # _description = 'Rules for the reconciliation model' # _order = 'sequence, id' # _check_company_auto = True analytic_account_id = fields.Many2one('account.analytic.account', string='Analytic Account', ondelete='set null', check_company=True)