You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
626 B
Python

# -*- 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)