accounting_package/om_account_budget/models/account_analytic_account.py

10 lines
248 B
Python
Raw Normal View History

2026-05-08 13:05:11 +07:00
from odoo import fields, models
class AccountAnalyticAccount(models.Model):
_inherit = "account.analytic.account"
crossovered_budget_line = fields.One2many(
'crossovered.budget.lines', 'analytic_account_id', 'Budget Lines'
)